Skip to content

Commit b73a0cc

Browse files
Merge master into release
2 parents d92d01e + f018062 commit b73a0cc

File tree

106 files changed

+1538
-1191
lines changed

Some content is hidden

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

106 files changed

+1538
-1191
lines changed

.changeset/chilly-moons-play.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/util': patch
3+
---
4+
5+
fix: browser detection (detect either window or web worker)

.changeset/clever-dryers-double.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/app': patch
3+
'firebase': patch
4+
---
5+
6+
Guard the use of `FinalizationRegistry` in `FirebaseServerApp` initialization based on the availability of `FinalizationRegistry` in the runtime.

.changeset/fifty-mayflies-hug.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/app': patch
3+
---
4+
5+
fix: server app should initialize in web workers

.changeset/flat-scissors-suffer.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/firestore': patch
3+
'firebase': patch
4+
---
5+
6+
Fix persistence multi-tab snapshot listener metadata sync issue.

.changeset/light-cheetahs-arrive.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/vertexai-preview': patch
3+
---
4+
5+
Add a publicly exported `VertexAIError` class.

.changeset/orange-rings-own.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@firebase/webchannel-wrapper": patch
3+
---
4+
5+
fix: Fix a typo in the webchannel-wrapper's package.json that affected ems5 exports.

.changeset/silver-crews-build.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'firebase': patch
3+
'@firebase/app': patch
4+
---
5+
6+
The `FirebaseServerAppSettings.name` field inherited from `FirebaseAppSettings` is now omitted
7+
instead of overloading the value as `undefined`. This fixes a TypeScript compilation error. For more
8+
information, see [GitHub Issue #8336](https://github.com/firebase/firebase-js-sdk/issues/8336).

.github/workflows/canary-deploy.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,14 @@ jobs:
6262
NPM_TOKEN_INSTALLATIONS_TYPES: ${{secrets.NPM_TOKEN_INSTALLATIONS_TYPES}}
6363
NPM_TOKEN_LOGGER: ${{secrets.NPM_TOKEN_LOGGER}}
6464
NPM_TOKEN_MESSAGING: ${{secrets.NPM_TOKEN_MESSAGING}}
65-
NPM_TOKEN_MESSAGING_TYPES: ${{secrets.NPM_TOKEN_MESSAGING_TYPES}}
6665
NPM_TOKEN_PERFORMANCE: ${{secrets.NPM_TOKEN_PERFORMANCE}}
6766
NPM_TOKEN_PERFORMANCE_TYPES: ${{secrets.NPM_TOKEN_PERFORMANCE_TYPES}}
68-
NPM_TOKEN_POLYFILL: ${{secrets.NPM_TOKEN_POLYFILL}}
6967
NPM_TOKEN_REMOTE_CONFIG: ${{secrets.NPM_TOKEN_REMOTE_CONFIG}}
7068
NPM_TOKEN_REMOTE_CONFIG_TYPES: ${{secrets.NPM_TOKEN_REMOTE_CONFIG_TYPES}}
7169
NPM_TOKEN_RULES_UNIT_TESTING: ${{secrets.NPM_TOKEN_RULES_UNIT_TESTING}}
7270
NPM_TOKEN_STORAGE: ${{secrets.NPM_TOKEN_STORAGE}}
7371
NPM_TOKEN_STORAGE_TYPES: ${{secrets.NPM_TOKEN_STORAGE_TYPES}}
74-
NPM_TOKEN_TESTING: ${{secrets.NPM_TOKEN_TESTING}}
7572
NPM_TOKEN_UTIL: ${{secrets.NPM_TOKEN_UTIL}}
76-
NPM_TOKEN_VERTEXAI: ${{secrets.NPM_TOKEN_VERTEXAI}}
7773
NPM_TOKEN_VERTEXAI_PREVIEW: ${{secrets.NPM_TOKEN_VERTEXAI_PREVIEW}}
7874
NPM_TOKEN_WEBCHANNEL_WRAPPER: ${{secrets.NPM_TOKEN_WEBCHANNEL_WRAPPER}}
7975
NPM_TOKEN_FIREBASE: ${{secrets.NPM_TOKEN_FIREBASE}}

.github/workflows/check-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: Doc Change Check (Run "yarn docgen devsite" if this fails)
15+
name: Doc Change Check (Run "yarn docgen:all" if this fails)
1616

1717
on: pull_request
1818

@@ -33,10 +33,10 @@ jobs:
3333
node-version: 20.x
3434
- name: Yarn install
3535
run: yarn
36-
- name: Run doc generation (devsite docs)
37-
run: yarn docgen devsite
36+
- name: Run doc generation
37+
run: yarn docgen:all
3838
- name: Check for changes in docs-devsite dir (fail if so)
3939
run: git diff --exit-code docs-devsite
4040
- name: Reference documentation needs to be updated. See message below.
4141
if: ${{ failure() }}
42-
run: echo "Changes in this PR affect the reference docs. Run \`yarn docgen devsite\` locally to regenerate docs and add them to this PR."
42+
run: echo "Changes in this PR affect the reference docs. Run \`yarn docgen:all\` locally to regenerate docs and add them to this PR."

.github/workflows/prerelease-manual-deploy.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,18 +65,14 @@ jobs:
6565
NPM_TOKEN_INSTALLATIONS_TYPES: ${{secrets.NPM_TOKEN_INSTALLATIONS_TYPES}}
6666
NPM_TOKEN_LOGGER: ${{secrets.NPM_TOKEN_LOGGER}}
6767
NPM_TOKEN_MESSAGING: ${{secrets.NPM_TOKEN_MESSAGING}}
68-
NPM_TOKEN_MESSAGING_TYPES: ${{secrets.NPM_TOKEN_MESSAGING_TYPES}}
6968
NPM_TOKEN_PERFORMANCE: ${{secrets.NPM_TOKEN_PERFORMANCE}}
7069
NPM_TOKEN_PERFORMANCE_TYPES: ${{secrets.NPM_TOKEN_PERFORMANCE_TYPES}}
71-
NPM_TOKEN_POLYFILL: ${{secrets.NPM_TOKEN_POLYFILL}}
7270
NPM_TOKEN_REMOTE_CONFIG: ${{secrets.NPM_TOKEN_REMOTE_CONFIG}}
7371
NPM_TOKEN_REMOTE_CONFIG_TYPES: ${{secrets.NPM_TOKEN_REMOTE_CONFIG_TYPES}}
7472
NPM_TOKEN_RULES_UNIT_TESTING: ${{secrets.NPM_TOKEN_RULES_UNIT_TESTING}}
7573
NPM_TOKEN_STORAGE: ${{secrets.NPM_TOKEN_STORAGE}}
7674
NPM_TOKEN_STORAGE_TYPES: ${{secrets.NPM_TOKEN_STORAGE_TYPES}}
77-
NPM_TOKEN_TESTING: ${{secrets.NPM_TOKEN_TESTING}}
7875
NPM_TOKEN_UTIL: ${{secrets.NPM_TOKEN_UTIL}}
79-
NPM_TOKEN_VERTEXAI: ${{secrets.NPM_TOKEN_VERTEXAI}}
8076
NPM_TOKEN_VERTEXAI_PREVIEW: ${{secrets.NPM_TOKEN_VERTEXAI_PREVIEW}}
8177
NPM_TOKEN_WEBCHANNEL_WRAPPER: ${{secrets.NPM_TOKEN_WEBCHANNEL_WRAPPER}}
8278
NPM_TOKEN_FIREBASE: ${{secrets.NPM_TOKEN_FIREBASE}}

0 commit comments

Comments
 (0)