Skip to content

Commit 3e8ebd6

Browse files
authored
Add support for Node 24 (#8565)
* Add node 24 to engines and CI * Add node 24 to engines and CI * npm i' * Updating superstatic
1 parent 363d3f8 commit 3e8ebd6

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

.github/workflows/node-test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
node-version:
4949
- "20"
5050
- "22"
51+
- "24"
5152
steps:
5253
- uses: actions/checkout@v4
5354
- uses: actions/setup-node@v3
@@ -153,6 +154,7 @@ jobs:
153154
node-version:
154155
- "20"
155156
- "22"
157+
- "24"
156158
steps:
157159
- uses: actions/checkout@v4
158160
- uses: actions/setup-node@v3
@@ -301,7 +303,6 @@ jobs:
301303
matrix:
302304
node-version:
303305
- "20"
304-
- "22"
305306

306307
steps:
307308
- uses: actions/checkout@v4
@@ -321,7 +322,6 @@ jobs:
321322
matrix:
322323
node-version:
323324
- "20"
324-
- "22"
325325

326326
steps:
327327
- uses: actions/checkout@v4
@@ -341,7 +341,6 @@ jobs:
341341
matrix:
342342
node-version:
343343
- "20"
344-
- "22"
345344

346345
steps:
347346
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- Added Node 24 support.
2+
- Updated superstatic to v10.
13
- Fixed a crash during parallel deployments when buildConfig is empty (#9455)
24
- [Added] support for new google-genai plugin during `init genkit` (#8957)
35
- Updated to v2.17.1 of the Data Connect emulator, which fixes an admin SDK bug for operation without argument #9449 (#9454).

npm-shrinkwrap.json

Lines changed: 10 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
],
7373
"preferGlobal": true,
7474
"engines": {
75-
"node": ">=20.0.0 || >=22.0.0"
75+
"node": ">=20.0.0 || >=22.0.0 || >=24.0.0"
7676
},
7777
"author": "Firebase (https://firebase.google.com/)",
7878
"license": "MIT",
@@ -165,7 +165,7 @@
165165
"sql-formatter": "^15.3.0",
166166
"stream-chain": "^2.2.4",
167167
"stream-json": "^1.7.3",
168-
"superstatic": "^9.2.0",
168+
"superstatic": "^10.0.0",
169169
"tar": "^6.1.11",
170170
"tcp-port-used": "^1.0.2",
171171
"tmp": "^0.2.3",

0 commit comments

Comments
 (0)