Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Add support for nodejs24 (beta) runtime for Firebase Functions. (#9475)
- Adds listServices and also defines trigger within runv2.ts [#9482]
2 changes: 2 additions & 0 deletions schema/firebase-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"nodejs18",
"nodejs20",
"nodejs22",
"nodejs24",
"python310",
"python311",
"python312",
Expand Down Expand Up @@ -915,6 +916,7 @@
"nodejs18",
"nodejs20",
"nodejs22",
"nodejs24",
"python310",
"python311",
"python312",
Expand Down
6 changes: 6 additions & 0 deletions src/deploy/functions/runtimes/supported/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ export const RUNTIMES = runtimes({
deprecationDate: "2027-04-30",
decommissionDate: "2028-10-31",
},
nodejs24: {
friendly: "Node.js 24",
status: "beta",
deprecationDate: "2028-04-30",
decommissionDate: "2028-10-31",
},
python310: {
friendly: "Python 3.10",
status: "GA",
Expand Down
Loading