Skip to content

Commit 18f4d16

Browse files
committed
dropped support for nodejs 18 added support for nodejs 24
1 parent 16a843c commit 18f4d16

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/prebuild.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [18, 20, 22]
18+
node-version: [20, 22, 24]
1919
architecture: [x64]
2020

2121
steps:
@@ -75,16 +75,16 @@ jobs:
7575

7676
strategy:
7777
matrix:
78-
node-version: [18, 20, 22]
78+
node-version: [20, 22, 24]
7979
architecture: [x64]
8080
include:
8181
# Add arm64 for macOS (Apple Silicon)
82-
- node-version: 18
83-
architecture: arm64
8482
- node-version: 20
8583
architecture: arm64
8684
- node-version: 22
8785
architecture: arm64
86+
- node-version: 24
87+
architecture: arm64
8888

8989
steps:
9090
- uses: actions/checkout@v4

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
container: node:${{ matrix.node }}-bookworm
77
strategy:
88
matrix:
9-
node: [18, 20, 22]
9+
node: [20, 22, 24]
1010
name: Node ${{ matrix.node }} sample
1111
steps:
1212
- name: Checkout

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ $ npm install # This will fallback to building from source if no prebuilt binary
7373

7474
### Supported Node.js Versions
7575

76-
Prebuilt binaries are available for Node.js versions 16, 18, 20, and 22. The package supports Node.js 14+ but prebuilt binaries are only provided for actively maintained versions.
76+
Prebuilt binaries are available for Node.js versions 20, 22, and 24. The package supports Node.js 20+ and prebuilt binaries are only provided for actively maintained versions.
7777

7878
## Usage
7979

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"!win32"
2525
],
2626
"engines": {
27-
"node": ">=18"
27+
"node": ">=20"
2828
},
2929
"binary": {
3030
"napi_versions": [3, 4, 5, 6, 7, 8, 9]

0 commit comments

Comments
 (0)