Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 19 updates#28

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-ecdd0fb915
Closed

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

Conversation

@dependabot
Copy link
Contributor

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

Bumps the production-dependencies group with 19 updates in the / directory:

Package From To
jose 6.1.3 6.2.1
fumadocs-core 16.6.8 16.6.16
fumadocs-ui 16.6.8 16.6.16
@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.43.0
react-admin 5.14.3 5.14.4
@sentry/node 10.41.0 10.43.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.16

Release notes

Sourced from fumadocs-core's releases.

[email protected]

Patch Changes

  • 054da73: Implement limit option on search servers

[email protected]

No release notes provided.

[email protected]

Patch Changes

  • 8382363: [Remark Image] set placeholder to none by default

[email protected]

No release notes provided.

[email protected]

Patch Changes

  • ddb0f81: require explicit import for new search clients

[email protected]

Patch Changes

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

Updates fumadocs-ui from 16.6.8 to 16.6.16

Release notes

Sourced from fumadocs-ui's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

  • a02048c: UI: override MDX types by default
  • 02201df: Simplify i18n setup
  • Updated dependencies [8382363]

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

  • Updated dependencies [d35f30c]
  • Updated dependencies [ae3e742]
  • Updated dependencies [269dfb3]
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/[email protected]

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/[email protected]

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.43.0

Release notes

Sourced from @​sentry/browser's releases.

10.43.0

Important Changes

  • feat(nextjs): Add Turbopack support for React component name annotation (#19604)

    We added experimental support for React component name annotation in Turbopack builds. When enabled, JSX elements are annotated with data-sentry-component, data-sentry-element, and data-sentry-source-file attributes at build time. This enables searching Replays by component name, seeing component names in breadcrumbs, and performance monitoring — previously only available with webpack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackReactComponentAnnotation: {
    enabled: true,
    ignoredComponents: ['Header', 'Footer'], // optional
    },
    },
    });

  • feat(hono): Instrument middlewares app.use() (#19611)

    Hono middleware registered via app.use() is now automatically instrumented, creating spans for each middleware invocation.

Other Changes

  • feat(node-core,node): Add tracePropagation option to http and fetch integrations (#19712)
  • feat(hono): Use parametrized names for errors (#19577)
  • fix(browser): Fix missing traces for user feedback (#19660)
  • fix(cloudflare): Use correct Proxy receiver in instrumentDurableObjectStorage (#19662)
  • fix(core): Standardize Vercel AI span descriptions to align with GenAI semantic conventions (#19624)
  • fix(deps): Bump hono to 4.12.5 to fix multiple vulnerabilities (#19653)
  • fix(deps): Bump svgo to 4.0.1 to fix DoS via entity expansion (#19651)
  • fix(deps): Bump tar to 7.5.10 to fix hardlink path traversal (#19650)
  • fix(nextjs): Align Turbopack module metadata injection with webpack behavior (#19645)
  • fix(node): Prevent duplicate LangChain spans from double module patching (#19684)
  • fix(node-core,vercel-edge): Use HEROKU_BUILD_COMMIT env var for default release (#19617)
  • fix(sveltekit): Fix file system race condition in source map cleaning (#19714)
  • fix(tanstackstart-react): Add workerd and worker export conditions (#19461)
  • fix(vercel-ai): Prevent tool call span map memory leak (#19328)
  • feat(deps): Bump @​sentry/rollup-plugin from 5.1.0 to 5.1.1 (#19658)

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.43.0

Important Changes

  • feat(nextjs): Add Turbopack support for React component name annotation (#19604)

    We added experimental support for React component name annotation in Turbopack builds. When enabled, JSX elements are annotated with data-sentry-component, data-sentry-element, and data-sentry-source-file attributes at build time. This enables searching Replays by component name, seeing component names in breadcrumbs, and performance monitoring — previously only available with webpack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackReactComponentAnnotation: {
    enabled: true,
    ignoredComponents: ['Header', 'Footer'], // optional
    },
    },
    });

  • feat(hono): Instrument middlewares app.use() (#19611)

    Hono middleware registered via app.use() is now automatically instrumented, creating spans for each middleware invocation.

Other Changes

  • feat(node-core,node): Add tracePropagation option to http and fetch integrations (#19712)
  • feat(hono): Use parametrized names for errors (#19577)
  • fix(browser): Fix missing traces for user feedback (#19660)
  • fix(cloudflare): Use correct Proxy receiver in instrumentDurableObjectStorage (#19662)
  • fix(core): Standardize Vercel AI span descriptions to align with GenAI semantic conventions (#19624)
  • fix(deps): Bump hono to 4.12.5 to fix multiple vulnerabilities (#19653)
  • fix(deps): Bump svgo to 4.0.1 to fix DoS via entity expansion (#19651)
  • fix(deps): Bump tar to 7.5.10 to fix hardlink path traversal (#19650)
  • fix(nextjs): Align Turbopack module metadata injection with webpack behavior (#19645)
  • fix(node): Prevent duplicate LangChain spans from double module patching (#19684)
  • fix(node-core,vercel-edge): Use HEROKU_BUILD_COMMIT env var for default release (#19617)
  • fix(sveltekit): Fix file system race condition in source map cleaning (#19714)
  • fix(tanstackstart-react): Add workerd and worker export conditions (#19461)
  • fix(vercel-ai): Prevent tool call span map memory leak (#19328)
  • feat(deps): Bump @​sentry/rollup-plugin from 5.1.0 to 5.1.1 (#19658)

... (truncated)

Commits
  • 3fb8102 release: 10.43.0
  • 8706e4e Merge pull request #19716 from getsentry/prepare-release/10.43.0
  • 61d7a84 meta(changelog): Update changelog for 10.43.0
  • f83f288 test(angular): Fix failing canary test (#19639)
  • 2b3ce34 fix(sveltekit): Fix file system race condition in source map cleaning (#19714)
  • 98be6b0 chore(skills): Add bump-size-limit skill (#19715)
  • cdee7a9 chore(sourcemaps): Make sourcemaps e2e test more generic (#19678)
  • b26df86 feat(node-core,node): Add tracePropagation option to http and fetch integrati...
  • 7b69774 chore(ci): Allow triage action to run on issues from external users (#19701)
  • 5651be2 fix(browser): Fix missing traces for user feedback (#19660)
  • Additional commits viewable in compare view

Updates react-admin from 5.14.3 to 5.14.4

Release notes

Sourced from react-admin's releases.

5.14.4

Changelog

Sourced from react-admin's changelog.

5.14.4

Commits
  • fbb97ae Update changelog for version 5.14.4
  • 6d4a767 v5.14.4
  • 6bb138d Merge pull request #11186 from marmelab/fix-@​hookform/resolvers-compat
  • 9455780 fix tests
  • 4bd6d4a Fix compatibility with latest version of @hookform/resolvers
  • 289889c Merge pull request #11185 from marmelab/dependabot/npm_and_yarn/js-yaml-3.14.2
  • a2d8eeb Merge pull request #11184 from marmelab/dependabot/npm_and_yarn/dompurify-3.3.2
  • 54daad9 Bump js-yaml from 3.14.1 to 3.14.2
  • 319ece6 Bump dompurify from 3.3.1 to 3.3.2
  • 00c18b6 Merge pull request #11183 from marmelab/fix-dependabot-alert
  • Additional commits viewable in compare view

Updates @sentry/node from 10.41.0 to 10.43.0

Release notes

Sourced from @​sentry/node's releases.

10.43.0

Important Changes

  • feat(nextjs): Add Turbopack support for React component name annotation (#19604)

    We added experimental support for React component name annotation in Turbopack builds. When enabled, JSX elements are annotated with data-sentry-component, data-sentry-element, and data-sentry-source-file attributes at build time. This enables searching Replays by component name, seeing component names in breadcrumbs, and performance monitoring — previously only available with webpack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackReactComponentAnnotation: {
    enabled: true,
    ignoredComponents: ['Header', 'Footer'], // optional
    },
    },
    });

  • feat(hono): Instrument middlewares app.use() (#19611)

    Hono middleware registered via app.use() is now automatically instrumented, creating spans for each middleware invocation.

Other Changes

  • feat(node-core,node): Add tracePropagation option to http and fetch integrations (#19712)
  • feat(hono): Use parametrized names for errors (#19577)
  • fix(browser): Fix missing traces for user feedback (#19660)
  • fix(cloudflare): Use correct Proxy receiver in instrumentDurableObjectStorage (#19662)
  • fix(core): Standardize Vercel AI span descriptions to align with GenAI semantic conventions (#19624)
  • fix(deps): Bump hono to 4.12.5 to fix multiple vulnerabilities (#19653)
  • fix(deps): Bump svgo to 4.0.1 to fix DoS via entity expansion (#19651)
  • fix(deps): Bump tar to 7.5.10 to fix hardlink path traversal (#19650)
  • fix(nextjs): Align Turbopack module metadata injection with webpack behavior (#19645)
  • fix(node): Prevent duplicate LangChain spans from double module patching (#19684)
  • fix(node-core,vercel-edge): Use HEROKU_BUILD_COMMIT env var for default release (#19617)
  • fix(sveltekit): Fix file system race condition in source map cleaning (#19714)
  • fix(tanstackstart-react): Add workerd and worker export conditions (#19461)
  • fix(vercel-ai): Prevent tool call span map memory leak (#19328)
  • feat(deps): Bump @​sentry/rollup-plugin from 5.1.0 to 5.1.1 (#19658)

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

10.43.0

Important Changes

  • feat(nextjs): Add Turbopack support for React component name annotation (#19604)

    We added experimental support for React component name annotation in Turbopack builds. When enabled, JSX elements are annotated with data-sentry-component, data-sentry-element, and data-sentry-source-file attributes at build time. This enables searching Replays by component name, seeing component names in breadcrumbs, and performance monitoring — previously only available with webpack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackReactComponentAnnotation: {
    enabled: true,
    ignoredComponents: ['Header', 'Footer'], // optional
    },
    },
    });

  • feat(hono): Instrument middlewares app.use() (#19611)

    Hono middleware registered via app.use() is now automatically instrumented, creating spans for each middleware invocation.

Other Changes

  • feat(node-core,node): Add tracePropagation option to http and fetch integrations (#19712)
  • feat(hono): Use parametrized names for errors (#19577)
  • fix(browser): Fix missing traces for user feedback (#19660)
  • fix(cloudflare): Use correct Proxy receiver in instrumentDurableObjectStorage (#19662)
  • fix(core): Standardize Vercel AI span descriptions to align with GenAI semantic conventions (#19624)
  • fix(deps): Bump hono to 4.12.5 to fix multiple vulnerabilities (#19653)
  • fix(deps): Bump svgo to 4.0.1 to fix DoS via entity expansion (#19651)
  • fix(deps): Bump tar to 7.5.10 to fix hardlink path traversal (#19650)
  • fix(nextjs): Align Turbopack module metadata injection with webpack behavior (#19645)
  • fix(node): Prevent duplicate LangChain spans from double module patching (#19684)
  • fix(node-core,vercel-edge): Use HEROKU_BUILD_COMMIT env var for default release (#19617)
  • fix(sveltekit): Fix file system race condition in source map cleaning (#19714)
  • fix(tanstackstart-react): Add workerd and worker export conditions (#19461)
  • fix(vercel-ai): Prevent tool call span map memory leak (#19328)
  • <...

    Description has been truncated

…y with 19 updates

Bumps the production-dependencies group with 19 updates in the / directory:

| 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.16` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `16.6.8` | `16.6.16` |
| [@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.43.0` |
| [react-admin](https://github.com/marmelab/react-admin) | `5.14.3` | `5.14.4` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `10.41.0` | `10.43.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.16
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/[email protected]@16.6.16)

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

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/[email protected]/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.43.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.43.0)

Updates `react-admin` from 5.14.3 to 5.14.4
- [Release notes](https://github.com/marmelab/react-admin/releases)
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Commits](marmelab/react-admin@v5.14.3...v5.14.4)

Updates `@sentry/node` from 10.41.0 to 10.43.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.43.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/[email protected]/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.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fumadocs-ui
  dependency-version: 16.6.16
  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.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-admin
  dependency-version: 5.14.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@sentry/node"
  dependency-version: 10.43.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] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 12, 2026
@vercel
Copy link

vercel bot commented Mar 12, 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 12, 2026 4:01pm

Request Review

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 16, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 16, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-ecdd0fb915 branch March 16, 2026 21:23
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