Skip to content

Commit 4d26f80

Browse files
authored
Merge branch 'next' into aalej_py314-runtime
2 parents 4a1bd7e + 49ec34d commit 4d26f80

31 files changed

Lines changed: 1301 additions & 257 deletions

.github/workflows/node-test.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
name: CI Tests
22

33
on:
4-
- pull_request
5-
- push
6-
- merge_group
4+
pull_request:
5+
branches:
6+
- main
7+
- next
8+
push:
9+
merge_group:
710

811
env:
912
CI: true
@@ -180,7 +183,7 @@ jobs:
180183

181184
integration:
182185
needs: unit
183-
if: contains(fromJSON('["push", "merge_group"]'), github.event_name)
186+
if: contains(fromJSON('["push", "merge_group"]'), github.event_name) || (github.event_name == 'pull_request' && github.base_ref == 'next')
184187
runs-on: ubuntu-22.04
185188

186189
env:
@@ -247,7 +250,7 @@ jobs:
247250

248251
integration-windows:
249252
needs: unit
250-
if: contains(fromJSON('["push", "merge_group"]'), github.event_name)
253+
if: contains(fromJSON('["push", "merge_group"]'), github.event_name) || (github.event_name == 'pull_request' && github.base_ref == 'next')
251254
runs-on: windows-latest
252255

253256
env:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
- Fixed an issue where hosting deploy allowed publishing to a site in a different project. (#10376)
2+
- Added 'firebase_deploy' and 'firebase_deploy_status' MCP tools.
3+
- Added SSE mode support to `firebase mcp`. To use it, run `firebase mcp --mode=sse --port=3000`, and connect your client on `http://localhost:3000`.
14
- Update the valid Python runtimes for functions. Default Python runtime is now Python 3.14.

npm-shrinkwrap.json

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

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@
185185
"@angular-devkit/architect": "^0.1402.2",
186186
"@angular-devkit/core": "^14.2.2",
187187
"@google/events": "^5.1.1",
188+
"@modelcontextprotocol/ext-apps": "^1.3.2",
188189
"@types/archiver": "^6.0.0",
189190
"@types/async-lock": "^1.4.2",
190191
"@types/body-parser": "^1.17.0",

0 commit comments

Comments
 (0)