Skip to content

Commit e605b37

Browse files
authored
APN with HTTP/2 (#72)
* update to apn version 2 * correcting some errors * fix typo * Updates tests * Adds support for retrying failures * v2.0.0-alpha.1 * Updates changelog
1 parent dfa75b5 commit e605b37

7 files changed

+558
-554
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [2.0.0-alpha.1](https://github.com/parse-server-modules/parse-server-push-adapter/tree/2.0.0-alpha.1) (2017-03-14)
4+
[Full Changelog](https://github.com/parse-server-modules/parse-server-push-adapter/compare/v1.3.0...2.0.0-alpha.1)
5+
6+
**What's new**
7+
8+
- Adds support for APNS with HTTP/2.0
9+
- Improvements in testing, tooling
10+
311
## [1.3.0](https://github.com/parse-server-modules/parse-server-push-adapter/tree/1.3.0) (2017-03-14)
412
[Full Changelog](https://github.com/parse-server-modules/parse-server-push-adapter/compare/v1.2.0...1.3.0)
513

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server-push-adapter",
3-
"version": "1.3.0",
3+
"version": "2.0.0-alpha.1",
44
"description": "Base parse-server-push-adapter",
55
"main": "lib/index.js",
66
"files": [
@@ -33,10 +33,10 @@
3333
"nyc": "^10.1.2"
3434
},
3535
"dependencies": {
36-
"apn": "^1.7.8",
36+
"apn": "^2.1.3",
3737
"node-gcm": "^0.14.0",
38-
"npmlog": "^2.0.3",
39-
"parse": "^1.8.1"
38+
"npmlog": "^4.0.2",
39+
"parse": "^1.9.2"
4040
},
4141
"engines": {
4242
"node": ">= 4.6.0"

0 commit comments

Comments
 (0)