Skip to content

Commit 61c13fb

Browse files
committed
Merge remote-tracking branch 'origin/main' into mtewani/partial-errors
2 parents e1f5533 + 5718838 commit 61c13fb

File tree

67 files changed

+229
-230
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+229
-230
lines changed

.changeset/chilly-parrots-remember.md

-5
This file was deleted.

.changeset/floppy-schools-battle.md

-6
This file was deleted.

.changeset/fluffy-otters-whisper.md

-5
This file was deleted.

.changeset/large-pants-hide.md

-6
This file was deleted.

.changeset/silver-jeans-sell.md

-7
This file was deleted.

.changeset/stupid-apples-shave.md

-6
This file was deleted.

.changeset/tricky-actors-exercise.md

-5
This file was deleted.

.changeset/tricky-geese-shout.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/vertexai': patch
3+
---
4+
5+
Label `GroundingAttribution` as deprecated.

.github/workflows/check-changeset.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,25 @@ jobs:
5757
- name: Print blocking failure status
5858
run: echo "${{steps.check-changeset.outputs.BLOCKING_FAILURE}}"
5959
- name: Find Comment
60-
uses: peter-evans/find-comment@v3
60+
# This commit represents v3.1.0
61+
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e
6162
id: fc
6263
with:
6364
issue-number: ${{github.event.number}}
6465
body-includes: Changeset File Check
6566
- name: Create comment (missing packages)
6667
if: ${{!steps.fc.outputs.comment-id && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
67-
uses: peter-evans/create-or-update-comment@v4
68+
# This commit represents v4.0.0
69+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
6870
with:
6971
issue-number: ${{github.event.number}}
7072
body: |
7173
### Changeset File Check :warning:
7274
${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
7375
- name: Update comment (missing packages)
7476
if: ${{steps.fc.outputs.comment-id && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
75-
uses: peter-evans/create-or-update-comment@v4
77+
# This commit represents v4.0.0
78+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
7679
with:
7780
comment-id: ${{steps.fc.outputs.comment-id}}
7881
edit-mode: replace
@@ -81,7 +84,8 @@ jobs:
8184
${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
8285
- name: Update comment (no missing packages)
8386
if: ${{steps.fc.outputs.comment-id && !steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
84-
uses: peter-evans/create-or-update-comment@v4
87+
# This commit represents v4.0.0
88+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
8589
with:
8690
comment-id: ${{steps.fc.outputs.comment-id}}
8791
edit-mode: replace

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,16 @@ jobs:
3535
echo "latest_tag=$LATEST" >> $GITHUB_ENV
3636
working-directory: packages/vertexai/test-utils/vertexai-sdk-test-data
3737
- name: Find comment from previous run if exists
38-
uses: peter-evans/find-comment@v3
38+
# This commit represents v3.1.0
39+
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e
3940
id: fc
4041
with:
4142
issue-number: ${{github.event.number}}
4243
body-includes: Vertex AI Mock Responses Check
4344
- name: Comment on PR if newer version is available
4445
if: ${{env.cloned_tag != env.latest_tag && !steps.fc.outputs.comment-id}}
45-
uses: peter-evans/create-or-update-comment@v4
46+
# This commit represents v4.0.0
47+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
4648
with:
4749
issue-number: ${{github.event.number}}
4850
body: >

.github/workflows/health-metrics-pull-request.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,12 @@ jobs:
4242
- uses: actions/setup-node@v4
4343
with:
4444
node-version: 22.10.0
45-
- uses: 'google-github-actions/auth@v0'
45+
# This commit represents v0.8.3
46+
- uses: 'google-github-actions/auth@c4799db9111fba4461e9f9da8732e5057b394f72'
4647
with:
4748
credentials_json: '${{ secrets.GCP_SA_KEY }}'
48-
- uses: google-github-actions/setup-gcloud@v2
49+
# This commit represents v2.1.4
50+
- uses: google-github-actions/setup-gcloud@77e7a554d41e2ee56fc945c52dfd3f33d12def9a
4951
- run: yarn install
5052
- run: yarn build
5153
- name: Run health-metrics/binary-size test
@@ -59,10 +61,12 @@ jobs:
5961
- uses: actions/setup-node@v4
6062
with:
6163
node-version: 22.10.0
62-
- uses: 'google-github-actions/auth@v0'
64+
# This commit represents v0.8.3
65+
- uses: 'google-github-actions/auth@c4799db9111fba4461e9f9da8732e5057b394f72'
6366
with:
6467
credentials_json: '${{ secrets.GCP_SA_KEY }}'
65-
- uses: google-github-actions/setup-gcloud@v2
68+
# This commit represents v2.1.4
69+
- uses: google-github-actions/setup-gcloud@77e7a554d41e2ee56fc945c52dfd3f33d12def9a
6670
- run: yarn install
6771
- run: yarn build
6872
- name: Run health-metrics/modular-exports-binary-size test

.github/workflows/health-metrics-release.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ jobs:
2323
name: Release Diffing
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: 'google-github-actions/auth@v0'
26+
# This commit represents v0.8.3
27+
- uses: 'google-github-actions/auth@c4799db9111fba4461e9f9da8732e5057b394f72'
2728
with:
2829
credentials_json: '${{ secrets.GCP_SA_KEY }}'
29-
- uses: google-github-actions/setup-gcloud@v2
30-
- uses: FirebaseExtended/github-actions/health-metrics/release-diffing@master
30+
# This commit represents v2.1.4
31+
- uses: google-github-actions/setup-gcloud@77e7a554d41e2ee56fc945c52dfd3f33d12def9a
32+
# This commit represents v1.4
33+
- uses: FirebaseExtended/github-actions/health-metrics/release-diffing@41c787c37157e4c5932b951e531c041efa5bb7a4
3134
with:
3235
repo: ${{ github.repository }}
3336
ref: ${{ github.ref }}

.github/workflows/merge-release-branch.yml

-50
This file was deleted.

.github/workflows/release-tweet.yml

-55
This file was deleted.

.github/workflows/test-all.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,7 @@ jobs:
178178
run: echo "FIREBASE_CI_TEST_START_TIME=$(date +%s)" >> $GITHUB_ENV
179179
- name: Run unit tests
180180
run: |
181-
xvfb-run yarn lerna run test:ci --scope '@firebase/firestore*'
182-
node scripts/print_test_logs.js
181+
yarn lerna run test:all:ci --scope '@firebase/firestore*' --stream --concurrency 1
183182
env:
184183
FIREBASE_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }}
185184
EXPERIMENTAL_MODE: true

.github/workflows/test-changed-firestore-integration.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,17 @@ jobs:
3333
with:
3434
# This makes Actions fetch all Git history so run-changed script can diff properly.
3535
fetch-depth: 0
36-
- uses: 'google-github-actions/auth@v0'
36+
# This commit represents v0.8.3
37+
- uses: 'google-github-actions/auth@c4799db9111fba4461e9f9da8732e5057b394f72'
3738
if: ${{ fromJSON(env.run_terraform_steps) }}
3839
with:
3940
credentials_json: '${{ secrets.JSSDK_ACTIONS_SA_KEY }}'
4041

4142
# create composite indexes with Terraform
4243
- name: Setup Terraform
4344
if: ${{ fromJSON(env.run_terraform_steps) }}
44-
uses: hashicorp/setup-terraform@v2
45+
# This commit represents v3.1.2
46+
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd
4547
- name: Terraform Init
4648
if: ${{ fromJSON(env.run_terraform_steps) }}
4749
run: |

common/api-review/vertexai.api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ export function getImagenModel(vertexAI: VertexAI, modelParams: ImagenModelParam
352352
// @public
353353
export function getVertexAI(app?: FirebaseApp, options?: VertexAIOptions): VertexAI;
354354

355-
// @public (undocumented)
355+
// @public @deprecated (undocumented)
356356
export interface GroundingAttribution {
357357
// (undocumented)
358358
confidenceScore?: number;
@@ -366,7 +366,7 @@ export interface GroundingAttribution {
366366

367367
// @public
368368
export interface GroundingMetadata {
369-
// (undocumented)
369+
// @deprecated (undocumented)
370370
groundingAttributions: GroundingAttribution[];
371371
// (undocumented)
372372
retrievalQueries?: string[];

docs-devsite/vertexai.groundingattribution.md

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ https://github.com/firebase/firebase-js-sdk
1010
{% endcomment %}
1111

1212
# GroundingAttribution interface
13+
> Warning: This API is now obsolete.
14+
>
15+
>
1316
1417
<b>Signature:</b>
1518

docs-devsite/vertexai.groundingmetadata.md

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ export interface GroundingMetadata
2828

2929
## GroundingMetadata.groundingAttributions
3030

31+
> Warning: This API is now obsolete.
32+
>
33+
>
34+
3135
<b>Signature:</b>
3236

3337
```typescript

integration/compat-interop/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"test:debug": "karma start --browsers Chrome --auto-watch"
99
},
1010
"dependencies": {
11-
"@firebase/app": "0.11.2",
12-
"@firebase/app-compat": "0.2.51",
11+
"@firebase/app": "0.11.3",
12+
"@firebase/app-compat": "0.2.52",
1313
"@firebase/analytics": "0.10.12",
1414
"@firebase/analytics-compat": "0.2.18",
1515
"@firebase/auth": "1.9.1",
@@ -18,8 +18,8 @@
1818
"@firebase/functions-compat": "0.3.20",
1919
"@firebase/messaging": "0.12.17",
2020
"@firebase/messaging-compat": "0.2.17",
21-
"@firebase/performance": "0.7.1",
22-
"@firebase/performance-compat": "0.2.14",
21+
"@firebase/performance": "0.7.2",
22+
"@firebase/performance-compat": "0.2.15",
2323
"@firebase/remote-config": "0.6.0",
2424
"@firebase/remote-config-compat": "0.2.13"
2525
},

integration/firestore/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"test:memory:debug": "yarn build:memory; karma start --auto-watch --browsers Chrome"
1515
},
1616
"dependencies": {
17-
"@firebase/app": "0.11.2",
18-
"@firebase/firestore": "4.7.9"
17+
"@firebase/app": "0.11.3",
18+
"@firebase/firestore": "4.7.10"
1919
},
2020
"devDependencies": {
2121
"@types/mocha": "9.1.1",

integration/messaging/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test:manual": "mocha --exit"
1010
},
1111
"devDependencies": {
12-
"firebase": "11.4.0",
12+
"firebase": "11.5.0",
1313
"chai": "4.4.1",
1414
"chromedriver": "119.0.1",
1515
"express": "4.19.2",

packages/analytics-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@firebase/app-compat": "0.x"
2323
},
2424
"devDependencies": {
25-
"@firebase/app-compat": "0.2.51",
25+
"@firebase/app-compat": "0.2.52",
2626
"rollup": "2.79.2",
2727
"@rollup/plugin-json": "6.1.0",
2828
"rollup-plugin-typescript2": "0.36.0",

packages/analytics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
},
4848
"license": "Apache-2.0",
4949
"devDependencies": {
50-
"@firebase/app": "0.11.2",
50+
"@firebase/app": "0.11.3",
5151
"rollup": "2.79.2",
5252
"@rollup/plugin-commonjs": "21.1.0",
5353
"@rollup/plugin-json": "6.1.0",

0 commit comments

Comments
 (0)