Skip to content

build(deps): bump @sentry/nextjs from 8.54.0 to 10.3.0 #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 11, 2025

Bumps @sentry/nextjs from 8.54.0 to 10.3.0.

Release notes

Sourced from @​sentry/nextjs's releases.

10.3.0

  • feat(core): MCP Server - Capture prompt results from prompt function calls (#17284)
  • feat(bun): Export skipOpenTelemetrySetup option (#17349)
  • feat(sveltekit): Streamline build logs (#17306)
  • fix(browser): Handle data urls in errors caught by globalHandlersIntegration (#17216)
  • fix(browser): Improve navigation vs. redirect detection (#17275)
  • fix(react-router): Ensure source map upload fails silently if Sentry CLI fails (#17081)
  • fix(react): Add support for React Router sub-routes from handle (#17277)

Bundle size 📦

Path Size
@​sentry/browser 23.55 KB
@​sentry/browser - with treeshaking flags 22.15 KB
@​sentry/browser (incl. Tracing) 38.89 KB
@​sentry/browser (incl. Tracing, Replay) 76.1 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.18 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.69 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.51 KB
@​sentry/browser (incl. Feedback) 39.81 KB
@​sentry/browser (incl. sendFeedback) 28.1 KB
@​sentry/browser (incl. FeedbackAsync) 32.87 KB
@​sentry/react 25.22 KB
@​sentry/react (incl. Tracing) 40.82 KB
@​sentry/vue 27.92 KB
@​sentry/vue (incl. Tracing) 40.67 KB
@​sentry/svelte 23.58 KB
CDN Bundle 25.02 KB
CDN Bundle (incl. Tracing) 38.79 KB
CDN Bundle (incl. Tracing, Replay) 73.99 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79.28 KB
CDN Bundle - uncompressed 73.13 KB
CDN Bundle (incl. Tracing) - uncompressed 114.76 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 226.35 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.66 KB
@​sentry/nextjs (client) 42.81 KB
@​sentry/sveltekit (client) 39.33 KB
@​sentry/node-core 46.61 KB
@​sentry/node 143.18 KB
@​sentry/node - without tracing 89.68 KB
@​sentry/aws-serverless 100.85 KB

10.2.0

Important Changes

  • feat(core): Add ignoreSpans option (#17078)

This release adds a new top-level Sentry.init option, ignoreSpans, that can be used as follows:

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

10.3.0

  • feat(core): MCP Server - Capture prompt results from prompt function calls (#17284)
  • feat(bun): Export skipOpenTelemetrySetup option (#17349)
  • feat(sveltekit): Streamline build logs (#17306)
  • fix(browser): Handle data urls in errors caught by globalHandlersIntegration (#17216)
  • fix(browser): Improve navigation vs. redirect detection (#17275)
  • fix(react-router): Ensure source map upload fails silently if Sentry CLI fails (#17081)
  • fix(react): Add support for React Router sub-routes from handle (#17277)

10.2.0

Important Changes

  • feat(core): Add ignoreSpans option (#17078)

This release adds a new top-level Sentry.init option, ignoreSpans, that can be used as follows:

Sentry.init({
  ignoreSpans: [
    'partial match', // string matching on the span name
    /regex/, // regex matching on the span name
    {
      name: 'span name',
      op: /http.client/,
    },
  ],
});

Spans matching the filter criteria will not be recorded. Potential child spans of filtered spans will be re-parented, if possible.

  • feat(cloudflare,vercel-edge): Add support for OpenAI instrumentation (#17338)

Adds support for OpenAI manual instrumentation in @sentry/cloudflare and @sentry/vercel-edge.

To instrument the OpenAI client, wrap it with Sentry.instrumentOpenAiClient and set recording settings.

import * as Sentry from '@sentry/cloudflare';
import OpenAI from 'openai';
const openai = new OpenAI();
const client = Sentry.instrumentOpenAiClient(openai, { recordInputs: true, recordOutputs: true });
// use the wrapped client

  • ref(aws): Remove manual span creation (#17310)

... (truncated)

Commits
  • bd8cce1 release: 10.3.0
  • dd83160 Merge pull request #17356 from getsentry/prepare-release/10.3.0
  • f0661fc meta(changelog): Update changelog for 10.3.0
  • ca4fba6 fix(react): Add support for React Router sub-routes from handle (#17277)
  • ccc7d32 ref(core): Improve event mechanism for supabase integration (#17286)
  • 735c1d8 fix(browser): Improve navigation vs. redirect detection (#17275)
  • b4aad49 feat(bun): Export skipOpenTelemetrySetup option (#17349)
  • f25a327 fix(browser): Handle data urls in errors caught by `globalHandlersIntegration...
  • 08fb932 fix(react-router): Ensure source map upload fails silently if Sentry CLI fail...
  • 6829fda feat(sveltekit): Streamline build logs (#17306)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) from 8.54.0 to 10.3.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@8.54.0...10.3.0)

---
updated-dependencies:
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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 Aug 11, 2025
@dependabot dependabot bot requested a review from thedaviddias as a code owner August 11, 2025 00:34
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 11, 2025
Copy link

vercel bot commented Aug 11, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
ux-patterns-for-developers ⬜️ Ignored (Inspect) Visit Preview Aug 11, 2025 0:34am

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