pusher 5.3.2 → 5.3.3

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 (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +16 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.3.3
4
+
5
+ - [FIXED] Bump node-fetch to ^2.7.0, express to ^4.22.1, eslint to ^7.32.0, mocha to ^9.2.2
6
+ - [FIXED] Pin transitive dependencies via overrides: cipher-base, cookie, elliptic, form-data, lodash, pbkdf2, qs, sha.js, tar
7
+
3
8
  ## 5.3.2
4
9
 
5
10
  - [Added] missing error types for Typescript support
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pusher",
3
3
  "description": "Node.js client to interact with the Pusher Channels REST API",
4
- "version": "5.3.2",
4
+ "version": "5.3.3",
5
5
  "author": "Pusher <support@pusher.com>",
6
6
  "contributors": [
7
7
  {
@@ -24,24 +24,35 @@
24
24
  "dependencies": {
25
25
  "abort-controller": "^3.0.0",
26
26
  "is-base64": "^1.1.0",
27
- "node-fetch": "^2.6.1",
27
+ "node-fetch": "^2.7.0",
28
28
  "tweetnacl": "^1.0.0",
29
29
  "tweetnacl-util": "^0.15.0",
30
30
  "@types/node-fetch": "^2.5.7"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^14.14.6",
34
- "eslint": "^7.11.0",
34
+ "eslint": "^7.32.0",
35
35
  "expect.js": "=0.3.1",
36
- "express": "^4.17.1",
36
+ "express": "^4.22.1",
37
37
  "https-proxy-agent": "^5.0.0",
38
- "mocha": "^7.2.0",
38
+ "mocha": "^9.2.2",
39
39
  "nock": "^12.0.3",
40
40
  "prettier": "2.1.2",
41
41
  "sinon": "=1.10.2",
42
42
  "webpack": "^4.42.1",
43
43
  "webpack-cli": "^3.3.11"
44
44
  },
45
+ "overrides": {
46
+ "cipher-base": "^1.0.6",
47
+ "cookie": "^0.7.1",
48
+ "elliptic": "^6.6.1",
49
+ "form-data": "^3.0.4",
50
+ "lodash": "^4.17.23",
51
+ "pbkdf2": "^3.1.5",
52
+ "qs": "^6.14.0",
53
+ "sha.js": "^2.4.12",
54
+ "tar": "^6.2.1"
55
+ },
45
56
  "scripts": {
46
57
  "local-test": "npx mocha 'tests/integration/**/*.js'",
47
58
  "test": "npx mocha 'tests/{integration,remote}/**/*.js'",