Skip to content

Bump the all-dependencies group across 1 directory with 22 updates#1471

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/src/client/all-dependencies-58a1b25b1a
Open

Bump the all-dependencies group across 1 directory with 22 updates#1471
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/src/client/all-dependencies-58a1b25b1a

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 3, 2026

Bumps the all-dependencies group with 21 updates in the /src/client directory:

Package From To
@microsoft/applicationinsights-web 3.3.10 3.3.11
@opentelemetry/api-logs 0.206.0 0.212.0
@opentelemetry/exporter-logs-otlp-http 0.206.0 0.212.0
@opentelemetry/exporter-metrics-otlp-http 0.206.0 0.212.0
@opentelemetry/instrumentation 0.206.0 0.212.0
@opentelemetry/sdk-logs 0.206.0 0.212.0
@vercel/otel 2.0.1 2.1.1
dayjs 1.11.18 1.11.19
react-hook-form 7.63.0 7.71.2
@azure/cosmos 4.5.1 4.9.1
@playwright/test 1.55.1 1.58.2
@testing-library/jest-dom 6.8.0 6.9.1
@testing-library/react 16.3.0 16.3.2
@types/node 22.19.1 22.19.13
eslint-config-next 14.2.33 14.2.35
jest-fixed-jsdom 0.0.10 0.0.11
postcss 8.5.6 8.5.8
prettier 3.6.2 3.8.1
rimraf 6.1.2 6.1.3
sass 1.93.2 1.97.3
typescript 5.9.2 5.9.3

Updates @microsoft/applicationinsights-web from 3.3.10 to 3.3.11

Release notes

Sourced from @​microsoft/applicationinsights-web's releases.

3.3.11

Changelog

  • #2642 Separate BeaconSendFailure and BeaconSendFailure from SizeLimitExceeded
  • #2675 Fix offline channel recovery for Offline -> Online (#2674)
  • #2666 Fix unload() to return promise when called without parameters
  • #2667 Add a check to prevent non-string URLs from being passed to fieldRedaction method

Infrastructure changes

  • #2684 Fix minor issue with E2E test
  • #2681 Add redact URL configuration in readme
  • #2676 Fix Flakey Ajax test which has race condition
  • #2670 Fix static web CDN test assertion (Fixes failing CI tests)

What's Changed

New Contributors

Full Changelog: microsoft/ApplicationInsights-JS@3.3.10...3.3.11

Changelog

Sourced from @​microsoft/applicationinsights-web's changelog.

3.3.11 (January 12th, 2026)

Changelog

  • #2642 Separate BeaconSendFailure and BeaconSendFailure from SizeLimitExceeded
  • #2675 Fix offline channel recovery for Offline -> Online (#2674)
  • #2666 Fix unload() to return promise when called without parameters
  • #2667 Add a check to prevent non-string URLs from being passed to fieldRedaction method

Infrastructure changes

  • #2684 Fix minor issue with E2E test
  • #2681 Add redact URL configuration in readme
  • #2676 Fix Flakey Ajax test which has race condition
  • #2670 Fix static web CDN test assertion (Fixes failing CI tests)

Web snippet 1.2.3 (November 10, 2025)

  • #2659 [Web-Snippet] [BUG] @​microsoft/applicationinsights-web-snippet Fix Snippet Loader Error
Commits
  • 39ed6cd [Release] Increase version to 3.3.11 (#2687)
  • c46c683 Fix minor issue with E2E test (#2684)
  • c75a5a2 Add redact URL configuration in readme (#2681)
  • 7d7e906 Separate BeaconSendFailure and BeaconSendFailure from SizeLimitExceeded (#2642)
  • 6ef6d33 Fix Flakey Ajax test which has race condition (#2676)
  • 9201907 Fix unload() to return promise when called without parameters (#2666)
  • 76d20b9 Fix offline channel recovery for Offline -> Online (#2674) (#2675)
  • 223d8c2 Add a check to prevent non-string URLs from being passed to fieldRedaction me...
  • a9c0b89 Fix static web CDN test assertion (Fixes failing CI tests) (#2670)
  • bc59111 @​microsoft/applicationinsights-web-snippet 1.2.3 release (#2662)
  • Additional commits viewable in compare view

Updates @opentelemetry/api-logs from 0.206.0 to 0.212.0

Release notes

Sourced from @​opentelemetry/api-logs's releases.

experimental/v0.212.0

0.212.0

💥 Breaking Changes

  • feat(sdk-logs)!: move environment variable configuration to @opentelemetry/sdk-node #6325 @​pichlermarc
    • (user-facing): environment variable configuration is no longer applied automatically when instantiating SDK components (LoggerProvider, BatchLogRecordProcessor) directly from @opentelemetry/sdk-logs. Please migrate to using NodeSDK from @opentelemetry/sdk-node to get automatic environment variable configuration.

🚀 Features

  • feat(configuration): add Prometheus exporter support #6400 @​MikeGoldsmith
  • feat(sampler-composite): add ComposableAnnotatingSampler and ComposableRuleBasedSampler #6305 @​trentm
  • feat(configuration): parse config for rc 3 #6304 @​maryliag
  • feat(instrumentation): use the internals: true option with import-in-the-middle hook, allowing instrumentations to hook internal files in ES modules #6344 @​trentm

🐛 Bug Fixes

  • fix(configuration): remove default propagator initialization #6399 @​MikeGoldsmith
  • fix(instrumentation-fetch): preserve Response.url, type, and redirected properties #6243 @​AnubhavPurohit691
    • The fetch instrumentation now preserves the read-only url, type, and redirected properties from the original Response object when wrapping it with a Proxy. This fixes issues where code relying on these properties (e.g., CORS type detection) would fail with instrumented fetch.
  • fix(exporter-prometheus): add missing @opentelemetry/semantic-conventions dependency #6330 @​omizha
  • fix(otlp-transformer): correctly handle Uint8Array attribute values when serializing to JSON #6348 @​pichlermarc
  • fix(otlp-exporter-base): fix unwanted instrumentation of the fetch exports when context is not propagated #6353 @​david-luna

🏠 Internal

experimental/v0.211.0

0.211.0

💥 Breaking Changes

  • fix(otlp-exporter-base)!: remove xhr transport #6317 @​cjihrig
    • (user-facing) The deprecated XHR-based transport has been removed and replaced with fetch(). This change affects users who relied on XmlHttpRequest instead of fetch() for sending headers with OTLP exports. To maintain compatibility on browsers without a fetch() implementation, include a fetch() polyfill.
  • chore(api-logs)!: remove ProxyLoggerProvider export #6322 @​david-luna

🚀 Features

  • feat(sdk-logs): export event name from ConsoleLogRecordExporter #6310 @​aicest

🐛 Bug Fixes

... (truncated)

Commits
  • ad92be4 chore: prepare next release (#6402)
  • 3e68499 feat(configuration): add prometheus exporter support (#6400)
  • b743747 fix(configuration): remove default propagator initialization (#6399)
  • 48e2fb4 chore(deps): update fossas/fossa-action action to v1.8.0 (#6405)
  • 90d1afa ci: allow different release bumps for groups (#6397)
  • c1d0543 fix(deps): update dependency axios to v1.13.5 [security] (#6398)
  • a78d112 fix(deps): update dependency @​grpc/grpc-js to v1.8.22 [security] (#6366)
  • fcafab5 chore: fix lint (#6388)
  • a0d5c14 fix(otlp-exporter-base): avoid use of a wrapped fetch (#6353)
  • 819ebb2 chore(deps): update dependency webpack-merge to v6 (#6364)
  • Additional commits viewable in compare view

Updates @opentelemetry/exporter-logs-otlp-http from 0.206.0 to 0.212.0

Release notes

Sourced from @​opentelemetry/exporter-logs-otlp-http's releases.

experimental/v0.212.0

0.212.0

💥 Breaking Changes

  • feat(sdk-logs)!: move environment variable configuration to @opentelemetry/sdk-node #6325 @​pichlermarc
    • (user-facing): environment variable configuration is no longer applied automatically when instantiating SDK components (LoggerProvider, BatchLogRecordProcessor) directly from @opentelemetry/sdk-logs. Please migrate to using NodeSDK from @opentelemetry/sdk-node to get automatic environment variable configuration.

🚀 Features

  • feat(configuration): add Prometheus exporter support #6400 @​MikeGoldsmith
  • feat(sampler-composite): add ComposableAnnotatingSampler and ComposableRuleBasedSampler #6305 @​trentm
  • feat(configuration): parse config for rc 3 #6304 @​maryliag
  • feat(instrumentation): use the internals: true option with import-in-the-middle hook, allowing instrumentations to hook internal files in ES modules #6344 @​trentm

🐛 Bug Fixes

  • fix(configuration): remove default propagator initialization #6399 @​MikeGoldsmith
  • fix(instrumentation-fetch): preserve Response.url, type, and redirected properties #6243 @​AnubhavPurohit691
    • The fetch instrumentation now preserves the read-only url, type, and redirected properties from the original Response object when wrapping it with a Proxy. This fixes issues where code relying on these properties (e.g., CORS type detection) would fail with instrumented fetch.
  • fix(exporter-prometheus): add missing @opentelemetry/semantic-conventions dependency #6330 @​omizha
  • fix(otlp-transformer): correctly handle Uint8Array attribute values when serializing to JSON #6348 @​pichlermarc
  • fix(otlp-exporter-base): fix unwanted instrumentation of the fetch exports when context is not propagated #6353 @​david-luna

🏠 Internal

experimental/v0.211.0

0.211.0

💥 Breaking Changes

  • fix(otlp-exporter-base)!: remove xhr transport #6317 @​cjihrig
    • (user-facing) The deprecated XHR-based transport has been removed and replaced with fetch(). This change affects users who relied on XmlHttpRequest instead of fetch() for sending headers with OTLP exports. To maintain compatibility on browsers without a fetch() implementation, include a fetch() polyfill.
  • chore(api-logs)!: remove ProxyLoggerProvider export #6322 @​david-luna

🚀 Features

  • feat(sdk-logs): export event name from ConsoleLogRecordExporter #6310 @​aicest

🐛 Bug Fixes

... (truncated)

Commits
  • ad92be4 chore: prepare next release (#6402)
  • 3e68499 feat(configuration): add prometheus exporter support (#6400)
  • b743747 fix(configuration): remove default propagator initialization (#6399)
  • 48e2fb4 chore(deps): update fossas/fossa-action action to v1.8.0 (#6405)
  • 90d1afa ci: allow different release bumps for groups (#6397)
  • c1d0543 fix(deps): update dependency axios to v1.13.5 [security] (#6398)
  • a78d112 fix(deps): update dependency @​grpc/grpc-js to v1.8.22 [security] (#6366)
  • fcafab5 chore: fix lint (#6388)
  • a0d5c14 fix(otlp-exporter-base): avoid use of a wrapped fetch (#6353)
  • 819ebb2 chore(deps): update dependency webpack-merge to v6 (#6364)
  • Additional commits viewable in compare view

Updates @opentelemetry/exporter-metrics-otlp-http from 0.206.0 to 0.212.0

Release notes

Sourced from @​opentelemetry/exporter-metrics-otlp-http's releases.

experimental/v0.212.0

0.212.0

💥 Breaking Changes

  • feat(sdk-logs)!: move environment variable configuration to @opentelemetry/sdk-node #6325 @​pichlermarc
    • (user-facing): environment variable configuration is no longer applied automatically when instantiating SDK components (LoggerProvider, BatchLogRecordProcessor) directly from @opentelemetry/sdk-logs. Please migrate to using NodeSDK from @opentelemetry/sdk-node to get automatic environment variable configuration.

🚀 Features

  • feat(configuration): add Prometheus exporter support #6400 @​MikeGoldsmith
  • feat(sampler-composite): add ComposableAnnotatingSampler and ComposableRuleBasedSampler #6305 @​trentm
  • feat(configuration): parse config for rc 3 #6304 @​maryliag
  • feat(instrumentation): use the internals: true option with import-in-the-middle hook, allowing instrumentations to hook internal files in ES modules #6344 @​trentm

🐛 Bug Fixes

  • fix(configuration): remove default propagator initialization #6399 @​MikeGoldsmith
  • fix(instrumentation-fetch): preserve Response.url, type, and redirected properties #6243 @​AnubhavPurohit691
    • The fetch instrumentation now preserves the read-only url, type, and redirected properties from the original Response object when wrapping it with a Proxy. This fixes issues where code relying on these properties (e.g., CORS type detection) would fail with instrumented fetch.
  • fix(exporter-prometheus): add missing @opentelemetry/semantic-conventions dependency #6330 @​omizha
  • fix(otlp-transformer): correctly handle Uint8Array attribute values when serializing to JSON #6348 @​pichlermarc
  • fix(otlp-exporter-base): fix unwanted instrumentation of the fetch exports when context is not propagated #6353 @​david-luna

🏠 Internal

experimental/v0.211.0

0.211.0

💥 Breaking Changes

  • fix(otlp-exporter-base)!: remove xhr transport #6317 @​cjihrig
    • (user-facing) The deprecated XHR-based transport has been removed and replaced with fetch(). This change affects users who relied on XmlHttpRequest instead of fetch() for sending headers with OTLP exports. To maintain compatibility on browsers without a fetch() implementation, include a fetch() polyfill.
  • chore(api-logs)!: remove ProxyLoggerProvider export #6322 @​david-luna

🚀 Features

  • feat(sdk-logs): export event name from ConsoleLogRecordExporter #6310 @​aicest

🐛 Bug Fixes

... (truncated)

Commits
  • ad92be4 chore: prepare next release (#6402)
  • 3e68499 feat(configuration): add prometheus exporter support (#6400)
  • b743747 fix(configuration): remove default propagator initialization (#6399)
  • 48e2fb4 chore(deps): update fossas/fossa-action action to v1.8.0 (#6405)
  • 90d1afa ci: allow different release bumps for groups (#6397)
  • c1d0543 fix(deps): update dependency axios to v1.13.5 [security] (#6398)
  • a78d112 fix(deps): update dependency @​grpc/grpc-js to v1.8.22 [security] (#6366)
  • fcafab5 chore: fix lint (#6388)
  • a0d5c14 fix(otlp-exporter-base): avoid use of a wrapped fetch (#6353)
  • 819ebb2 chore(deps): update dependency webpack-merge to v6 (#6364)
  • Additional commits viewable in compare view

Updates @opentelemetry/instrumentation from 0.206.0 to 0.212.0

Release notes

Sourced from @​opentelemetry/instrumentation's releases.

experimental/v0.212.0

0.212.0

💥 Breaking Changes

  • feat(sdk-logs)!: move environment variable configuration to @opentelemetry/sdk-node #6325 @​pichlermarc
    • (user-facing): environment variable configuration is no longer applied automatically when instantiating SDK components (LoggerProvider, BatchLogRecordProcessor) directly from @opentelemetry/sdk-logs. Please migrate to using NodeSDK from @opentelemetry/sdk-node to get automatic environment variable configuration.

🚀 Features

  • feat(configuration): add Prometheus exporter support #6400 @​MikeGoldsmith
  • feat(sampler-composite): add ComposableAnnotatingSampler and ComposableRuleBasedSampler #6305 @​trentm
  • feat(configuration): parse config for rc 3 #6304 @​maryliag
  • feat(instrumentation): use the internals: true option with import-in-the-middle hook, allowing instrumentations to hook internal files in ES modules #6344 @​trentm

🐛 Bug Fixes

  • fix(configuration): remove default propagator initialization #6399 @​MikeGoldsmith
  • fix(instrumentation-fetch): preserve Response.url, type, and redirected properties #6243 @​AnubhavPurohit691
    • The fetch instrumentation now preserves the read-only url, type, and redirected properties from the original Response object when wrapping it with a Proxy. This fixes issues where code relying on these properties (e.g., CORS type detection) would fail with instrumented fetch.
  • fix(exporter-prometheus): add missing @opentelemetry/semantic-conventions dependency #6330 @​omizha
  • fix(otlp-transformer): correctly handle Uint8Array attribute values when serializing to JSON #6348 @​pichlermarc
  • fix(otlp-exporter-base): fix unwanted instrumentation of the fetch exports when context is not propagated #6353 @​david-luna

🏠 Internal

experimental/v0.211.0

0.211.0

💥 Breaking Changes

  • fix(otlp-exporter-base)!: remove xhr transport #6317 @​cjihrig
    • (user-facing) The deprecated XHR-based transport has been removed and replaced with fetch(). This change affects users who relied on XmlHttpRequest instead of fetch() for sending headers with OTLP exports. To maintain compatibility on browsers without a fetch() implementation, include a fetch() polyfill.
  • chore(api-logs)!: remove ProxyLoggerProvider export #6322 @​david-luna

🚀 Features

  • feat(sdk-logs): export event name from ConsoleLogRecordExporter #6310 @​aicest

🐛 Bug Fixes

... (truncated)

Commits
  • ad92be4 chore: prepare next release (#6402)
  • 3e68499 feat(configuration): add prometheus exporter support (#6400)
  • b743747 fix(configuration): remove default propagator initialization (#6399)
  • 48e2fb4 chore(deps): update fossas/fossa-action action to v1.8.0 (#6405)
  • 90d1afa ci: allow different release bumps for groups (#6397)
  • c1d0543 fix(deps): update dependency axios to v1.13.5 [security] (#6398)
  • a78d112 fix(deps): update dependency @​grpc/grpc-js to v1.8.22 [security] (#6366)
  • fcafab5 chore: fix lint (#6388)
  • a0d5c14 fix(otlp-exporter-base): avoid use of a wrapped fetch (#6353)
  • 819ebb2 chore(deps): update dependency webpack-merge to v6 (#6364)
  • Additional commits viewable in compare view

Updates @opentelemetry/sdk-logs from 0.206.0 to 0.212.0

Release notes

Sourced from @​opentelemetry/sdk-logs's releases.

experimental/v0.212.0

0.212.0

💥 Breaking Changes

  • feat(sdk-logs)!: move environment variable configuration to @opentelemetry/sdk-node #6325 @​pichlermarc
    • (user-facing): environment variable configuration is no longer applied automatically when instantiating SDK components (LoggerProvider, BatchLogRecordProcessor) directly from @opentelemetry/sdk-logs. Please migrate to using NodeSDK from @opentelemetry/sdk-node to get automatic environment variable configuration.

🚀 Features

  • feat(configuration): add Prometheus exporter support #6400 @​MikeGoldsmith
  • feat(sampler-composite): add ComposableAnnotatingSampler and ComposableRuleBasedSampler #6305 @​trentm
  • feat(configuration): parse config for rc 3 #6304 @​maryliag
  • feat(instrumentation): use the internals: true option with import-in-the-middle hook, allowing instrumentations to hook internal files in ES modules #6344 @​trentm

🐛 Bug Fixes

  • fix(configuration): remove default propagator initialization #6399 @​MikeGoldsmith
  • fix(instrumentation-fetch): preserve Response.url, type, and redirected properties #6243 @​AnubhavPurohit691
    • The fetch instrumentation now preserves the read-only url, type, and redirected properties from the original Response object when wrapping it with a Proxy. This fixes issues where code relying on these properties (e.g., CORS type detection) would fail with instrumented fetch.
  • fix(exporter-prometheus): add missing @opentelemetry/semantic-conventions dependency #6330 @​omizha
  • fix(otlp-transformer): correctly handle Uint8Array attribute values when serializing to JSON #6348 @​pichlermarc
  • fix(otlp-exporter-base): fix unwanted instrumentation of the fetch exports when context is not propagated #6353 @​david-luna

🏠 Internal

experimental/v0.211.0

0.211.0

💥 Breaking Changes

  • fix(otlp-exporter-base)!: remove xhr transport #6317 @​cjihrig
    • (user-facing) The deprecated XHR-based transport has been removed and replaced with fetch(). This change affects users who relied on XmlHttpRequest instead of fetch() for sending headers with OTLP exports. To maintain compatibility on browsers without a fetch() implementation, include a fetch() polyfill.
  • chore(api-logs)!: remove ProxyLoggerProvider export #6322 @​david-luna

🚀 Features

  • feat(sdk-logs): export event name from ConsoleLogRecordExporter #6310 @​aicest

🐛 Bug Fixes

... (truncated)

Commits
  • ad92be4 chore: prepare next release (#6402)
  • 3e68499 feat(configuration): add prometheus exporter support (#6400)
  • b743747 fix(configuration): remove default propagator initialization (#6399)
  • 48e2fb4 chore(deps): update fossas/fossa-action action to v1.8.0 (#6405)
  • 90d1afa ci: allow different release bumps for groups (#6397)
  • c1d0543 fix(deps): update dependency axios to v1.13.5 [security] (#6398)
  • a78d112 fix(deps): update dependency @​grpc/grpc-js to v1.8.22 [security] (#6366)
  • fcafab5 chore: fix lint (#6388)
  • a0d5c14 fix(otlp-exporter-base): avoid use of a wrapped fetch (#6353)
  • 819ebb2 chore(deps): update dependency webpack-merge to v6 (#6364)
  • Additional commits viewable in compare view

Updates @opentelemetry/sdk-metrics from 2.1.0 to 2.5.1

Release notes

Sourced from @​opentelemetry/sdk-metrics's releases.

v2.5.1

2.5.1

🐛 Bug Fixes

  • fix(opentelemetry-sdk-node): the custom value from env variable for service.instance.id should take priority over random uuid as backup #6345 @​maryliag

🏠 Internal

v2.5.0

2.5.0

🐛 Bug Fixes

🏠 Internal

v2.4.0

2.4.0

🐛 Bug Fixes

  • fix(sdk-metrics): improve PeriodicExportingMetricReader() constructor input validation #6286 @​cjihrig
  • fix(core): Avoid using DOM types for otperformance export #6278 @​samchungy

🏠 Internal

  • chore(browser): fix CODEOWNERS paths for browser-related packages
  • refactor(sdk-metrics): remove Promise.allSettled() ponyfill #6277 @​cjihrig

v2.3.0

2.3.0

🚀 Features

... (truncated)

Changelog

Sourced from @​opentelemetry/sdk-metrics's changelog.

2.5.1

🐛 Bug Fixes

  • fix(opentelemetry-sdk-node): the custom value from env variable for service.instance.id should take priority over random uuid as backup #6345 @​maryliag

🏠 Internal

2.5.0

🐛 Bug Fixes

🏠 Internal

  • chore(context-async-hooks): Deprecate AsyncHooksContextManager #6298 @​trentm
  • chore: fix CODEOWNERS rule ordering #6297 @​overbalance
  • fix(github): fix CODEOWNERS browser package paths #6303 @​overbalance
  • fix(build): update @​types/no...

    Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 3, 2026
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/client/all-dependencies-58a1b25b1a branch 3 times, most recently from 909692a to e33562e Compare March 6, 2026 04:46
Bumps the all-dependencies group with 21 updates in the /src/client directory:

| Package | From | To |
| --- | --- | --- |
| [@microsoft/applicationinsights-web](https://github.com/microsoft/ApplicationInsights-JS) | `3.3.10` | `3.3.11` |
| [@opentelemetry/api-logs](https://github.com/open-telemetry/opentelemetry-js) | `0.206.0` | `0.212.0` |
| [@opentelemetry/exporter-logs-otlp-http](https://github.com/open-telemetry/opentelemetry-js) | `0.206.0` | `0.212.0` |
| [@opentelemetry/exporter-metrics-otlp-http](https://github.com/open-telemetry/opentelemetry-js) | `0.206.0` | `0.212.0` |
| [@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js) | `0.206.0` | `0.212.0` |
| [@opentelemetry/sdk-logs](https://github.com/open-telemetry/opentelemetry-js) | `0.206.0` | `0.212.0` |
| [@vercel/otel](https://github.com/vercel/otel) | `2.0.1` | `2.1.1` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.18` | `1.11.19` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.63.0` | `7.71.2` |
| [@azure/cosmos](https://github.com/Azure/azure-sdk-for-js) | `4.5.1` | `4.9.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.8.0` | `6.9.1` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.3.0` | `16.3.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.19.1` | `22.19.13` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.2.33` | `14.2.35` |
| [jest-fixed-jsdom](https://github.com/mswjs/jest-fixed-jsdom) | `0.0.10` | `0.0.11` |
| [postcss](https://github.com/postcss/postcss) | `8.5.6` | `8.5.8` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.8.1` |
| [rimraf](https://github.com/isaacs/rimraf) | `6.1.2` | `6.1.3` |
| [sass](https://github.com/sass/dart-sass) | `1.93.2` | `1.97.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |



Updates `@microsoft/applicationinsights-web` from 3.3.10 to 3.3.11
- [Release notes](https://github.com/microsoft/ApplicationInsights-JS/releases)
- [Changelog](https://github.com/microsoft/ApplicationInsights-JS/blob/main/RELEASES.md)
- [Commits](microsoft/ApplicationInsights-JS@3.3.10...3.3.11)

Updates `@opentelemetry/api-logs` from 0.206.0 to 0.212.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.206.0...experimental/v0.212.0)

Updates `@opentelemetry/exporter-logs-otlp-http` from 0.206.0 to 0.212.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.206.0...experimental/v0.212.0)

Updates `@opentelemetry/exporter-metrics-otlp-http` from 0.206.0 to 0.212.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.206.0...experimental/v0.212.0)

Updates `@opentelemetry/instrumentation` from 0.206.0 to 0.212.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.206.0...experimental/v0.212.0)

Updates `@opentelemetry/sdk-logs` from 0.206.0 to 0.212.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.206.0...experimental/v0.212.0)

Updates `@opentelemetry/sdk-metrics` from 2.1.0 to 2.5.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v2.1.0...v2.5.1)

Updates `@vercel/otel` from 2.0.1 to 2.1.1
- [Release notes](https://github.com/vercel/otel/releases)
- [Commits](https://github.com/vercel/otel/compare/@vercel/otel@2.0.1...@vercel/otel@2.1.1)

Updates `dayjs` from 1.11.18 to 1.11.19
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.18...v1.11.19)

Updates `react-hook-form` from 7.63.0 to 7.71.2
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.63.0...v7.71.2)

Updates `@azure/cosmos` from 4.5.1 to 4.9.1
- [Release notes](https://github.com/Azure/azure-sdk-for-js/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md)
- [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/cosmos_4.5.1...@azure/cosmos_4.9.1)

Updates `@playwright/test` from 1.55.1 to 1.58.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.55.1...v1.58.2)

Updates `@testing-library/jest-dom` from 6.8.0 to 6.9.1
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.8.0...v6.9.1)

Updates `@testing-library/react` from 16.3.0 to 16.3.2
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.3.0...v16.3.2)

Updates `@types/node` from 22.19.1 to 22.19.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-config-next` from 14.2.33 to 14.2.35
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.35/packages/eslint-config-next)

Updates `jest-fixed-jsdom` from 0.0.10 to 0.0.11
- [Release notes](https://github.com/mswjs/jest-fixed-jsdom/releases)
- [Commits](mswjs/jest-fixed-jsdom@v0.0.10...v0.0.11)

Updates `postcss` from 8.5.6 to 8.5.8
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.6...8.5.8)

Updates `prettier` from 3.6.2 to 3.8.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.6.2...3.8.1)

Updates `rimraf` from 6.1.2 to 6.1.3
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v6.1.2...v6.1.3)

Updates `sass` from 1.93.2 to 1.97.3
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.93.2...1.97.3)

Updates `typescript` from 5.9.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.2...v5.9.3)

---
updated-dependencies:
- dependency-name: "@microsoft/applicationinsights-web"
  dependency-version: 3.3.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/api-logs"
  dependency-version: 0.212.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/exporter-logs-otlp-http"
  dependency-version: 0.212.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/exporter-metrics-otlp-http"
  dependency-version: 0.212.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/instrumentation"
  dependency-version: 0.212.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/sdk-logs"
  dependency-version: 0.212.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@opentelemetry/sdk-metrics"
  dependency-version: 2.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@vercel/otel"
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: dayjs
  dependency-version: 1.11.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: react-hook-form
  dependency-version: 7.71.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@azure/cosmos"
  dependency-version: 4.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.58.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@testing-library/jest-dom"
  dependency-version: 6.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-version: 22.19.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: eslint-config-next
  dependency-version: 14.2.35
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: jest-fixed-jsdom
  dependency-version: 0.0.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: postcss
  dependency-version: 8.5.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: rimraf
  dependency-version: 6.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: sass
  dependency-version: 1.97.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/client/all-dependencies-58a1b25b1a branch from e33562e to 01df93b Compare March 9, 2026 04:47
@sonarqubecloud
Copy link

sonarqubecloud bot commented Mar 9, 2026

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants