Skip to content

Commit ae8cf28

Browse files
Merge main into release
2 parents 291851c + 843a8d7 commit ae8cf28

62 files changed

Lines changed: 8640 additions & 2389 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/firestore': patch
3+
---
4+
5+
**Beta API Breaking change**: Defer pipeline user data validation from initialization to `execute()`. This breaking change is allowed in a non-major release since the Firestore Pipelines API is currently in Public Preview.

.changeset/funny-apples-pay.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/data-connect': minor
3+
'firebase': minor
4+
---
5+
6+
Add validateArgsWithOptions() to Data Connect (internal change, no need to add to public release notes).

.changeset/sharp-kiwis-push.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/ai': minor
3+
'firebase': minor
4+
---
5+
6+
Added `responseJsonSchema` to `GenerationConfig`.

.changeset/spotty-hornets-thank.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@firebase/firestore": patch
3+
---
4+
5+
Fixed X is not a function issues observed in server side rendering APIs.

.changeset/spotty-rocks-sin.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'firebase': minor
3+
'@firebase/firestore': minor
4+
---
5+
6+
Add support for array expressions `arrayFirst`, `arrayFirstN`,`arrayLast`,`arrayLastN`,`arrayMinimum`,`arrayMinimumN`,`arrayMaximum`,`arrayMaximumN`,`arrayIndexOf`, `arrayLastIndexOf` and `arrayIndexOfAll`

.changeset/yellow-poets-teach.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
'@firebase/data-connect': patch
3+
'@firebase/firestore': patch
4+
'@firebase/functions': patch
5+
'@firebase/database': patch
6+
'@firebase/storage': patch
7+
'@firebase/auth': patch
8+
'@firebase/util': minor
9+
---
10+
11+
Remove `updateEmulatorBanner()`. (No release note needed.)

.github/CODEOWNERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
* @firebase/jssdk-global-approvers
1212

1313
# Database Code
14-
packages/database @maneesht @aashishpatil-g @firebase/jssdk-global-approvers
15-
packages/database-compat @maneesht @aashishpatil-g @firebase/jssdk-global-approvers
16-
packages/database-types @maneesht @aashishpatil-g @firebase/jssdk-global-approvers
14+
packages/database @stephenarosaj @dconeybe @aashishpatil-g @firebase/jssdk-global-approvers
15+
packages/database-compat @stephenarosaj @dconeybe @aashishpatil-g @firebase/jssdk-global-approvers
16+
packages/database-types @stephenarosaj @dconeybe @aashishpatil-g @firebase/jssdk-global-approvers
1717

1818
# Data Connect Code
19-
packages/data-connect @maneesht @aashishpatil-g @firebase/jssdk-global-approvers
19+
packages/data-connect @stephenarosaj @dconeybe @aashishpatil-g @firebase/jssdk-global-approvers
2020

2121
# Firestore Code
2222
packages/firestore @firebase/firestore-js-team @firebase/jssdk-global-approvers

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directories:
5+
- "/"
6+
- "/packages/*"
7+
- "/integration/*"
8+
- "/e2e/*"
9+
- "/repo-scripts/**/*"
10+
exclude-paths:
11+
- "packages/auth/demo"
12+
- "packages/auth/cordova/demo"
13+
- "packages/auth-compat/demo"
14+
schedule:
15+
interval: "daily"
16+
17+
- package-ecosystem: "github-actions"
18+
directory: "/"
19+
schedule:
20+
interval: "daily"

.github/workflows/check-changeset.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ jobs:
6262
STEPS_CHECK_CHANGESET_OUTPUTS_BLOCKING_FAILURE: ${{steps.check-changeset.outputs.BLOCKING_FAILURE}}
6363
- name: Find Comment
6464
# This commit represents v3.1.0
65-
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e
65+
uses: peter-evans/find-comment@a4ef349b8c29f841860ce94ed82b20f0a39b6961
6666
id: fc
6767
with:
6868
issue-number: ${{github.event.number}}
6969
body-includes: Changeset File Check
7070
- name: Create comment (missing packages)
7171
if: ${{!steps.fc.outputs.comment-id && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
7272
# This commit represents v4.0.0
73-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
73+
uses: peter-evans/create-or-update-comment@e2426b4b1346fd5e8c731c0bbe368063ea0286ac
7474
with:
7575
issue-number: ${{github.event.number}}
7676
body: |
@@ -79,7 +79,7 @@ jobs:
7979
- name: Update comment (missing packages)
8080
if: ${{steps.fc.outputs.comment-id && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
8181
# This commit represents v4.0.0
82-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
82+
uses: peter-evans/create-or-update-comment@e2426b4b1346fd5e8c731c0bbe368063ea0286ac
8383
with:
8484
comment-id: ${{steps.fc.outputs.comment-id}}
8585
edit-mode: replace
@@ -89,7 +89,7 @@ jobs:
8989
- name: Update comment (no missing packages)
9090
if: ${{steps.fc.outputs.comment-id && !steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
9191
# This commit represents v4.0.0
92-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
92+
uses: peter-evans/create-or-update-comment@e2426b4b1346fd5e8c731c0bbe368063ea0286ac
9393
with:
9494
comment-id: ${{steps.fc.outputs.comment-id}}
9595
edit-mode: replace

.github/workflows/check-vertexai-responses.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ jobs:
3939
working-directory: packages/ai/test-utils/vertexai-sdk-test-data
4040
- name: Find comment from previous run if exists
4141
# This commit represents v3.1.0
42-
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e
42+
uses: peter-evans/find-comment@a4ef349b8c29f841860ce94ed82b20f0a39b6961
4343
id: fc
4444
with:
4545
issue-number: ${{github.event.number}}
4646
body-includes: Vertex AI Mock Responses Check
4747
- name: Comment on PR if newer version is available
4848
if: ${{env.cloned_tag != env.latest_tag && !steps.fc.outputs.comment-id}}
4949
# This commit represents v4.0.0
50-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
50+
uses: peter-evans/create-or-update-comment@e2426b4b1346fd5e8c731c0bbe368063ea0286ac
5151
with:
5252
issue-number: ${{github.event.number}}
5353
body: >

0 commit comments

Comments
 (0)