Skip to content

Commit cdeeda3

Browse files
authored
Switch to fetch-http2 (#54)
* Switch to fetch-http2 * Use node 18 * Deps * Fix build include * Changelog
1 parent 3f67694 commit cdeeda3

13 files changed

+765
-634
lines changed

.eslintrc

+11-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,18 @@
44
"node": true,
55
"mocha": true
66
},
7-
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:prettier/recommended",
10+
"plugin:@typescript-eslint/eslint-recommended",
11+
"plugin:@typescript-eslint/recommended"
12+
],
813
"parserOptions": {
9-
"ecmaVersion": 2019,
14+
"ecmaVersion": 2022,
1015
"sourceType": "module"
16+
},
17+
"rules": {
18+
"@typescript-eslint/no-explicit-any": "off",
19+
"@typescript-eslint/no-non-null-assertion": "off"
1120
}
1221
}

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212

13-
- uses: pnpm/action-setup@v2.2.1
13+
- uses: pnpm/action-setup@v2
1414
with:
1515
version: 7
1616

1717
- name: Use Node.js
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 16
20+
node-version: 18
2121
cache: pnpm
2222

2323
- run: pnpm install --frozen-lockfile

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [16, 18]
14+
node-version: [18]
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818

19-
- uses: pnpm/action-setup@v2.2.1
19+
- uses: pnpm/action-setup@v2
2020
with:
2121
version: 7
2222

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
---
66

7+
## [11.0.0](https://github.com/AndrewBarba/apns2/releases/tag/11.0.0)
8+
9+
1. Built for Node.js 18
10+
2. Drops support for all versions of Node <18
11+
712
## [10.1.0](https://github.com/AndrewBarba/apns2/releases/tag/10.1.0)
813

914
1. Add support for alert subtitle

esbuild.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { build, BuildOptions } from 'esbuild'
22

33
const options: BuildOptions = {
4-
entryPoints: ['./index.ts'],
4+
entryPoints: ['./src/index.ts'],
55
platform: 'node',
6-
target: 'node16',
6+
target: 'node18',
77
external: ['jsonwebtoken'],
88
minify: true,
99
bundle: true,

index.ts

-4
This file was deleted.

package.json

+21-18
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,47 @@
11
{
22
"name": "apns2",
3-
"version": "10.1.0",
3+
"version": "11.0.0",
44
"description": "Node client for connecting to Apple's Push Notification Service using the new HTTP/2 protocol with JSON web tokens.",
55
"author": "Andrew Barba <[email protected]>",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",
88
"license": "MIT",
99
"engines": {
10-
"node": ">=16.14.0"
10+
"node": ">=18"
1111
},
1212
"repository": {
1313
"url": "https://github.com/AndrewBarba/apns2"
1414
},
1515
"dependencies": {
16-
"jsonwebtoken": "^8.5.1"
16+
"fetch-http2": "^1.0.2",
17+
"jsonwebtoken": "^9.0.0"
1718
},
1819
"devDependencies": {
19-
"@tsconfig/node16": "^1.0.2",
20-
"@types/jsonwebtoken": "^8.5.8",
21-
"@types/mocha": "^9.1.1",
22-
"@types/node": "^17.0.33",
20+
"@tsconfig/node18": "^1.0.1",
21+
"@types/jsonwebtoken": "^9.0.1",
22+
"@types/mocha": "^10.0.1",
23+
"@types/node": "^18.11.18",
2324
"@types/should": "^13.0.0",
24-
"dotenv": "^8.2.0",
25-
"esbuild": "^0.14.39",
26-
"eslint": "^8.15.0",
27-
"eslint-config-prettier": "^8.5.0",
28-
"eslint-plugin-prettier": "^4.0.0",
29-
"mocha": "^10.0.0",
30-
"prettier": "^2.6.2",
25+
"@typescript-eslint/eslint-plugin": "^5.48.1",
26+
"@typescript-eslint/parser": "^5.48.1",
27+
"dotenv": "^16.0.3",
28+
"esbuild": "^0.16.17",
29+
"eslint": "^8.31.0",
30+
"eslint-config-prettier": "^8.6.0",
31+
"eslint-plugin-prettier": "^4.2.1",
32+
"mocha": "^10.2.0",
33+
"prettier": "^2.8.2",
3134
"should": "^13.2.3",
32-
"ts-node": "^10.7.0",
33-
"typescript": "^4.6.4"
35+
"ts-node": "^10.9.1",
36+
"typescript": "^4.9.4"
3437
},
3538
"files": [
3639
"dist"
3740
],
3841
"scripts": {
3942
"build": "tsc -emitDeclarationOnly && ts-node -T ./esbuild.ts",
40-
"lint": "eslint .",
41-
"test": "mocha --exit --bail --slow 1000 --timeout 5000 ./test/test.js",
43+
"lint": "eslint src",
44+
"test": "mocha --require ts-node/register --exit --bail --slow 1000 --timeout 5000 ./test/test.ts",
4245
"ts": "ts-node -T"
4346
}
4447
}

0 commit comments

Comments
 (0)