Skip to content

Commit 3c097ce

Browse files
authored
Backport: Node 24 support for v22. (#2612)
Backporting #2587 for v22
1 parent 3f2a612 commit 3c097ce

7 files changed

Lines changed: 17 additions & 13 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ master, v18, v19, v20, v21 ]
16+
branches: [ master, v19, v20, v21, v22 ]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ master, v18, v19, v20, v21 ]
19+
branches: [ master, v19, v20, v21, v22 ]
2020
schedule:
2121
- cron: '26 8 * * 1'
2222

.github/workflows/node.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ name: Node.js CI
55

66
on:
77
push:
8-
branches: [ master, v18, v19, v20, v21 ]
8+
branches: [ master, v19, v20, v21, v22 ]
99
pull_request:
10-
branches: [ master, v18, v19, v20, v21 ]
10+
branches: [ master, v19, v20, v21, v22 ]
1111

1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
node-version: [20.9.0, 20.x, 22.0.0, 22.x]
18+
node-version: [20.9.0, 20.x, 22.0.0, 22.x, 24.0.0, 24.x]
1919
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2020
steps:
2121
- name: Get yarn cache dir

.github/workflows/validations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Validations
22

33
on:
44
push:
5-
branches: [ master, v18, v19, v20, v21 ]
5+
branches: [ master, v19, v20, v21, v22 ]
66
pull_request:
7-
branches: [ master, v18, v19, v20, v21 ]
7+
branches: [ master, v19, v20, v21, v22 ]
88

99

1010
jobs:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Version 22
44

5+
### v22.14.0
6+
7+
- Supporting Node 24.
8+
59
### v22.13.2
610

711
- Fixed inconsistency between the actual catcher behavior and the error handling documentation:

express-zod-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"*.md"
5959
],
6060
"engines": {
61-
"node": "^20.9.0 || ^22.0.0"
61+
"node": "^20.9.0 || ^22.0.0 || ^24.0.0"
6262
},
6363
"dependencies": {
6464
"ansis": "^3.17.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"compression": "^1.7.4",
3838
"eslint": "^9.24.0",
3939
"eslint-config-prettier": "^10.1.2",
40-
"eslint-plugin-allowed-dependencies": "^1.2.0",
40+
"eslint-plugin-allowed-dependencies": "^1.3.0",
4141
"eslint-plugin-prettier": "^5.2.6",
4242
"express": "^5.1.0",
4343
"express-fileupload": "^1.5.0",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,10 +1327,10 @@ eslint-config-prettier@^10.1.2:
13271327
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.2.tgz#31a4b393c40c4180202c27e829af43323bf85276"
13281328
integrity sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==
13291329

1330-
eslint-plugin-allowed-dependencies@^1.2.0:
1331-
version "1.2.0"
1332-
resolved "https://registry.yarnpkg.com/eslint-plugin-allowed-dependencies/-/eslint-plugin-allowed-dependencies-1.2.0.tgz#d856c320d6c1685d79a29fcda89cdc90b374bece"
1333-
integrity sha512-xX6+xvmow4EVf5RxE2E9UTcizeSfRE/7UHCjvv/VChQfzes2NM64wJInC1PqG+/SCICdj5HG1miT24JsgkiyCA==
1330+
eslint-plugin-allowed-dependencies@^1.3.0:
1331+
version "1.3.0"
1332+
resolved "https://registry.yarnpkg.com/eslint-plugin-allowed-dependencies/-/eslint-plugin-allowed-dependencies-1.3.0.tgz#13af5434ea44b4db713bb02b3d0b97f880515b3c"
1333+
integrity sha512-NBEqP63WnZwE8GZsV/GAQ3QFZ92wCWxJ/GXp/sPz40LDMKpW+gMiYkixheNm5ZpVWJtyg6XgUQZyJyaYXzqNfA==
13341334
dependencies:
13351335
ramda "^0.30.1"
13361336

0 commit comments

Comments
 (0)