Skip to content

build(deps): bump the sentry group across 1 directory with 2 updates - #404

Open
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/sentry-1a228ee616
Open

build(deps): bump the sentry group across 1 directory with 2 updates#404
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/sentry-1a228ee616

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the sentry group with 2 updates in the / directory: @sentry/react and @sentry/vite-plugin.

Updates @sentry/react from 8.34.0 to 10.73.0

Release notes

Sourced from @​sentry/react's releases.

10.73.0

Important Changes

  • feat(v10/nextjs): Add @sentry/nextjs/config entry point (#23766)

    withSentryConfig is now available from @sentry/nextjs/config, the path it moves to in v11. Importing it from @sentry/nextjs still works on v10 but logs a warning once, so you can change your next.config file today and upgrade to v11 without touching it again.

    // next.config.mjs
    - import { withSentryConfig } from '@sentry/nextjs';
    + import { withSentryConfig } from '@sentry/nextjs/config';

Other Changes

  • feat(v10/node): Deprecate shouldHandleError on setupExpressErrorHandler and setupFasitfyErrorHandler (#23734)
  • fix(v10/cloudflare): Instrument Durable Object handlers installed as read-only properties (#23769)
  • test(v10/nextjs): Drop nextjs-16-cf-workers canary variant (#23775)

Bundle size 📦

Path Size
@​sentry/browser 27.1 KB
@​sentry/browser - with treeshaking flags 25.58 KB
@​sentry/browser (incl. Tracing) 45.54 KB
@​sentry/browser (incl. Tracing + Span Streaming) 47.28 KB
@​sentry/browser (incl. Tracing, Profiling) 50.17 KB
@​sentry/browser (incl. Tracing, Replay) 83.87 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 73.74 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 88.49 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 100.83 KB
@​sentry/browser (incl. Feedback) 43.87 KB
@​sentry/browser (incl. sendFeedback) 31.78 KB
@​sentry/browser (incl. FeedbackAsync) 36.79 KB
@​sentry/browser (incl. Metrics) 28.16 KB
@​sentry/browser (incl. Logs) 28.38 KB
@​sentry/browser (incl. Metrics & Logs) 29.06 KB
@​sentry/react 28.86 KB
@​sentry/react (incl. Tracing) 47.74 KB
@​sentry/vue 32.4 KB
@​sentry/vue (incl. Tracing) 47.46 KB
@​sentry/svelte 27.12 KB
CDN Bundle 29.43 KB

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

10.73.0

Important Changes

  • feat(v10/nextjs): Add @sentry/nextjs/config entry point (#23766)

    withSentryConfig is now available from @sentry/nextjs/config, the path it moves to in v11. Importing it from @sentry/nextjs still works on v10 but logs a warning once, so you can change your next.config file today and upgrade to v11 without touching it again.

    // next.config.mjs
    - import { withSentryConfig } from '@sentry/nextjs';
    + import { withSentryConfig } from '@sentry/nextjs/config';

Other Changes

  • feat(v10/node): Deprecate shouldHandleError on setupExpressErrorHandler and setupFasitfyErrorHandler (#23734)
  • fix(v10/cloudflare): Instrument Durable Object handlers installed as read-only properties (#23769)
  • test(v10/nextjs): Drop nextjs-16-cf-workers canary variant (#23775)

10.72.0

Important Changes

  • AI integrations no longer report errors that propagate to the caller (#23638, #23639, #23640)

    Across all AI integrations (OpenAI, Anthropic, Google GenAI, LangChain, and LangGraph), the SDK no longer sends an event to Sentry for errors that the AI framework propagates to your code. Previously the instrumentation reported these as unhandled (handled: false) before your own error handling ran, so an error your code caught still showed up in Sentry as an unhandled crash. The span is still marked as errored and the error still propagates, so reporting is left to your application: if your code does not handle the error, it reaches Sentry's global error handlers and is captured as unhandled, just like any other uncaught error. Errors that a provider surfaces as data on an otherwise successful response (such as Anthropic error-shaped responses or Google GenAI blocked content) are still captured, since your code never sees them propagate.

  • feat(v10/cloudflare): Add rpcTracePropagationBindings (#23737, #23738)

    The new rpcTracePropagationBindings option names the env bindings that outgoing RPC calls propagate trace context to. Strings match a binding name exactly, regular expressions match by pattern, and the default empty array propagates to nothing. RPC has no headers to carry trace context, so the SDK appends it as a trailing argument that only a Sentry-instrumented receiver removes again. List only the bindings whose receiver you know runs Sentry. Setting the option takes precedence over enableRpcTracePropagation, which is now deprecated. When you build with the Sentry Cloudflare Vite plugin, the bindings that resolve to this worker (its own Durable Objects and self service bindings) are derived from your wrangler config and added for you.

Other Changes

  • fix(v10/astro): support astro v7 route patterns properly (#23657)
  • fix(v10/bundler-plugins): Preserve full file path in component annotation source maps (#23595)
  • fix(v10/core): Store child span timeout handle in _childSpanTimeoutID (#23673)
  • fix(v10/node): Only end the process session when it is still ok (#23731)
  • fix(v10/react-router): Use react-router's own instrumentation types instead of a mirrored copy (#23589)
  • fix(v10/replay): Suppress Worker destroyed error on session expiry (#23654)
  • fix(v10/server-utils): Keep orchestrion registration out of tree-shaking (#23591)
  • fix(v10/server-utils): Stop shipping orchestrion bundler plugins as production dependencies (#23667)
  • fix(v10/server-utils): Support openai v7 in auto-instrumentation (#23713)
  • fix(v10/sveltekit): Detect native tracing in flattened SvelteKit 3 config (#23656)

... (truncated)

Commits
  • f109d92 release: 10.73.0
  • 1a3e04e meta(changelog): Update changelog for 10.73.0 (#23778)
  • da8d769 test(v10/nextjs): Drop nextjs-16-cf-workers canary variant (#23775)
  • bea4d38 feat(v10/node): Deprecate shouldHandleError on setupExpressErrorHandler a...
  • 605caaf feat(v10/nextjs): Add @sentry/nextjs/config entry point (#23766)
  • da17307 fix(v10/cloudflare): Instrument Durable Object handlers installed as read-onl...
  • 2c4ca38 Merge branch 'release/10.72.0' into v10
  • 0d23628 release: 10.72.0
  • ac2094d meta(changelog): Update changelog for 10.72.0 (#23743)
  • f325434 feat(v10/cloudflare): Derive rpcTracePropagationBindings from the wrangler co...
  • Additional commits viewable in compare view

Updates @sentry/vite-plugin from 4.0.2 to 5.4.0

Release notes

Sourced from @​sentry/vite-plugin's releases.

5.4.0

Important Changes ✨

The Sentry bundler plugins are moving to our main sentry-javascript monorepo and will be bumped to version 11.0.0 with the next SDK major release. In preparation, we've already ported the @sentry/bundler-plugin-core and sentry/babel-plugin-component-annotatepackages, which are now merged and called @@sentry/bundler-plugins. If you're using any of our bundler plugins (e.g. @sentry/vite-plugin), nothing will change for you at the moment.

If you encounter any problems, please open an issue in getsentry/sentry-javascript going forward. Thank you!

This repo will be closed after the v11 bump.

Related PRs:

Bug Fixes 🐛

  • (webpack) Make webpack import lazy to support rspack-only projects by @​s1gr1d in #940
  • Hide console window when running 'git rev-parse HEAD' on Windows by @​jwwisgerhof in #941

Internal Changes 🔧

5.3.0

New Features ✨

  • (babel) Auto-inject sentry-label from static text children by @​antonis in #925

Bug Fixes 🐛

Internal Changes 🔧

... (truncated)

Changelog

Sourced from @​sentry/vite-plugin's changelog.

5.4.0

Important Changes ✨

The Sentry bundler plugins are moving to our main sentry-javascript monorepo and will be bumped to version 11.0.0 with the next SDK major release. In preparation, we've already ported the @sentry/bundler-plugin-core and sentry/babel-plugin-component-annotate packages, which are now merged and called @@sentry/bundler-plugins. If you're using any of our bundler plugins (e.g. @sentry/vite-plugin), nothing will change for you at the moment.

If you encounter any problems, please open an issue in getsentry/sentry-javascript going forward. Thank you!

This repo will be closed after the v11 bump.

Related PRs:

Bug Fixes 🐛

  • (webpack) Make webpack import lazy to support rspack-only projects by @​s1gr1d in #940
  • Hide console window when running 'git rev-parse HEAD' on Windows by @​jwwisgerhof in #941

Internal Changes 🔧

5.3.0

New Features ✨

  • (babel) Auto-inject sentry-label from static text children by @​antonis in #925

Bug Fixes 🐛

Internal Changes 🔧

... (truncated)

Commits
  • 9853d6e Revise changelog for Sentry bundler plugin updates (#948)
  • baa8799 release: 5.4.0
  • e3eb5a2 chore: Remove obsolete packages (#947)
  • 211e486 test: Remove SDK version from telemetry snapshots (#946)
  • b0be3c7 feat: Depend on JavaScript repo package. (#945)
  • 988efd3 fix: hide console window when running 'git rev-parse HEAD' on Windows (#941)
  • f97ee48 fix(webpack): Make webpack import lazy to support rspack-only projects (#940)
  • 105f25a feat: Add @sentry/bundler-plugins core package (#938)
  • c63ec4d feat: Update Sentry SDK for telemetry (#937)
  • 1099a5f chore(sentry-cli): Upgrade to 2.58.6 (#936)
  • Additional commits viewable in compare view

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 1, 2026
@dependabot dependabot Bot changed the title Bump the sentry group with 2 updates Bump the sentry group across 1 directory with 2 updates Apr 3, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch 3 times, most recently from 20eabaa to 7ef0948 Compare April 8, 2026 00:07
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch 2 times, most recently from 03f6afb to b935182 Compare April 22, 2026 00:07
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch from b935182 to a7ca2d1 Compare April 29, 2026 00:08
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch from a7ca2d1 to 058d5ee Compare May 6, 2026 00:08
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch from 058d5ee to 91a04ee Compare May 13, 2026 01:28
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch 2 times, most recently from a299b80 to bc1d345 Compare May 27, 2026 03:00
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch 2 times, most recently from bd4cfab to d8d354d Compare June 10, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch 3 times, most recently from dd1ecb6 to 035ed9c Compare June 24, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch 2 times, most recently from a32f3de to 41fb930 Compare July 8, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch from 41fb930 to 7f9c7da Compare July 8, 2026 17:18
@dependabot dependabot Bot changed the title Bump the sentry group across 1 directory with 2 updates build(deps): bump the sentry group across 1 directory with 2 updates Jul 15, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch from 7f9c7da to e377811 Compare July 15, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch 2 times, most recently from d79a08b to 623956f Compare July 29, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch 2 times, most recently from 11dc042 to 6fdb755 Compare August 12, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch from 6fdb755 to 2a9a787 Compare August 19, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch from 2a9a787 to 3198182 Compare August 26, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch from 3198182 to f00b3ce Compare September 2, 2026 00:05
Jeff-Rowell and others added 2 commits September 8, 2026 12:19
Bumps the sentry group with 2 updates in the / directory: [@sentry/react](https://github.com/getsentry/sentry-javascript) and [@sentry/vite-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins).


Updates `@sentry/react` from 8.34.0 to 10.73.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/10.73.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.34.0...10.73.0)

Updates `@sentry/vite-plugin` from 4.0.2 to 5.4.0
- [Release notes](https://github.com/getsentry/sentry-javascript-bundler-plugins/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript-bundler-plugins@4.0.2...5.4.0)

---
updated-dependencies:
- dependency-name: "@sentry/react"
  dependency-version: 10.47.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sentry
- dependency-name: "@sentry/vite-plugin"
  dependency-version: 5.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: sentry
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/sentry-1a228ee616 branch from f00b3ce to d15521e Compare September 9, 2026 00:04
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.

1 participant