Skip to content

fix: Workaround rollup terser-plugin's inconsistent property naming when using multiple entry points#9622

Merged
MarkDuckworth merged 3 commits intomainfrom
markduckworth/fix-rollup-terser-w-multiple-entrypoints
Mar 6, 2026
Merged

fix: Workaround rollup terser-plugin's inconsistent property naming when using multiple entry points#9622
MarkDuckworth merged 3 commits intomainfrom
markduckworth/fix-rollup-terser-w-multiple-entrypoints

Conversation

@MarkDuckworth
Copy link
Copy Markdown
Contributor

@MarkDuckworth MarkDuckworth commented Mar 4, 2026

This is a workaround for issue rollup/plugins#1970.

In release 12.8.0 Firestore added a second entrypoint for Pipelines. The rollup configuration changed to support creating shared chunks for these multiple entry points. It was later discovered that the @rollup/plugin-terser plugin was not sharing a name cache between these generated chunks, causing different chunks that are part of the same build (index.js, pipelines.js, common.js) to use different property names. The effect of this issue was limited because of the modular nature of the SDKs. Function exports and class exports were not affected by this issue because of how rollup aliases these exports. Only class properties and methods were subject to name mismatches between chunks. Within the Firestore API surface, we've only observed that this issue affected some SSR APIs.

@MarkDuckworth MarkDuckworth requested review from a team as code owners March 4, 2026 20:48
@changeset-bot
Copy link
Copy Markdown

changeset-bot bot commented Mar 4, 2026

🦋 Changeset detected

Latest commit: dc520d0

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 3 packages
Name Type
@firebase/firestore Patch
firebase Patch
@firebase/firestore-compat Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request addresses an inconsistency in property naming that arose when using @rollup/plugin-terser with multiple entry points in the Firestore SDK. The solution involves restructuring the Rollup build process to perform a two-stage minification, ensuring that property names are consistently mangled across all output bundles. This change enhances the reliability of the build output, particularly for components like SSR APIs that were previously affected.

Highlights

  • Workaround for Rollup Terser Plugin Issue: Implemented a workaround for a known issue in @rollup/plugin-terser (plugin-terser does not share nameCache between minify invocations when chunking across multiple entrypoint and common files rollup/plugins#1970) where property names were inconsistently mangled across multiple entry points due to a shared name cache problem.
  • Two-Pass Build Process: Introduced a two-pass build strategy for browser bundles. The first pass generates a nameCache mapping, and the second pass uses this cache to ensure consistent property mangling across all generated chunks.
  • Name Cache Management: Added a new cleanupNameCache utility function to manage the nameCache object, specifically deleting the 'vars' property to prevent name collisions when sharing the cache between different build types (e.g., ESM and CJS).
  • Terser Configuration Updates: Modified the manglePrivatePropertiesOptions in rollup.shared.js to include maxWorkers: 1 to prevent race conditions during name cache writing and initialized an empty nameCache object for shared use.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • packages/firestore/rollup.config.js
    • Added util.cleanupNameCache to the browserPlugins array.
    • Introduced a new intermediate browser build configuration as the 'first invocation' to generate a name cache.
    • Added comments explaining the purpose of the 'second invocation' intermediate browser build.
    • Modified chunkFileNames from common-[hash].js to common.js in the existing intermediate browser build.
  • packages/firestore/rollup.config.lite.js
    • Added util.cleanupNameCache to the browserPlugins array.
    • Introduced a new intermediate browser build configuration as the 'first invocation' for the lite version.
    • Added comments explaining the purpose of the 'second invocation' intermediate browser build for the lite version.
  • packages/firestore/rollup.shared.js
    • Updated manglePrivatePropertiesOptions to include maxWorkers: 1 and an empty nameCache object.
    • Removed the exports.es2020Plugins and exports.es2020PluginsCompat functions.
    • Added and exported a new cleanupNameCache function to manage the Terser name cache.
Activity
  • No specific activity (comments, reviews, or progress updates) has been recorded for this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces a workaround for an issue in @rollup/plugin-terser that causes inconsistent property name mangling when using multiple entry points. The implemented solution of a two-pass build, where the first pass populates a nameCache for the second pass to use, is a clever approach. The changes are well-documented with comments explaining the workaround and TODOs for eventual removal. My review includes one suggestion to improve consistency in the build configuration for the 'lite' version.

@MarkDuckworth MarkDuckworth requested a review from a team as a code owner March 4, 2026 20:52
Removed the `-[hash]` from the intermediate builds on the lite pipelines, both for consistency and to limit the amount of extraneous files created.
@MarkDuckworth MarkDuckworth merged commit a383770 into main Mar 6, 2026
68 of 70 checks passed
@MarkDuckworth MarkDuckworth deleted the markduckworth/fix-rollup-terser-w-multiple-entrypoints branch March 6, 2026 17:52
@google-oss-bot google-oss-bot mentioned this pull request Mar 17, 2026
rebehe added a commit that referenced this pull request Mar 23, 2026
* build(deps): bump underscore in /packages/auth/demo/functions (#9617)

Bumps [underscore](https://github.com/jashkenas/underscore) from 1.13.6 to 1.13.8.
- [Commits](jashkenas/underscore@1.13.6...1.13.8)

---
updated-dependencies:
- dependency-name: underscore
  dependency-version: 1.13.8
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump fast-xml-parser (#9616)

Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.3.5 to 4.5.4.
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.5...v4.5.4)

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 4.5.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump fast-xml-parser in /packages/auth/demo/functions (#9615)

Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.3.5 to 4.5.4.
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.5...v4.5.4)

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 4.5.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump minimatch in /packages/auth-compat/demo (#9601)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.5.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.5)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 3.1.5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump minimatch in /packages/rules-unit-testing/functions (#9595)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.1.2 to 3.1.4.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.1.2...v3.1.4)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 3.1.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update peter-evans/create-or-update-comment digest to e2426b4 (#9579)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump minimatch in /packages/auth/demo/functions (#9592)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 5.1.6 to 5.1.7.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v5.1.6...v5.1.7)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 5.1.7
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump axios from 1.7.9 to 1.13.5 (#9574)

Bumps [axios](https://github.com/axios/axios) from 1.7.9 to 1.13.5.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.9...v1.13.5)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.13.5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump ajv in /packages/auth-compat/demo (#9585)

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.6 to 6.14.0.
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v6.12.6...v6.14.0)

---
updated-dependencies:
- dependency-name: ajv
  dependency-version: 6.14.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump fast-xml-parser (#9607)

Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.3.2 to 4.5.4.
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.2...v4.5.4)

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 4.5.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump basic-ftp from 5.0.5 to 5.2.0 (#9598)

Bumps [basic-ftp](https://github.com/patrickjuchli/basic-ftp) from 5.0.5 to 5.2.0.
- [Release notes](https://github.com/patrickjuchli/basic-ftp/releases)
- [Changelog](https://github.com/patrickjuchli/basic-ftp/blob/master/CHANGELOG.md)
- [Commits](patrickjuchli/basic-ftp@v5.0.5...v5.2.0)

---
updated-dependencies:
- dependency-name: basic-ftp
  dependency-version: 5.2.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps-dev): bump rollup in /packages/auth-compat/demo (#9599)

Bumps [rollup](https://github.com/rollup/rollup) from 2.79.1 to 2.80.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/v2.80.0/CHANGELOG.md)
- [Commits](rollup/rollup@v2.79.1...v2.80.0)

---
updated-dependencies:
- dependency-name: rollup
  dependency-version: 2.80.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: Add a dependabot.yml to better configure its behavior (#9620)

* firestore: improve documentation about CRUD promises and when they resolve (#8887)

* fix: Workaround rollup terser-plugin's inconsistent property naming when using multiple entry points (#9622)

* fix: Workaround rollup terser-plugin's inconsistent property naming when using multiple entrypoints

* Create spotty-hornets-thank.md

* Update rollup.config.lite.js

Removed the `-[hash]` from the intermediate builds on the lite pipelines, both for consistency and to limit the amount of extraneous files created.

* Bump firebase package dependency versions

* OTEL Tracing Initial Commit

* Tracing

* Debugging

* Cleanup

* Local debug cleanup

* Linter suggested fixes

* Yarn format fix

* More docgen and format updates

* Fixes from yarn test

* Yarn lint fixes

* More yarn docgen:all fixes

* Modify otlp exporter

* Lint fixes

* Removing unused dynamic header for now

* Renaming

* Removing node tracing for now

* yarn format

* Move tracing provider away from node

* Updating otel dependencies

* format

* Updating otel dependencies

* Remove fetch and user interaction libaries

* Removing node tracing

* format

* Crashlytics tracing onboarding improvements (#9587)

* modify tracing branch with different crashoption names

* Updates so that folks can dev locally

* Remove package bump

* replace loggingUrl with endpointUrl

* yarn format

* Modify which tracing instrumentation we use

* Attempt to remove dependency error triggered by document load library

---------

Co-authored-by: Chris Chestnut <[email protected]>

* Crash tracing rebase (#9600)

* Refactor Github Action per b/485167538 (#9555)

Co-authored-by: Ben Knutson <[email protected]>

* build(deps): bump lodash in /packages/auth-compat/demo/functions (#9482)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/auth-compat/demo (#9464)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/rules-unit-testing/functions (#9463)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/auth/demo/functions (#9466)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency webpack-dev-server to v5.2.1 [security] (#9078)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update google-github-actions/auth digest to fc21748 (#8879)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps-dev): bump lodash from 4.17.21 to 4.17.23 (#9465)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Remove health metrics workflows (#9571)

* feat(ai): Automatic function calling (#9489)

* Updating otel dependencies

* format

* Updating otel dependencies

* Remove fetch and user interaction libaries

* Removing node tracing

* format

* Update angular example to modern standards (#9583)

* chore(deps): update dependency @rollup/plugin-strip to v3 (#8745)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @rollup/plugin-virtual to v3 (#8771)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Use environment for wdr tokens (#9578)

* use environment for wdr tokens

* missed a file

* fix(deps): update dependency @rushstack/node-core-library to v5 (#8816)

* fix(deps): update dependency @rushstack/node-core-library to v5

* Fix method name

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <[email protected]>

* Update logs endpoint w/ location (fixed to `global` for now)

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Google Admin <[email protected]>
Co-authored-by: Ben Knutson <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <[email protected]>
Co-authored-by: Anit Das <[email protected]>
Co-authored-by: Anthony Barone <[email protected]>
Co-authored-by: Morgan Chen <[email protected]>

* add code owners for crashlytics (#9707)

* Revert "add code owners for crashlytics (#9707)" (#9711)

This reverts commit e8ca524.

* Merge latest changes from main into crashlytics (#9741)

* Rebase crashlytics on top of main

* Update crashlytics package.json's firebase dependency versions

* Merge crashlytics into crashlytics-tracing (#9699)

* Catch up PR (#9713)

* adding xhr instrumentation (#9719)

Co-authored-by: Chris Chestnut <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <[email protected]>
Co-authored-by: Denver Coneybeare <[email protected]>
Co-authored-by: Mark Duckworth <[email protected]>
Co-authored-by: abrook <[email protected]>
Co-authored-by: Anit Das <[email protected]>
Co-authored-by: MaesterChestnut <[email protected]>
Co-authored-by: Chris Chestnut <[email protected]>
Co-authored-by: Google Admin <[email protected]>
Co-authored-by: Ben Knutson <[email protected]>
Co-authored-by: Anthony Barone <[email protected]>
Co-authored-by: Morgan Chen <[email protected]>
MaesterChestnut added a commit that referenced this pull request Mar 25, 2026
* build(deps): bump underscore in /packages/auth/demo/functions (#9617)

Bumps [underscore](https://github.com/jashkenas/underscore) from 1.13.6 to 1.13.8.
- [Commits](jashkenas/underscore@1.13.6...1.13.8)

---
updated-dependencies:
- dependency-name: underscore
  dependency-version: 1.13.8
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump fast-xml-parser (#9616)

Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.3.5 to 4.5.4.
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.5...v4.5.4)

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 4.5.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump fast-xml-parser in /packages/auth/demo/functions (#9615)

Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.3.5 to 4.5.4.
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.5...v4.5.4)

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 4.5.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump minimatch in /packages/auth-compat/demo (#9601)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.5.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.5)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 3.1.5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump minimatch in /packages/rules-unit-testing/functions (#9595)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.1.2 to 3.1.4.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.1.2...v3.1.4)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 3.1.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update peter-evans/create-or-update-comment digest to e2426b4 (#9579)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump minimatch in /packages/auth/demo/functions (#9592)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 5.1.6 to 5.1.7.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v5.1.6...v5.1.7)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 5.1.7
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump axios from 1.7.9 to 1.13.5 (#9574)

Bumps [axios](https://github.com/axios/axios) from 1.7.9 to 1.13.5.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.9...v1.13.5)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.13.5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump ajv in /packages/auth-compat/demo (#9585)

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.6 to 6.14.0.
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v6.12.6...v6.14.0)

---
updated-dependencies:
- dependency-name: ajv
  dependency-version: 6.14.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump fast-xml-parser (#9607)

Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.3.2 to 4.5.4.
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.2...v4.5.4)

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 4.5.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump basic-ftp from 5.0.5 to 5.2.0 (#9598)

Bumps [basic-ftp](https://github.com/patrickjuchli/basic-ftp) from 5.0.5 to 5.2.0.
- [Release notes](https://github.com/patrickjuchli/basic-ftp/releases)
- [Changelog](https://github.com/patrickjuchli/basic-ftp/blob/master/CHANGELOG.md)
- [Commits](patrickjuchli/basic-ftp@v5.0.5...v5.2.0)

---
updated-dependencies:
- dependency-name: basic-ftp
  dependency-version: 5.2.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps-dev): bump rollup in /packages/auth-compat/demo (#9599)

Bumps [rollup](https://github.com/rollup/rollup) from 2.79.1 to 2.80.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/v2.80.0/CHANGELOG.md)
- [Commits](rollup/rollup@v2.79.1...v2.80.0)

---
updated-dependencies:
- dependency-name: rollup
  dependency-version: 2.80.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: Add a dependabot.yml to better configure its behavior (#9620)

* firestore: improve documentation about CRUD promises and when they resolve (#8887)

* fix: Workaround rollup terser-plugin's inconsistent property naming when using multiple entry points (#9622)

* fix: Workaround rollup terser-plugin's inconsistent property naming when using multiple entrypoints

* Create spotty-hornets-thank.md

* Update rollup.config.lite.js

Removed the `-[hash]` from the intermediate builds on the lite pipelines, both for consistency and to limit the amount of extraneous files created.

* Bump firebase package dependency versions

* OTEL Tracing Initial Commit

* Tracing

* Debugging

* Cleanup

* Local debug cleanup

* Linter suggested fixes

* Yarn format fix

* More docgen and format updates

* Fixes from yarn test

* Yarn lint fixes

* More yarn docgen:all fixes

* Modify otlp exporter

* Lint fixes

* Removing unused dynamic header for now

* Renaming

* Removing node tracing for now

* yarn format

* Move tracing provider away from node

* Updating otel dependencies

* format

* Updating otel dependencies

* Remove fetch and user interaction libaries

* Removing node tracing

* format

* Crashlytics tracing onboarding improvements (#9587)

* modify tracing branch with different crashoption names

* Updates so that folks can dev locally

* Remove package bump

* replace loggingUrl with endpointUrl

* yarn format

* Modify which tracing instrumentation we use

* Attempt to remove dependency error triggered by document load library

---------

Co-authored-by: Chris Chestnut <[email protected]>

* Crash tracing rebase (#9600)

* Refactor Github Action per b/485167538 (#9555)

Co-authored-by: Ben Knutson <[email protected]>

* build(deps): bump lodash in /packages/auth-compat/demo/functions (#9482)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/auth-compat/demo (#9464)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/rules-unit-testing/functions (#9463)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/auth/demo/functions (#9466)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency webpack-dev-server to v5.2.1 [security] (#9078)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update google-github-actions/auth digest to fc21748 (#8879)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps-dev): bump lodash from 4.17.21 to 4.17.23 (#9465)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Remove health metrics workflows (#9571)

* feat(ai): Automatic function calling (#9489)

* Updating otel dependencies

* format

* Updating otel dependencies

* Remove fetch and user interaction libaries

* Removing node tracing

* format

* Update angular example to modern standards (#9583)

* chore(deps): update dependency @rollup/plugin-strip to v3 (#8745)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @rollup/plugin-virtual to v3 (#8771)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Use environment for wdr tokens (#9578)

* use environment for wdr tokens

* missed a file

* fix(deps): update dependency @rushstack/node-core-library to v5 (#8816)

* fix(deps): update dependency @rushstack/node-core-library to v5

* Fix method name

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <[email protected]>

* Update logs endpoint w/ location (fixed to `global` for now)

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Google Admin <[email protected]>
Co-authored-by: Ben Knutson <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <[email protected]>
Co-authored-by: Anit Das <[email protected]>
Co-authored-by: Anthony Barone <[email protected]>
Co-authored-by: Morgan Chen <[email protected]>

* add code owners for crashlytics (#9707)

* Revert "add code owners for crashlytics (#9707)" (#9711)

This reverts commit e8ca524.

* Merge latest changes from main into crashlytics (#9741)

* Rebase crashlytics on top of main

* Update crashlytics package.json's firebase dependency versions

* Merge crashlytics into crashlytics-tracing (#9699)

* Catch up PR (#9713)

* adding xhr instrumentation (#9719)

Co-authored-by: Chris Chestnut <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <[email protected]>
Co-authored-by: Denver Coneybeare <[email protected]>
Co-authored-by: Mark Duckworth <[email protected]>
Co-authored-by: abrook <[email protected]>
Co-authored-by: Anit Das <[email protected]>
Co-authored-by: MaesterChestnut <[email protected]>
Co-authored-by: Chris Chestnut <[email protected]>
Co-authored-by: Google Admin <[email protected]>
Co-authored-by: Ben Knutson <[email protected]>
Co-authored-by: Anthony Barone <[email protected]>
Co-authored-by: Morgan Chen <[email protected]>
rebehe added a commit that referenced this pull request Mar 26, 2026
* build(deps): bump underscore in /packages/auth/demo/functions (#9617)

Bumps [underscore](https://github.com/jashkenas/underscore) from 1.13.6 to 1.13.8.
- [Commits](jashkenas/underscore@1.13.6...1.13.8)

---
updated-dependencies:
- dependency-name: underscore
  dependency-version: 1.13.8
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump fast-xml-parser (#9616)

Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.3.5 to 4.5.4.
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.5...v4.5.4)

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 4.5.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump fast-xml-parser in /packages/auth/demo/functions (#9615)

Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.3.5 to 4.5.4.
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.5...v4.5.4)

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 4.5.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump minimatch in /packages/auth-compat/demo (#9601)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.5.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.5)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 3.1.5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump minimatch in /packages/rules-unit-testing/functions (#9595)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.1.2 to 3.1.4.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.1.2...v3.1.4)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 3.1.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update peter-evans/create-or-update-comment digest to e2426b4 (#9579)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump minimatch in /packages/auth/demo/functions (#9592)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 5.1.6 to 5.1.7.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v5.1.6...v5.1.7)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 5.1.7
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump axios from 1.7.9 to 1.13.5 (#9574)

Bumps [axios](https://github.com/axios/axios) from 1.7.9 to 1.13.5.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.9...v1.13.5)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.13.5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump ajv in /packages/auth-compat/demo (#9585)

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.6 to 6.14.0.
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v6.12.6...v6.14.0)

---
updated-dependencies:
- dependency-name: ajv
  dependency-version: 6.14.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump fast-xml-parser (#9607)

Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.3.2 to 4.5.4.
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.2...v4.5.4)

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 4.5.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump basic-ftp from 5.0.5 to 5.2.0 (#9598)

Bumps [basic-ftp](https://github.com/patrickjuchli/basic-ftp) from 5.0.5 to 5.2.0.
- [Release notes](https://github.com/patrickjuchli/basic-ftp/releases)
- [Changelog](https://github.com/patrickjuchli/basic-ftp/blob/master/CHANGELOG.md)
- [Commits](patrickjuchli/basic-ftp@v5.0.5...v5.2.0)

---
updated-dependencies:
- dependency-name: basic-ftp
  dependency-version: 5.2.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps-dev): bump rollup in /packages/auth-compat/demo (#9599)

Bumps [rollup](https://github.com/rollup/rollup) from 2.79.1 to 2.80.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/v2.80.0/CHANGELOG.md)
- [Commits](rollup/rollup@v2.79.1...v2.80.0)

---
updated-dependencies:
- dependency-name: rollup
  dependency-version: 2.80.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: Add a dependabot.yml to better configure its behavior (#9620)

* firestore: improve documentation about CRUD promises and when they resolve (#8887)

* fix: Workaround rollup terser-plugin's inconsistent property naming when using multiple entry points (#9622)

* fix: Workaround rollup terser-plugin's inconsistent property naming when using multiple entrypoints

* Create spotty-hornets-thank.md

* Update rollup.config.lite.js

Removed the `-[hash]` from the intermediate builds on the lite pipelines, both for consistency and to limit the amount of extraneous files created.

* Bump firebase package dependency versions

* OTEL Tracing Initial Commit

* Tracing

* Debugging

* Cleanup

* Local debug cleanup

* Linter suggested fixes

* Yarn format fix

* More docgen and format updates

* Fixes from yarn test

* Yarn lint fixes

* More yarn docgen:all fixes

* Modify otlp exporter

* Lint fixes

* Removing unused dynamic header for now

* Renaming

* Removing node tracing for now

* yarn format

* Move tracing provider away from node

* Updating otel dependencies

* format

* Updating otel dependencies

* Remove fetch and user interaction libaries

* Removing node tracing

* format

* Crashlytics tracing onboarding improvements (#9587)

* modify tracing branch with different crashoption names

* Updates so that folks can dev locally

* Remove package bump

* replace loggingUrl with endpointUrl

* yarn format

* Modify which tracing instrumentation we use

* Attempt to remove dependency error triggered by document load library

---------

Co-authored-by: Chris Chestnut <[email protected]>

* Crash tracing rebase (#9600)

* Refactor Github Action per b/485167538 (#9555)

Co-authored-by: Ben Knutson <[email protected]>

* build(deps): bump lodash in /packages/auth-compat/demo/functions (#9482)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/auth-compat/demo (#9464)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/rules-unit-testing/functions (#9463)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump lodash in /packages/auth/demo/functions (#9466)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency webpack-dev-server to v5.2.1 [security] (#9078)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update google-github-actions/auth digest to fc21748 (#8879)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps-dev): bump lodash from 4.17.21 to 4.17.23 (#9465)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.21 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Remove health metrics workflows (#9571)

* feat(ai): Automatic function calling (#9489)

* Updating otel dependencies

* format

* Updating otel dependencies

* Remove fetch and user interaction libaries

* Removing node tracing

* format

* Update angular example to modern standards (#9583)

* chore(deps): update dependency @rollup/plugin-strip to v3 (#8745)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @rollup/plugin-virtual to v3 (#8771)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Use environment for wdr tokens (#9578)

* use environment for wdr tokens

* missed a file

* fix(deps): update dependency @rushstack/node-core-library to v5 (#8816)

* fix(deps): update dependency @rushstack/node-core-library to v5

* Fix method name

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <[email protected]>

* Update logs endpoint w/ location (fixed to `global` for now)

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Google Admin <[email protected]>
Co-authored-by: Ben Knutson <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <[email protected]>
Co-authored-by: Anit Das <[email protected]>
Co-authored-by: Anthony Barone <[email protected]>
Co-authored-by: Morgan Chen <[email protected]>

* add code owners for crashlytics (#9707)

* Revert "add code owners for crashlytics (#9707)" (#9711)

This reverts commit e8ca524.

* Merge latest changes from main into crashlytics (#9741)

* Rebase crashlytics on top of main

* Update crashlytics package.json's firebase dependency versions

* Merge crashlytics into crashlytics-tracing (#9699)

* Catch up PR (#9713)

* adding xhr instrumentation (#9719)

Co-authored-by: Chris Chestnut <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christina Holland <[email protected]>
Co-authored-by: Denver Coneybeare <[email protected]>
Co-authored-by: Mark Duckworth <[email protected]>
Co-authored-by: abrook <[email protected]>
Co-authored-by: Anit Das <[email protected]>
Co-authored-by: MaesterChestnut <[email protected]>
Co-authored-by: Chris Chestnut <[email protected]>
Co-authored-by: Google Admin <[email protected]>
Co-authored-by: Ben Knutson <[email protected]>
Co-authored-by: Anthony Barone <[email protected]>
Co-authored-by: Morgan Chen <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants