Skip to content

adding xhr instrumentation#9719

Merged
MaesterChestnut merged 1 commit intocrashlytics-tracingfrom
bundleInvestigation
Mar 13, 2026
Merged

adding xhr instrumentation#9719
MaesterChestnut merged 1 commit intocrashlytics-tracingfrom
bundleInvestigation

Conversation

@MaesterChestnut
Copy link
Copy Markdown

No description provided.

@MaesterChestnut MaesterChestnut requested a review from rebehe March 13, 2026 14:49
@MaesterChestnut MaesterChestnut requested a review from a team as a code owner March 13, 2026 14:49
@changeset-bot
Copy link
Copy Markdown

changeset-bot bot commented Mar 13, 2026

⚠️ No Changeset found

Latest commit: ab560cb

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a 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 integrates OpenTelemetry's XMLHttpRequest (XHR) instrumentation into the application. This enhancement provides automatic tracing for XHR network requests, offering more granular visibility into application performance and behavior, especially for legacy AJAX interactions. The change ensures that all network communications, whether via Fetch API or XHR, are now covered by the tracing mechanism.

Highlights

  • XHR Instrumentation Added: The @opentelemetry/instrumentation-xml-http-request package was added to enable automatic tracing of XMLHttpRequest (XHR) network requests.
  • Tracing Provider Configuration: The new XHR instrumentation was registered within the tracing provider, alongside existing Fetch instrumentation, to ensure comprehensive network request tracing.
  • Dependency Updates: Various OpenTelemetry related dependencies were updated to newer versions, and import-in-the-middle was added, reflecting the new instrumentation requirements.

🧠 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/crashlytics/package.json
    • Added @opentelemetry/instrumentation-xml-http-request to the project dependencies.
  • packages/crashlytics/src/tracing/tracing-provider.ts
    • Imported XMLHttpRequestInstrumentation from the new package.
    • Registered XMLHttpRequestInstrumentation to enable XHR tracing.
  • yarn.lock
    • Updated @opentelemetry/api-logs to version 0.213.0.
    • Updated @opentelemetry/core to version 2.6.0.
    • Removed @opentelemetry/exporter-trace-otlp-proto version 0.203.0 entry.
    • Added @opentelemetry/instrumentation-xml-http-request version 0.213.0.
    • Updated @opentelemetry/instrumentation to version 0.213.0.
    • Removed @opentelemetry/otlp-exporter-base version 0.203.0 entry.
    • Removed @opentelemetry/otlp-transformer version 0.203.0 entry.
    • Updated @opentelemetry/resources to version 2.6.0.
    • Removed @opentelemetry/sdk-logs version 0.203.0 entry.
    • Removed @opentelemetry/sdk-metrics version 2.0.1 entry.
    • Updated @opentelemetry/sdk-trace-base to version 2.6.0.
    • Added @opentelemetry/sdk-trace-web version 2.6.0.
    • Added import-in-the-middle version 3.0.0.
    • Removed protobufjs version 7.5.4 entry.
Activity
  • No human activity (comments, reviews) has been recorded on 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.

@MaesterChestnut MaesterChestnut merged commit a4c8756 into crashlytics-tracing Mar 13, 2026
14 of 19 checks passed
@MaesterChestnut MaesterChestnut deleted the bundleInvestigation branch March 13, 2026 14:51
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 adds automatic instrumentation for XMLHttpRequest calls by including the @opentelemetry/instrumentation-xml-http-request package. The changes correctly import and register the new instrumentation. However, I've noted a potential issue with dependency versioning. The newly added OpenTelemetry package has a different version from the other OpenTelemetry packages in the project. I've left a comment recommending to align these versions to maintain consistency and avoid potential issues like increased bundle size or version conflicts.

"@opentelemetry/instrumentation": "0.212.0",
"@opentelemetry/instrumentation-fetch": "0.212.0",
"@opentelemetry/instrumentation-user-interaction": "0.56.0",
"@opentelemetry/instrumentation-xml-http-request": "0.213.0",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The version of this new dependency (0.213.0) is different from other @opentelemetry packages in this file (which are at 0.212.0). This can lead to multiple versions of transitive dependencies being included in the build, increasing bundle size and potentially causing subtle issues if different parts of the code use different OpenTelemetry API versions.

It's recommended to align all @opentelemetry packages to a single, consistent version. Please consider updating the other @opentelemetry dependencies in this file to match this version, or find a version for instrumentation-xml-http-request that is consistent with the others.

rebehe pushed a commit that referenced this pull request Mar 23, 2026
rebehe pushed a commit that referenced this pull request Mar 23, 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
Co-authored-by: Chris Chestnut <[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 pushed a commit that referenced this pull request Mar 26, 2026
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.

2 participants