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
5 changes: 2 additions & 3 deletions .github/workflows/node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
node-version:
- "20"
- "22"
- "24"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -153,6 +154,7 @@ jobs:
node-version:
- "20"
- "22"
- "24"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -301,7 +303,6 @@ jobs:
matrix:
node-version:
- "20"
- "22"

steps:
- uses: actions/checkout@v4
Expand All @@ -321,7 +322,6 @@ jobs:
matrix:
node-version:
- "20"
- "22"

steps:
- uses: actions/checkout@v4
Expand All @@ -341,7 +341,6 @@ jobs:
matrix:
node-version:
- "20"
- "22"

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- Added Node 24 support.
- Updated superstatic to v10.
- Fixed a crash during parallel deployments when buildConfig is empty (#9455)
- [Added] support for new google-genai plugin during `init genkit` (#8957)
- Updated to v2.17.1 of the Data Connect emulator, which fixes an admin SDK bug for operation without argument #9449 (#9454).
Expand Down
19 changes: 10 additions & 9 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
],
"preferGlobal": true,
"engines": {
"node": ">=20.0.0 || >=22.0.0"
"node": ">=20.0.0 || >=22.0.0 || >=24.0.0"
},
"author": "Firebase (https://firebase.google.com/)",
"license": "MIT",
Expand Down Expand Up @@ -165,7 +165,7 @@
"sql-formatter": "^15.3.0",
"stream-chain": "^2.2.4",
"stream-json": "^1.7.3",
"superstatic": "^9.2.0",
"superstatic": "^10.0.0",
"tar": "^6.1.11",
"tcp-port-used": "^1.0.2",
"tmp": "^0.2.3",
Expand Down
Loading