From a9466478efdcd9ab475dd2f29401dab014046596 Mon Sep 17 00:00:00 2001 From: Kaden Wilkinson <7799267+kdawgwilk@users.noreply.github.com> Date: Mon, 17 Nov 2025 13:11:34 -0700 Subject: [PATCH 1/4] feat: add node.js 24 runtime support with beta status --- src/deploy/functions/runtimes/supported/types.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/deploy/functions/runtimes/supported/types.ts b/src/deploy/functions/runtimes/supported/types.ts index 82f46998626..d30db5ca4c5 100644 --- a/src/deploy/functions/runtimes/supported/types.ts +++ b/src/deploy/functions/runtimes/supported/types.ts @@ -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", From ef527b603e14fb97b61d0aba371b3f78fb586468 Mon Sep 17 00:00:00 2001 From: Daniel Lee Date: Tue, 18 Nov 2025 11:06:26 -0800 Subject: [PATCH 2/4] add changelog. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29bb2d..5833c51fcf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1 @@ +- Add support for nodejs24 (beta) runtime for Firebase Functions. (#9475) From bf40fe7ac8d0d3ebe7bb7cc55d96c6508ce3cf81 Mon Sep 17 00:00:00 2001 From: Daniel Lee Date: Tue, 18 Nov 2025 11:52:20 -0800 Subject: [PATCH 3/4] update firebase.json schema --- schema/firebase-config.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/schema/firebase-config.json b/schema/firebase-config.json index 32d3986fe9c..964672a461e 100644 --- a/schema/firebase-config.json +++ b/schema/firebase-config.json @@ -7,6 +7,7 @@ "nodejs18", "nodejs20", "nodejs22", + "nodejs24", "python310", "python311", "python312", @@ -915,6 +916,7 @@ "nodejs18", "nodejs20", "nodejs22", + "nodejs24", "python310", "python311", "python312", From bc92dd7816594f03cb29cd7dd23a916489c10ee4 Mon Sep 17 00:00:00 2001 From: Daniel Lee Date: Tue, 18 Nov 2025 21:40:26 -0800 Subject: [PATCH 4/4] trigger ci