@parse/push-adapter 3.4.1 → 4.0.0

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 +10 -1
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -2,7 +2,16 @@
2
2
 
3
3
  ### master
4
4
 
5
- [Full Changelog](https://github.com/parse-server-modules/parse-server-push-adapter/compare/3.4.1...master)
5
+ [Full Changelog](https://github.com/parse-server-modules/parse-server-push-adapter/compare/4.0.0...master)
6
+
7
+ ## 4.0.0
8
+ [Full Changelog](https://github.com/parse-server-modules/parse-server-push-adapter/compare/3.4.1...4.0.0)
9
+
10
+ ### BREAKING CHANGE
11
+ - node-apns 5 requires node >= 12 ([#198](https://github.com/parse-community/parse-server-push-adapter/pull/198))
12
+
13
+ ### Bug Fixes
14
+ - bump node-apns to 5.0 ([#198](https://github.com/parse-community/parse-server-push-adapter/pull/198))
6
15
 
7
16
  ## 3.4.1
8
17
  [Full Changelog](https://github.com/parse-server-modules/parse-server-push-adapter/compare/3.4.0...3.4.1)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parse/push-adapter",
3
- "version": "3.4.1",
3
+ "version": "4.0.0",
4
4
  "description": "Base parse-server-push-adapter",
5
5
  "main": "lib/index.js",
6
6
  "files": [
@@ -33,12 +33,12 @@
33
33
  "nyc": "14.1.1"
34
34
  },
35
35
  "dependencies": {
36
- "@parse/node-apn": "4.1.1",
36
+ "@parse/node-apn": "5.0.0",
37
37
  "@parse/node-gcm": "1.0.2",
38
38
  "npmlog": "4.1.2",
39
39
  "parse": "3.3.0"
40
40
  },
41
41
  "engines": {
42
- "node": ">= 8.9.1"
42
+ "node": ">= 12"
43
43
  }
44
44
  }