Skip to content

Commit 1fdab8a

Browse files
authored
feat: Add support for Node 24, drop support for Node 18 (#456)
BREAKING CHANGE: Adds support for Node 24, drops support for Node 18.
1 parent 7a1e2c7 commit 1fdab8a

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,24 @@ jobs:
2525
strategy:
2626
matrix:
2727
include:
28-
- name: Parse Server 8, Node.js 18
29-
NODE_VERSION: 18.20.4
30-
PARSE_SERVER_VERSION: 8
3128
- name: Parse Server 8, Node.js 20
32-
NODE_VERSION: 20.15.1
29+
NODE_VERSION: 20.18.0
3330
PARSE_SERVER_VERSION: 8
3431
- name: Parse Server 8, Node.js 22
35-
NODE_VERSION: 22.4.1
32+
NODE_VERSION: 22.12.0
33+
PARSE_SERVER_VERSION: 8
34+
- name: Parse Server 8, Node.js 24
35+
NODE_VERSION: 24.11.0
3636
PARSE_SERVER_VERSION: 8
37-
- name: Parse Server 7, Node.js 18
38-
NODE_VERSION: 18.20.4
39-
PARSE_SERVER_VERSION: 7
40-
- name: Parse Server 7, Node.js 20
41-
NODE_VERSION: 20.15.1
42-
PARSE_SERVER_VERSION: 7
43-
- name: Parse Server 7, Node.js 22
44-
NODE_VERSION: 22.4.1
45-
PARSE_SERVER_VERSION: 7
37+
- name: Parse Server 9, Node.js 20
38+
NODE_VERSION: 20.19.0
39+
PARSE_SERVER_VERSION: 9
40+
- name: Parse Server 9, Node.js 22
41+
NODE_VERSION: 22.12.0
42+
PARSE_SERVER_VERSION: 9
43+
- name: Parse Server 9, Node.js 24
44+
NODE_VERSION: 24.11.0
45+
PARSE_SERVER_VERSION: 9
4646
fail-fast: false
4747
name: ${{ matrix.name }}
4848
timeout-minutes: 15

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ Parse Server S3 Adapter is continuously tested with the most recent releases of
6161

6262
| Node.js Version | End-of-Life | Compatible |
6363
|-----------------|-------------|------------|
64-
| 18 | April 2025 | ✅ Yes |
6564
| 20 | April 2026 | ✅ Yes |
6665
| 22 | April 2027 | ✅ Yes |
66+
| 24 | April 2028 | ✅ Yes |
6767

6868
## AWS Credentials
6969

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
@@ -55,6 +55,6 @@
5555
"test:mongodb:runnerstop": "mongodb-runner stop --all"
5656
},
5757
"engines": {
58-
"node": ">=18.20.5 <19.0.0 || >=20.18.1 <21.0.0 || >=22.12.0 <23.0.0"
58+
"node": ">=20.18.0 <21.0.0 || >=22.12.0 <23.0.0 || >=24.11.0 <25.0.0"
5959
}
6060
}

0 commit comments

Comments
 (0)