Skip to content

chore(deps): bump the production-dependencies group with 19 updates#22

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-a594af7b69
Open

chore(deps): bump the production-dependencies group with 19 updates#22
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-a594af7b69

Conversation

@dependabot
Copy link
Contributor

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

Bumps the production-dependencies group with 19 updates:

Package From To
jose 6.1.3 6.2.1
fumadocs-core 16.6.8 16.6.13
fumadocs-openapi 10.3.14 10.3.17
fumadocs-ui 16.6.8 16.6.13
@sentry/react-native 8.2.0 8.3.0
@tanstack/react-store 0.9.1 0.9.2
@mui/material 7.3.8 7.3.9
@sentry/browser 10.41.0 10.42.0
@sentry/node 10.41.0 10.42.0
pg 8.19.0 8.20.0
@opentelemetry/api-logs 0.212.0 0.213.0
@opentelemetry/exporter-metrics-otlp-http 0.212.0 0.213.0
@opentelemetry/exporter-logs-otlp-http 0.212.0 0.213.0
@opentelemetry/exporter-trace-otlp-http 0.212.0 0.213.0
@opentelemetry/resources 2.5.1 2.6.0
@opentelemetry/sdk-logs 0.212.0 0.213.0
@opentelemetry/sdk-metrics 2.5.1 2.6.0
@opentelemetry/sdk-node 0.212.0 0.213.0
@opentelemetry/sdk-trace-base 2.5.1 2.6.0

Updates jose from 6.1.3 to 6.2.1

Release notes

Sourced from jose's releases.

v6.2.1

Refactor

  • reorganize internals, less files, smaller footprint (d4231f9)

v6.2.0

Features

  • re-introduce JWE "zip" (Compression Algorithm) Header Parameter support (b13b446)

Documentation

  • clarify return of general jws and jwe (56682b4)
Changelog

Sourced from jose's changelog.

6.2.1 (2026-03-09)

Refactor

  • reorganize internals, less files, smaller footprint (d4231f9)

6.2.0 (2026-03-05)

Features

  • re-introduce JWE "zip" (Compression Algorithm) Header Parameter support (b13b446)

Documentation

  • clarify return of general jws and jwe (56682b4)
Commits
  • d491aa9 chore(release): 6.2.1
  • d4231f9 refactor: reorganize internals, less files, smaller footprint
  • 7b22ba8 test: use playwright instead of testcafe
  • 00965b4 chore: bump packages
  • b8f9f94 chore: cleanup after release
  • 970673e chore(release): 6.2.0
  • b13b446 feat: re-introduce JWE "zip" (Compression Algorithm) Header Parameter support
  • c2d1dd1 test: update deno expectations
  • edcaec9 chore(deps): bump actions/upload-artifact in the actions group
  • 037d212 chore(deps): bump minimatch
  • Additional commits viewable in compare view

Updates fumadocs-core from 16.6.8 to 16.6.13

Release notes

Sourced from fumadocs-core's releases.

fumadocs-core@16.6.13

No release notes provided.

fumadocs-core@16.6.12

Patch Changes

  • ddb0f81: require explicit import for new search clients

fumadocs-core@16.6.11

Patch Changes

  • d35f30c: deprecate highlight on content highlighter
  • ae3e742: Support flexsearch server & client
  • 269dfb3: Redesign search client adapter interface
Commits

Updates fumadocs-openapi from 10.3.14 to 10.3.17

Release notes

Sourced from fumadocs-openapi's releases.

fumadocs-openapi@10.3.17

Patch Changes

  • e2e0782: Fix broken dereference-json-schema import in built output caused by unbundle + inlineOnly producing hardcoded .pnpm/ paths
  • Updated dependencies [d35f30c]
  • Updated dependencies [ae3e742]
  • Updated dependencies [269dfb3]
    • fumadocs-core@16.6.11
    • fumadocs-ui@16.6.11

fumadocs-openapi@10.3.15

Patch Changes

  • 440a7ef: Fix intersection resolution
  • e68700e: fix parameter encoding
Commits

Updates fumadocs-ui from 16.6.8 to 16.6.13

Release notes

Sourced from fumadocs-ui's releases.

fumadocs-ui@16.6.13

Patch Changes

  • 2702b28: Bundle page actions into UI
    • fumadocs-core@16.6.13

fumadocs-ui@16.6.12

Patch Changes

  • Updated dependencies [ddb0f81]
    • fumadocs-core@16.6.12

fumadocs-ui@16.6.11

Patch Changes

  • Updated dependencies [d35f30c]
  • Updated dependencies [ae3e742]
  • Updated dependencies [269dfb3]
    • fumadocs-core@16.6.11
Commits

Updates @sentry/react-native from 8.2.0 to 8.3.0

Release notes

Sourced from @​sentry/react-native's releases.

8.3.0

Features

  • Add onNativeLog callback to intercept and forward native SDK logs to JavaScript console (#5622)
    • The callback receives native log events with level, component, and message properties
    • Only works when debug: true is enabled in Sentry.init
    • Use consoleSandbox inside the callback to prevent feedback loops with Sentry's console integration
      import * as Sentry from '@sentry/react-native';
      Sentry.init({
      debug: true,
      onNativeLog: ({ level, component, message }) => {
      // Use consoleSandbox to avoid feedback loops
      Sentry.consoleSandbox(() => {
      console.log(
      [Sentry Native] [${level.toUpperCase()}] [${component}] ${message}
      );
      });
      }
      });

  • Add expo constants on event context (#5748)
  • Capture dynamic route params as span attributes for Expo Router navigations (#5750)
  • EAS Build Hooks (#5666)
    • Capture EAS build events in Sentry. Add the following to your package.json:
      {
        "scripts": {
          "eas-build-on-complete": "sentry-eas-build-on-complete"
        }
      }
      Set SENTRY_DSN in your EAS secrets, and optionally SENTRY_EAS_BUILD_CAPTURE_SUCCESS=true to also capture successful builds.

Fixes

  • App start data not attached to sampled transactions when preceded by unsampled transactions (#5756)
  • Resolve relative SOURCEMAP_FILE paths against the project root in the Xcode build script (#5730)
  • Fixes the issue with unit mismatch in adjustTransactionDuration (#5740)
  • Handle inactive state for spans (#5742)

Dependencies

... (truncated)

Changelog

Sourced from @​sentry/react-native's changelog.

8.3.0

Features

  • Add onNativeLog callback to intercept and forward native SDK logs to JavaScript console (#5622)
    • The callback receives native log events with level, component, and message properties
    • Only works when debug: true is enabled in Sentry.init
    • Use consoleSandbox inside the callback to prevent feedback loops with Sentry's console integration
      import * as Sentry from '@sentry/react-native';
      Sentry.init({
      debug: true,
      onNativeLog: ({ level, component, message }) => {
      // Use consoleSandbox to avoid feedback loops
      Sentry.consoleSandbox(() => {
      console.log(
      [Sentry Native] [${level.toUpperCase()}] [${component}] ${message}
      );
      });
      }
      });

  • Add expo constants on event context (#5748)
  • Capture dynamic route params as span attributes for Expo Router navigations (#5750)
  • EAS Build Hooks (#5666)
    • Capture EAS build events in Sentry. Add the following to your package.json:
      {
        "scripts": {
          "eas-build-on-complete": "sentry-eas-build-on-complete"
        }
      }
      Set SENTRY_DSN in your EAS secrets, and optionally SENTRY_EAS_BUILD_CAPTURE_SUCCESS=true to also capture successful builds.

Fixes

  • App start data not attached to sampled transactions when preceded by unsampled transactions (#5756)
  • Resolve relative SOURCEMAP_FILE paths against the project root in the Xcode build script (#5730)
  • Fixes the issue with unit mismatch in adjustTransactionDuration (#5740)
  • Handle inactive state for spans (#5742)

Dependencies

... (truncated)

Commits
  • 83aadc1 release: 8.3.0
  • 4cebd92 fix(core): App start data lost when first transaction is unsampled (#5756)
  • 29950e3 docs: Migrate AGENTS.md to nested structure with agents.toml (#5758)
  • 98e9b2d Add 'agents.toml' to skip list in CI workflow (#5774)
  • 752e659 Two small fixes to EAS build hooks: (#5773)
  • 9ee3737 EAS Build Hooks (#5666)
  • 3541ced chore(ios): Bump iOS binary size limit from 1450 to 1470 KiB (#5766)
  • 2beedd1 chore: update scripts/update-cli.sh to 3.3.0 (#5762)
  • f60c6ff chore: update scripts/update-cocoa.sh to 9.6.0 (#5759)
  • 878d0cc [iOS + Android] Add the ability to intercept errors from native side and forw...
  • Additional commits viewable in compare view

Updates @tanstack/react-store from 0.9.1 to 0.9.2

Release notes

Sourced from @​tanstack/react-store's releases.

@​tanstack/react-store@​0.9.2

Patch Changes

  • Updated dependencies [84dc3eb]:
    • @​tanstack/store@​0.9.2
Changelog

Sourced from @​tanstack/react-store's changelog.

0.9.2

Patch Changes

  • Updated dependencies [84dc3eb]:
    • @​tanstack/store@​0.9.2
Commits

Updates @mui/material from 7.3.8 to 7.3.9

Release notes

Sourced from @​mui/material's releases.

v7.3.9

A big thanks to the 15 contributors who made this release possible.

@mui/material@7.3.9

Docs

Core

All contributors of this release in alphabetical order: @​alelthomas, @​arthur-plazanet, @​brijeshb42, @​DanailH, @​dav-is, @​Janpot, @​matthias-ccri, @​mnajdova, @​oliviertassinari, @​pavan-sh, @​PeterTYLiu, @​sai6855, @​silviuaavram, @​vmakhaev, @​ZeeshanTamboli

Changelog

Sourced from @​mui/material's changelog.

7.3.9

Mar 5, 2026

A big thanks to the 15 contributors who made this release possible.

@mui/material@7.3.9

Docs

Core

All contributors of this release in alphabetical order: @​alelthomas, @​arthur-plazanet, @​brijeshb42, @​DanailH, @​dav-is, @​Janpot, @​matthias-ccri, @​mnajdova, @​oliviertassinari, @​pavan-sh, @​PeterTYLiu, @​sai6855, @​silviuaavram, @​vmakhaev, @​ZeeshanTamboli

Commits
  • 5430aaa v7.3.9 (#47911)
  • 4980716 [website] Implement the latest price changes proposal (@​DanailH) (#47606) (#4...
  • 67acb51 [material-ui] Clean up duplicated CSS rules (@​sai6855) (#47893)
  • 3692e54 [code-infra] Detect browser envs that don't support layout (#47813) (#47873)
  • 556e388 [tooltip] Fix error is thrown when wrapping an input which is disabled while ...
  • 09398d6 [table cell][theme] Apply alpha before color mixing to border bottom color ...
  • dc1e493 [code-infra] Enable undefined addition to optional properties (#47815)
  • d92df84 [theme] Generate color-mix value on top of default generated Material UI CS...
  • See full diff in compare view

Updates @sentry/browser from 10.41.0 to 10.42.0

Release notes

Sourced from @​sentry/browser's releases.

10.42.0

  • feat(consola): Enhance Consola integration to extract first-param object as searchable attributes (#19534)
  • fix(astro): Do not inject withSentry into Cloudflare Pages (#19558)
  • fix(core): Do not remove promiseBuffer entirely (#19592)
  • fix(deps): Bump fast-xml-parser to 4.5.4 for CVE-2026-25896 (#19588)
  • fix(react-router): Set correct transaction name when navigating with object argument (#19590)
  • ref(nuxt): Use addVitePlugin instead of deprecated vite:extendConfig (#19464)
  • chore(deps-dev): bump @​sveltejs/kit from 2.52.2 to 2.53.3 (#19571)
  • chore(deps): Bump @​sveltejs/kit to 2.53.3 in sveltekit-2-svelte-5 E2E test (#19594)
  • ci(deps): bump actions/checkout from 4 to 6 (#19570)

Bundle size 📦

Path Size
@​sentry/browser 25.02 KB
@​sentry/browser - with treeshaking flags 23.57 KB
@​sentry/browser (incl. Tracing) 41.44 KB
@​sentry/browser (incl. Tracing, Profiling) 45.99 KB
@​sentry/browser (incl. Tracing, Replay) 79.35 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 69.21 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 83.93 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 95.91 KB
@​sentry/browser (incl. Feedback) 41.44 KB
@​sentry/browser (incl. sendFeedback) 29.58 KB
@​sentry/browser (incl. FeedbackAsync) 34.52 KB
@​sentry/browser (incl. Metrics) 26.17 KB
@​sentry/browser (incl. Logs) 26.31 KB
@​sentry/browser (incl. Metrics & Logs) 26.96 KB
@​sentry/react 26.74 KB
@​sentry/react (incl. Tracing) 43.72 KB
@​sentry/vue 29.37 KB
@​sentry/vue (incl. Tracing) 43.26 KB
@​sentry/svelte 25.05 KB
CDN Bundle 27.51 KB
CDN Bundle (incl. Tracing) 42.25 KB
CDN Bundle (incl. Logs, Metrics) 28.33 KB
CDN Bundle (incl. Tracing, Logs, Metrics) 43.07 KB
CDN Bundle (incl. Replay, Logs, Metrics) 66.49 KB
CDN Bundle (incl. Tracing, Replay) 78.26 KB
CDN Bundle (incl. Tracing, Replay, Logs, Metrics) 79.1 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 83.65 KB
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) 84.5 KB
CDN Bundle - uncompressed 80.42 KB

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.42.0

  • feat(consola): Enhance Consola integration to extract first-param object as searchable attributes (#19534)
  • fix(astro): Do not inject withSentry into Cloudflare Pages (#19558)
  • fix(core): Do not remove promiseBuffer entirely (#19592)
  • fix(deps): Bump fast-xml-parser to 4.5.4 for CVE-2026-25896 (#19588)
  • fix(react-router): Set correct transaction name when navigating with object argument (#19590)
  • ref(nuxt): Use addVitePlugin instead of deprecated vite:extendConfig (#19464)
  • chore(deps-dev): bump @​sveltejs/kit from 2.52.2 to 2.53.3 (#19571)
  • chore(deps): Bump @​sveltejs/kit to 2.53.3 in sveltekit-2-svelte-5 E2E test (#19594)
  • ci(deps): bump actions/checkout from 4 to 6 (#19570)
Commits
  • 07c9190 release: 10.42.0
  • 193a78d Merge pull request #19601 from getsentry/prepare-release/10.42.0
  • 8738f9b meta(changelog): Update changelog for 10.42.0
  • f870073 fix(astro): Do not inject withSentry into Cloudflare Pages (#19558)
  • 552187d chore(deps): Bump @​sveltejs/kit to 2.53.3 in sveltekit-2-svelte-5 E2E test (#...
  • 1ffba2c fix(core): Do not remove promiseBuffer entirely (#19592)
  • 4a7c056 fix(react-router): Set correct transaction name when navigating with object a...
  • 003e894 ci(deps): bump actions/checkout from 4 to 6 (#19570)
  • 5d4c0eb chore(deps-dev): bump @​sveltejs/kit from 2.52.2 to 2.53.3 (#19571)
  • 116c3f3 fix(deps): Bump fast-xml-parser to 4.5.4 for CVE-2026-25896 (#19588)
  • Additional commits viewable in compare view

Updates @sentry/node from 10.41.0 to 10.42.0

Release notes

Sourced from @​sentry/node's releases.

10.42.0

  • feat(consola): Enhance Consola integration to extract first-param object as searchable attributes (#19534)
  • fix(astro): Do not inject withSentry into Cloudflare Pages (#19558)
  • fix(core): Do not remove promiseBuffer entirely (#19592)
  • fix(deps): Bump fast-xml-parser to 4.5.4 for CVE-2026-25896 (#19588)
  • fix(react-router): Set correct transaction name when navigating with object argument (#19590)
  • ref(nuxt): Use addVitePlugin instead of deprecated vite:extendConfig (#19464)
  • chore(deps-dev): bump @​sveltejs/kit from 2.52.2 to 2.53.3 (#19571)
  • chore(deps): Bump @​sveltejs/kit to 2.53.3 in sveltekit-2-svelte-5 E2E test (#19594)
  • ci(deps): bump actions/checkout from 4 to 6 (#19570)

Bundle size 📦

Path Size
@​sentry/browser 25.02 KB
@​sentry/browser - with treeshaking flags 23.57 KB
@​sentry/browser (incl. Tracing) 41.44 KB
@​sentry/browser (incl. Tracing, Profiling) 45.99 KB
@​sentry/browser (incl. Tracing, Replay) 79.35 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 69.21 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 83.93 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 95.91 KB
@​sentry/browser (incl. Feedback) 41.44 KB
@​sentry/browser (incl. sendFeedback) 29.58 KB
@​sentry/browser (incl. FeedbackAsync) 34.52 KB
@​sentry/browser (incl. Metrics) 26.17 KB
@​sentry/browser (incl. Logs) 26.31 KB
@​sentry/browser (incl. Metrics & Logs) 26.96 KB
@​sentry/react 26.74 KB
@​sentry/react (incl. Tracing) 43.72 KB
@​sentry/vue 29.37 KB
@​sentry/vue (incl. Tracing) 43.26 KB
@​sentry/svelte 25.05 KB
CDN Bundle 27.51 KB
CDN Bundle (incl. Tracing) 42.25 KB
CDN Bundle (incl. Logs, Metrics) 28.33 KB
CDN Bundle (incl. Tracing, Logs, Metrics) 43.07 KB
CDN Bundle (incl. Replay, Logs, Metrics) 66.49 KB
CDN Bundle (incl. Tracing, Replay) 78.26 KB
CDN Bundle (incl. Tracing, Replay, Logs, Metrics) 79.1 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 83.65 KB
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) 84.5 KB
CDN Bundle - uncompressed 80.42 KB

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

10.42.0

  • feat(consola): Enhance Consola integration to extract first-param object as searchable attributes (#19534)
  • fix(astro): Do not inject withSentry into Cloudflare Pages (#19558)
  • fix(core): Do not remove promiseBuffer entirely (#19592)
  • fix(deps): Bump fast-xml-parser to 4.5.4 for CVE-2026-25896 (#19588)
  • fix(react-router): Set correct transaction name when navigating with object argument (#19590)
  • ref(nuxt): Use addVitePlugin instead of deprecated vite:extendConfig (#19464)
  • chore(deps-dev): bump @​sveltejs/kit from 2.52.2 to 2.53.3 (#19571)
  • chore(deps): Bump @​sveltejs/kit to 2.53.3 in sveltekit-2-svelte-5 E2E test (#19594)
  • ci(deps): bump actions/checkout from 4 to 6 (#19570)
Commits
  • 07c9190 release: 10.42.0
  • 193a78d Merge pull request #19601 from getsentry/prepare-release/10.42.0
  • 8738f9b meta(changelog): Update changelog for 10.42.0
  • f870073 fix(astro): Do not inject withSentry into Cloudflare Pages (#19558)
  • 552187d chore(deps): Bump @​sveltejs/kit to 2.53.3 in sveltekit-2-svelte-5 E2E test (#...
  • 1ffba2c fix(core): Do not remove promiseBuffer entirely (#19592)
  • 4a7c056 fix(react-router): Set correct transaction name when navigating with object a...
  • 003e894 ci(deps): bump actions/checkout from 4 to 6 (#19570)
  • 5d4c0eb chore(deps-dev): bump @​sveltejs/kit from 2.52.2 to 2.53.3 (#19571)
  • 116c3f3 fix(deps): Bump fast-xml-parser to 4.5.4 for CVE-2026-25896 (#19588)
  • Additional commits viewable in compare view

Updates pg from 8.19.0 to 8.20.0

Changelog

Sourced from pg's changelog.

pg@8.20.0

  • Add onConnect callback to pg.Pool constructor options allowing for async initialization of newly created & connected pooled clients.
Commits

Updates @opentelemetry/api-logs from 0.212.0 to 0.213.0

Release notes

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

experimental/v0.213.0

0.213.0

💥 Breaking Changes

  • fix(api-logs)!: drop lingering includeTraceContext from LoggerOptions type #6451 @​trentm

🚀 Features

  • feat(instrumentation-http): provide http.request.header.<key> at server span creation time #6396 @​vitorvasc

🐛 Bug Fixes

  • fix(instrumentation-http): guard against double-instrumentation if loaded with require('http') and import 'http' #6428 @​trentm
  • fix(otlp-exporter-base): handle response error #6412 @​pichlermarc
    • Fixes a bug where when the response header was received, but the connection was reset by the server, an unhandled error would be thrown.
  • fix(otlp-exporter-base): remove sendBeacon in favor of fetch with keepalive #6391 @​overbalance
    • (user-facing) createOtlpSendBeaconExportDelegate will be removed in a future version
  • fix(otlp-transformer): downgrade protobufjs to version ^7.0.0 #6418 @​vitorvasc
  • fix(instrumentation-fetch): handle HeadersInit tuple arrays in _addHeaders #6341 @​overbalance @​imadha
Commits
  • 541e1b4 chore: prepare next release (#6464)
  • 30f94fe feat(instrumentation-http): provide http.request.header.\<key> at server spa...
  • 2ac44ad refactor(context-zone-peer-dep): remove unnecessary helper methods and use me...
  • 600e51d chore(deps): update github/codeql-action digest to c793b71 (#6458)
  • ae30abf chore(deps): update dependency @​types/jquery to v4 (#6456)
  • 6387d3c chore(release): use the HEAD commit as the target for draft GH release creati...
  • 4cd3644 fix(deps): update dependency import-in-the-middle to v3 (

Bumps the production-dependencies group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [jose](https://github.com/panva/jose) | `6.1.3` | `6.2.1` |
| [fumadocs-core](https://github.com/fuma-nama/fumadocs) | `16.6.8` | `16.6.13` |
| [fumadocs-openapi](https://github.com/fuma-nama/fumadocs) | `10.3.14` | `10.3.17` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `16.6.8` | `16.6.13` |
| [@sentry/react-native](https://github.com/getsentry/sentry-react-native) | `8.2.0` | `8.3.0` |
| [@tanstack/react-store](https://github.com/TanStack/store/tree/HEAD/packages/react-store) | `0.9.1` | `0.9.2` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `7.3.8` | `7.3.9` |
| [@sentry/browser](https://github.com/getsentry/sentry-javascript) | `10.41.0` | `10.42.0` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `10.41.0` | `10.42.0` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.19.0` | `8.20.0` |
| [@opentelemetry/api-logs](https://github.com/open-telemetry/opentelemetry-js) | `0.212.0` | `0.213.0` |
| [@opentelemetry/exporter-metrics-otlp-http](https://github.com/open-telemetry/opentelemetry-js) | `0.212.0` | `0.213.0` |
| [@opentelemetry/exporter-logs-otlp-http](https://github.com/open-telemetry/opentelemetry-js) | `0.212.0` | `0.213.0` |
| [@opentelemetry/exporter-trace-otlp-http](https://github.com/open-telemetry/opentelemetry-js) | `0.212.0` | `0.213.0` |
| [@opentelemetry/resources](https://github.com/open-telemetry/opentelemetry-js) | `2.5.1` | `2.6.0` |
| [@opentelemetry/sdk-logs](https://github.com/open-telemetry/opentelemetry-js) | `0.212.0` | `0.213.0` |
| [@opentelemetry/sdk-metrics](https://github.com/open-telemetry/opentelemetry-js) | `2.5.1` | `2.6.0` |
| [@opentelemetry/sdk-node](https://github.com/open-telemetry/opentelemetry-js) | `0.212.0` | `0.213.0` |
| [@opentelemetry/sdk-trace-base](https://github.com/open-telemetry/opentelemetry-js) | `2.5.1` | `2.6.0` |


Updates `jose` from 6.1.3 to 6.2.1
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
- [Commits](panva/jose@v6.1.3...v6.2.1)

Updates `fumadocs-core` from 16.6.8 to 16.6.13
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-core@16.6.8...fumadocs-core@16.6.13)

Updates `fumadocs-openapi` from 10.3.14 to 10.3.17
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-openapi@10.3.14...fumadocs-openapi@10.3.17)

Updates `fumadocs-ui` from 16.6.8 to 16.6.13
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-ui@16.6.8...fumadocs-ui@16.6.13)

Updates `@sentry/react-native` from 8.2.0 to 8.3.0
- [Release notes](https://github.com/getsentry/sentry-react-native/releases)
- [Changelog](https://github.com/getsentry/sentry-react-native/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-react-native@8.2.0...8.3.0)

Updates `@tanstack/react-store` from 0.9.1 to 0.9.2
- [Release notes](https://github.com/TanStack/store/releases)
- [Changelog](https://github.com/TanStack/store/blob/main/packages/react-store/CHANGELOG.md)
- [Commits](https://github.com/TanStack/store/commits/@tanstack/react-store@0.9.2/packages/react-store)

Updates `@mui/material` from 7.3.8 to 7.3.9
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v7.3.9/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v7.3.9/packages/mui-material)

Updates `@sentry/browser` from 10.41.0 to 10.42.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.41.0...10.42.0)

Updates `@sentry/node` from 10.41.0 to 10.42.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.41.0...10.42.0)

Updates `pg` from 8.19.0 to 8.20.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.20.0/packages/pg)

Updates `@opentelemetry/api-logs` from 0.212.0 to 0.213.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.212.0...experimental/v0.213.0)

Updates `@opentelemetry/exporter-metrics-otlp-http` from 0.212.0 to 0.213.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.212.0...experimental/v0.213.0)

Updates `@opentelemetry/exporter-logs-otlp-http` from 0.212.0 to 0.213.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.212.0...experimental/v0.213.0)

Updates `@opentelemetry/exporter-trace-otlp-http` from 0.212.0 to 0.213.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.212.0...experimental/v0.213.0)

Updates `@opentelemetry/resources` from 2.5.1 to 2.6.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@v2.5.1...v2.6.0)

Updates `@opentelemetry/sdk-logs` from 0.212.0 to 0.213.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.212.0...experimental/v0.213.0)

Updates `@opentelemetry/sdk-metrics` from 2.5.1 to 2.6.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@v2.5.1...v2.6.0)

Updates `@opentelemetry/sdk-node` from 0.212.0 to 0.213.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.212.0...experimental/v0.213.0)

Updates `@opentelemetry/sdk-trace-base` from 2.5.1 to 2.6.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@v2.5.1...v2.6.0)

---
updated-dependencies:
- dependency-name: jose
  dependency-version: 6.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fumadocs-core
  dependency-version: 16.6.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fumadocs-openapi
  dependency-version: 10.3.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fumadocs-ui
  dependency-version: 16.6.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@sentry/react-native"
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-store"
  dependency-version: 0.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mui/material"
  dependency-version: 7.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@sentry/browser"
  dependency-version: 10.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@sentry/node"
  dependency-version: 10.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pg
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/api-logs"
  dependency-version: 0.213.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/exporter-metrics-otlp-http"
  dependency-version: 0.213.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/exporter-logs-otlp-http"
  dependency-version: 0.213.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/exporter-trace-otlp-http"
  dependency-version: 0.213.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/resources"
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/sdk-logs"
  dependency-version: 0.213.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/sdk-metrics"
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/sdk-node"
  dependency-version: 0.213.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@opentelemetry/sdk-trace-base"
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 9, 2026
@vercel
Copy link

vercel bot commented Mar 9, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
tx-agent-kit-docs Ready Ready Preview, Comment Mar 9, 2026 10:04pm

Request Review

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