confluence.js 1.5.0 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +3 -3
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ### 1.5.1
4
+
5
+ Dependencies updated
6
+
3
7
  ### 1.5.0
4
8
 
5
9
  `ContentAttachments` fixes for all attachments. ([#23](https://github.com/MrRefactoring/confluence.js/issues/23) Thanks [Anton](https://github.com/tester22) for catching)
package/README.md CHANGED
@@ -20,9 +20,9 @@ Usability, consistency, and performance are key focuses of confluence.js, and it
20
20
  - [Installation](#installation)
21
21
  - [Usage](#usage)
22
22
  - [Authentication](#authentication)
23
- - [Basic](#basic-authenticationhttpsdeveloperatlassiancomcloudconfluencebasic-auth-for-rest-apis)
24
- - [OAuth 2.0](#oauth-20httpsdeveloperatlassiancomcloudconfluenceoauth-2-3lo-apps)
25
- - [JWT](#jwthttpsdeveloperatlassiancomcloudconfluenceunderstanding-jwt)
23
+ - [Basic](#basic-authentication)
24
+ - [OAuth 2.0](#oauth-20)
25
+ - [JWT](#jwt)
26
26
  - [Personal access token](#personal-access-token)
27
27
  - [Your first request and using algorithm](#your-first-request-and-using-algorithm)
28
28
  - [Decreasing Webpack bundle size](#decreasing-webpack-bundle-size)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "confluence.js",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "confluence.js is a powerful Node.JS/Browser module that allows you to interact with the Confluence API very easily",
5
5
  "author": "Vladislav Tupikin <mrrefactoring@yandex.ru>",
6
6
  "license": "MIT",
@@ -45,28 +45,28 @@
45
45
  "@swc-node/register": "^1.5.1",
46
46
  "@types/express": "^4.17.13",
47
47
  "@types/oauth": "^0.9.1",
48
- "@types/sinon": "^10.0.11",
49
- "@typescript-eslint/eslint-plugin": "^5.25.0",
50
- "@typescript-eslint/parser": "^5.25.0",
51
- "ava": "^4.2.0",
48
+ "@types/sinon": "^10.0.13",
49
+ "@typescript-eslint/eslint-plugin": "^5.32.0",
50
+ "@typescript-eslint/parser": "^5.32.0",
51
+ "ava": "^4.3.1",
52
52
  "dotenv": "^16.0.1",
53
- "eslint": "^8.16.0",
53
+ "eslint": "^8.21.0",
54
54
  "eslint-config-airbnb": "^19.0.4",
55
55
  "eslint-config-airbnb-typescript": "^17.0.0",
56
- "eslint-import-resolver-typescript": "^2.7.1",
56
+ "eslint-import-resolver-typescript": "^3.4.0",
57
57
  "eslint-plugin-import": "^2.26.0",
58
- "prettier": "^2.6.2",
58
+ "prettier": "^2.7.1",
59
59
  "prettier-plugin-jsdoc": "^0.3.38",
60
60
  "sinon": "^14.0.0",
61
- "typedoc": "^0.22.15",
62
- "typedoc-plugin-extras": "^2.2.3",
63
- "typescript": "^4.6.4"
61
+ "typedoc": "^0.23.10",
62
+ "typedoc-plugin-extras": "^2.3.0",
63
+ "typescript": "^4.7.4"
64
64
  },
65
65
  "dependencies": {
66
66
  "atlassian-jwt": "^2.0.2",
67
67
  "axios": "^0.27.2",
68
68
  "form-data": "^4.0.0",
69
- "oauth": "^0.9.15",
69
+ "oauth": "^0.10.0",
70
70
  "tslib": "^2.4.0"
71
71
  }
72
72
  }