Skip to content

Commit

Permalink
Unique fetch client per instance
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewBarba committed Nov 15, 2024
1 parent a4a7f02 commit 4b91ef0
Show file tree
Hide file tree
Showing 5 changed files with 641 additions and 559 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

- uses: pnpm/action-setup@v3
with:
version: 8
version: 9

- name: Use Node.js
uses: actions/setup-node@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:

strategy:
matrix:
node-version: [16, 18, 20]
node-version: [18, 20, 22]

steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v3
with:
version: 8
version: 9

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apns2",
"version": "11.7.1",
"version": "11.8.0",
"description": "Node client for connecting to Apple's Push Notification Service using the new HTTP/2 protocol with JSON web tokens.",
"author": "Andrew Barba <[email protected]>",
"main": "dist/index.js",
Expand Down Expand Up @@ -29,15 +29,15 @@
],
"dependencies": {
"fast-jwt": "^4.0.5",
"fetch-http2": "^1.4.0"
"fetch-http2": "^1.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@biomejs/biome": "^1.9.4",
"@tsconfig/node16": "^16.1.3",
"@types/node": "^22.5.5",
"chai": "^5.1.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
"@types/node": "^22.9.0",
"chai": "^5.1.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"scripts": {
"build": "tsc",
Expand Down
Loading

0 comments on commit 4b91ef0

Please sign in to comment.