Skip to content

Commit 644808c

Browse files
authored
feat: add node.js 24 runtime support with beta status (#9475)
feat: add node.js 24 runtime support with beta status
1 parent a15cc04 commit 644808c

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
- Add support for nodejs24 (beta) runtime for Firebase Functions. (#9475)
12
- Adds listServices and also defines trigger within runv2.ts [#9482]

schema/firebase-config.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"nodejs18",
88
"nodejs20",
99
"nodejs22",
10+
"nodejs24",
1011
"python310",
1112
"python311",
1213
"python312",
@@ -915,6 +916,7 @@
915916
"nodejs18",
916917
"nodejs20",
917918
"nodejs22",
919+
"nodejs24",
918920
"python310",
919921
"python311",
920922
"python312",

src/deploy/functions/runtimes/supported/types.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ export const RUNTIMES = runtimes({
8989
deprecationDate: "2027-04-30",
9090
decommissionDate: "2028-10-31",
9191
},
92+
nodejs24: {
93+
friendly: "Node.js 24",
94+
status: "beta",
95+
deprecationDate: "2028-04-30",
96+
decommissionDate: "2028-10-31",
97+
},
9298
python310: {
9399
friendly: "Python 3.10",
94100
status: "GA",

0 commit comments

Comments
 (0)