Skip to content
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

fix(deps): update dependency @sentry/react to v9.11.0 #951

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/react (source) 9.1.0 -> 9.11.0 age adoption passing confidence

Release Notes

getsentry/sentry-javascript (@​sentry/react)

v9.11.0

Compare Source

  • feat(browser): Add http.redirect_count attribute to browser.redirect span (#​15943)
  • feat(core): Add consoleLoggingIntegration for logs (#​15955)
  • feat(core): Don't truncate error messages (#​15818)
  • feat(nextjs): Add release injection in Turbopack (#​15958)
  • feat(nextjs): Record turbopack as tag (#​15928)
  • feat(nuxt): Base decision on source maps upload only on Nuxt source map settings (#​15859)
  • feat(react-router): Add sentryHandleRequest (#​15787)
  • fix(node): Use module instead of require for CJS check (#​15927)
  • fix(remix): Remove mentions of deprecated ErrorBoundary wrapper (#​15930)
  • ref(browser): Temporarily add sentry.previous_trace span attribute (#​15957)
  • ref(browser/core): Move all log flushing logic into clients (#​15831)
  • ref(core): Improve URL parsing utilities (#​15882)

Bundle size 📦

Path Size
@​sentry/browser 23.2 KB
@​sentry/browser - with treeshaking flags 23.02 KB
@​sentry/browser (incl. Tracing) 36.83 KB
@​sentry/browser (incl. Tracing, Replay) 73.99 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 67.39 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 78.66 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.22 KB
@​sentry/browser (incl. Feedback) 40.33 KB
@​sentry/browser (incl. sendFeedback) 27.83 KB
@​sentry/browser (incl. FeedbackAsync) 32.63 KB
@​sentry/react 25 KB
@​sentry/react (incl. Tracing) 38.75 KB
@​sentry/vue 27.41 KB
@​sentry/vue (incl. Tracing) 38.55 KB
@​sentry/svelte 23.23 KB
CDN Bundle 24.44 KB
CDN Bundle (incl. Tracing) 36.85 KB
CDN Bundle (incl. Tracing, Replay) 71.87 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 77.07 KB
CDN Bundle - uncompressed 71.24 KB
CDN Bundle (incl. Tracing) - uncompressed 108.94 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 220.23 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 232.8 KB
@​sentry/nextjs (client) 40.06 KB
@​sentry/sveltekit (client) 37.26 KB
@​sentry/node 142.88 KB
@​sentry/node - without tracing 96.08 KB
@​sentry/aws-serverless 120.43 KB

v9.10.1

Compare Source

v9.10.0

Compare Source

Important Changes
  • feat: Add support for logs

    • feat(node): Add logging public APIs to Node SDKs (#​15764)
    • feat(core): Add support for beforeSendLog (#​15814)
    • feat(core): Add support for parameterizing logs (#​15812)
    • fix: Remove critical log severity level (#​15824)

    All JavaScript SDKs other than @sentry/cloudflare and @sentry/deno now support sending logs via dedicated methods as part of Sentry's upcoming logging product.

    Logging is gated by an experimental option, _experiments.enableLogs.

    Sentry.init({
      dsn: 'PUBLIC_DSN',
      // `enableLogs` must be set to true to use the logging features
      _experiments: { enableLogs: true },
    });
    
    const { trace, debug, info, warn, error, fatal, fmt } = Sentry.logger;
    
    trace('Starting database connection', { database: 'users' });
    debug('Cache miss for user', { userId: 123 });
    error('Failed to process payment', { orderId: 'order_123', amount: 99.99 });
    fatal('Database connection pool exhausted', { database: 'users', activeConnections: 100 });
    
    // Structured logging via the `fmt` helper function. When you use `fmt`, the string template and parameters are sent separately so they can be queried independently in Sentry.
    
    info(fmt(`Updated profile for user ${userId}`));
    warn(fmt(`Rate limit approaching for endpoint ${endpoint}. Requests: ${requests}, Limit: ${limit}`));

    With server-side SDKs like @sentry/node, @sentry/bun or server-side of @sentry/nextjs or @sentry/sveltekit, you can do structured logging without needing the fmt helper function.

    const { info, warn } = Sentry.logger;
    
    info('User %s logged in successfully', [123]);
    warn('Failed to load user %s data', [123], { errorCode: 404 });

    To filter logs, or update them before they are sent to Sentry, you can use the _experiments.beforeSendLog option.

  • feat(browser): Add diagnoseSdkConnectivity() function to programmatically detect possible connectivity issues (#​15821)

    The diagnoseSdkConnectivity() function can be used to programmatically detect possible connectivity issues with the Sentry SDK.

    const result = await Sentry.diagnoseSdkConnectivity();

    The result will be an object with the following properties:

    • "no-client-active": There was no active client when the function was called. This possibly means that the SDK was not initialized yet.
    • "sentry-unreachable": The Sentry SaaS servers were not reachable. This likely means that there is an ad blocker active on the page or that there are other connection issues.
    • undefined: The SDK is working as expected.
  • SDK Tracing Performance Improvements for Node SDKs

    • feat: Stop using dropUndefinedKeys (#​15796)
    • feat(node): Only add span listeners for instrumentation when used (#​15802)
    • ref: Avoid dropUndefinedKeys for spanToJSON calls (#​15792)
    • ref: Avoid using SentryError for PromiseBuffer control flow (#​15822)
    • ref: Stop using dropUndefinedKeys in SpanExporter (#​15794)
    • ref(core): Avoid using SentryError for event processing control flow (#​15823)
    • ref(node): Avoid dropUndefinedKeys in Node SDK init (#​15797)
    • ref(opentelemetry): Avoid sampling work for non-root spans (#​15820)

    We've been hard at work making performance improvements to the Sentry Node SDKs (@sentry/node, @sentry/aws-serverless, @sentry/nestjs, etc.). We've seen that upgrading from 9.7.0 to 9.10.0 leads to 30-40% improvement in request latency for HTTP web-server applications that use tracing with high sample rates. Non web-server applications and non-tracing applications will see smaller improvements.

Other Changes
  • chore(deps): Bump rrweb to 2.35.0 (#​15825)
  • deps: Bump bundler plugins to 3.2.3 (#​15829)
  • feat: Always truncate stored breadcrumb messages to 2kb (#​15819)
  • feat(nextjs): Disable server webpack-handling for static builds (#​15751)
  • fix(nuxt): Don't override Nuxt options if undefined (#​15795)

v9.9.0

Compare Source

Important Changes
  • feat(nextjs): Support instrumentation-client.ts (#​15705)

    Next.js recently added a feature to support client-side (browser) instrumentation via the experimental.clientInstrumentationHook flag and the instrumentation-client.ts file.

    To be forwards compatible, the Sentry Next.js SDK will now pick up instrumentation-client.ts files even on older Next.js versions and add them to your client bundles.
    It is suggested that you either rename your sentry.client.config.ts file to instrumentation-client.ts, or if you already happen to have a instrumentation-client.ts file move the contents of sentry.client.config.ts to instrumentation-client.ts.

  • feat(browser): Add previous_trace span links (#​15569)

    The @sentry/browser SDK and SDKs based on @sentry/browser now emits a link from the first root span of a newly started trace to the root span of a previously started trace. You can control this feature via an option in browserTracingIntegration():

    Sentry.init({
      dsn: 'your-dsn-here'
      integrations: [
        Sentry.browserTracingIntegration({
          // Available settings:
          // - 'in-memory' (default): Stores previous trace information in memory
          // - 'session-storage': Stores previous trace information in the browser's `sessionStorage`
          // - 'off': Disable storing and sending previous trace information
          linkPreviousTrace: 'in-memory',
        }),
      ],
    });
  • feat(browser): Add logger.X methods to browser SDK (#​15763)

    For Sentry's upcoming logging product, the SDK now supports sending logs via dedicated methods.

    Sentry.init({
      dsn: 'your-dsn-here',
      _experiments: {
        enableLogs: true, // This is required to use the logging features
      },
    });
    
    Sentry.logger.info('This is a trace message', { userId: 123 });
    // See PR for better documentation

    Please note that the logs product is still in early access. See the link above for more information.

Other Changes
  • feat(browser): Attach host as part of error message to "Failed to fetch" errors (#​15729)
  • feat(core): Add parseStringToURL method (#​15768)
  • feat(core): Optimize dropUndefinedKeys (#​15760)
  • feat(node): Add fastify shouldHandleError (#​15771)
  • fix(nuxt): Delete no longer needed Nitro 'close' hook (#​15790)
  • perf(nestjs): Remove usage of addNonEnumerableProperty (#​15766)
  • ref: Avoid some usage of dropUndefinedKeys() (#​15757)
  • ref: Remove some usages of dropUndefinedKeys() (#​15781)
  • ref(nextjs): Fix Next.js vercel-edge runtime package information (#​15789)

v9.8.0

Compare Source

  • feat(node): Implement new continuous profiling API spec (#​15635)
  • feat(profiling): Add platform to chunk envelope (#​15758)
  • feat(react): Export captureReactException method (#​15746)
  • fix(node): Check for res.end before passing to Proxy (#​15776)
  • perf(core): Add short-circuits to eventFilters integration (#​15752)
  • perf(node): Short circuit flushing on Vercel only for Vercel (#​15734)

v9.7.0

Compare Source

  • feat(core): Add captureLog method (#​15717)
  • feat(remix/cloudflare): Export sentryHandleError (#​15726)
  • fix(node): Always flush on Vercel before Lambda freeze (#​15602)
  • fix(node): Ensure incoming traces are propagated without HttpInstrumentation (#​15732)
  • fix(node): Use fatal level for unhandled rejections in strict mode (#​15720)
  • fix(nuxt): Delete Nuxt server template injection (#​15749)

v9.6.1

Compare Source

v9.6.0

Compare Source

Important Changes
  • feat(tanstackstart): Add @sentry/tanstackstart-react package and make @sentry/tanstackstart package a utility package (#​15629)

    Since TanStack Start is supposed to be a generic framework that supports libraries like React and Solid, the @sentry/tanstackstart SDK package was renamed to @sentry/tanstackstart-react to reflect that the SDK is specifically intended to be used for React TanStack Start applications.
    Note that the TanStack Start SDK is still in alpha status and may be subject to breaking changes in non-major package updates.

Other Changes
  • feat(astro): Accept all vite-plugin options (#​15638)
  • feat(deps): bump @​sentry/webpack-plugin from 3.2.1 to 3.2.2 (#​15627)
  • feat(tanstackstart): Refine initial API (#​15574)
  • fix(core): Ensure fill only patches functions (#​15632)
  • fix(nextjs): Consider pageExtensions when looking for instrumentation file (#​15701)
  • fix(remix): Null-check options (#​15610)
  • fix(sveltekit): Correctly parse angle bracket type assertions for auto instrumentation (#​15578)
  • fix(sveltekit): Guard process variable (#​15605)

Work in this release was contributed by @​angelikatyborska and @​nwalters512. Thank you for your contributions!

v9.5.0

Compare Source

Important Changes

We found some issues with the new feedback screenshot annotation where screenshots are not being generated properly. Due to this issue, we are reverting the feature.

  • Revert "feat(feedback) Allowing annotation via highlighting & masking (#​15484)" (#​15609)
Other Changes
  • Add cloudflare adapter detection and path generation (#​15603)
  • deps(nextjs): Bump rollup to 4.34.9 (#​15589)
  • feat(bun): Automatically add performance integrations (#​15586)
  • feat(replay): Bump rrweb to 2.34.0 (#​15580)
  • fix(browser): Call original function on early return from patched history API (#​15576)
  • fix(nestjs): Copy metadata in custom decorators (#​15598)
  • fix(react-router): Fix config type import (#​15583)
  • fix(remix): Use correct types export for @sentry/remix/cloudflare (#​15599)
  • fix(vue): Attach Pinia state only once per event (#​15588)

Work in this release was contributed by @​msurdi-a8c, @​namoscato, and @​rileyg98. Thank you for your contributions!

v9.4.0

Compare Source

  • feat(core): Add types for logs protocol and envelope (#​15530)
  • feat(deps): Bump @sentry/cli from 2.41.1 to 2.42.2 (#​15510)
  • feat(deps): Bump @sentry/webpack-plugin from 3.1.2 to 3.2.1 (#​15512)
  • feat(feedback) Allowing annotation via highlighting & masking (#​15484)
  • feat(nextjs): Add use client directive to client SDK entrypoints (#​15575)
  • feat(nextjs): Allow silencing of instrumentation warning (#​15555)
  • feat(sveltekit): Ensure AsyncLocalStorage async context strategy is used in Cloudflare Pages (#​15557)
  • fix(cloudflare): Make @cloudflare/workers-types an optional peer dependency (#​15554)
  • fix(core): Don't reverse values in event filters (#​15584)
  • fix(core): Handle normalization of null prototypes correctly (#​15556)
  • fix(nextjs): Only warn on missing onRequestError in version 15 (#​15553)
  • fix(node): Allow for undefined transport to be passed in (#​15560)
  • fix(wasm): Fix wasm integration stacktrace parsing for filename (#​15572)
  • perf(node): Store normalized request for processing (#​15570)

Bundle size 📦

Path Size
@​sentry/browser 23.13 KB
@​sentry/browser - with treeshaking flags 22.92 KB
@​sentry/browser (incl. Tracing) 36.2 KB
@​sentry/browser (incl. Tracing, Replay) 73.38 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.79 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.99 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.91 KB
@​sentry/browser (incl. Feedback) 39.66 KB
@​sentry/browser (incl. sendFeedback) 27.76 KB
@​sentry/browser (incl. FeedbackAsync) 32.54 KB
@​sentry/react 24.95 KB
@​sentry/react (incl. Tracing) 38.08 KB
@​sentry/vue 27.38 KB
@​sentry/vue (incl. Tracing) 37.89 KB
@​sentry/svelte 23.17 KB
CDN Bundle 24.34 KB
CDN Bundle (incl. Tracing) 36.24 KB
CDN Bundle (incl. Tracing, Replay) 71.25 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 76.41 KB
CDN Bundle - uncompressed 71.12 KB
CDN Bundle (incl. Tracing) - uncompressed 107.51 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 218.78 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 231.31 KB
@​sentry/nextjs (client) 39.25 KB
@​sentry/sveltekit (client) 36.61 KB
@​sentry/node 142.14 KB
@​sentry/node - without tracing 95.57 KB
@​sentry/aws-serverless 119.92 KB

v9.3.0

Compare Source

Important Changes

With this release we're publishing two new SDKs in experimental alpha stage:

  • feat(tanstackstart): Add TanStack Start SDK (#​15523)

For details please refer to the README

  • feat(react-router): Add React Router SDK (#​15524)

For details please refer to the README

  • feat(remix): Add support for Hydrogen (#​15450)

This PR adds support for Shopify Hydrogen applications running on MiniOxygen runtime.

Other Changes
  • feat(core): Add forceTransaction to trpc middleware options (#​15519)
  • feat(core): Default filter unactionable error (#​15527)
  • feat(core): Rename inboundFiltersIntegration to eventFiltersIntegration (#​15434)
  • feat(deps): bump @​prisma/instrumentation from 6.2.1 to 6.4.1 (#​15480)
  • feat(react-router): Add build-time config (#​15406)
  • feat(replay): Bump rrweb to 2.33.0 (#​15514)
  • fix(core): Fix allowUrls and denyUrls for linked and aggregate exceptions (#​15521)
  • fix(nextjs): Don't capture devmode server-action redirect errors (#​15485)
  • fix(nextjs): warn about missing onRequestError handler #​15488)
  • fix(nextjs): Prevent wrong culprit from showing up for clientside error events #​15475)
  • fix(nuxt): Ignore 300-400 status codes on app errors in Nuxt (#​15473)
  • fix(react): Add support for cross-usage of React Router instrumentations (#​15283)
  • fix(sveltekit): Guard process check when flushing events (#​15516)

Work in this release was contributed by @​GerryWilko and @​leoambio. Thank you for your contributions!

v9.2.0

Compare Source

Important Changes

This release adds full tracing support for Express v5, and improves tracing support for Nest.js 11 (which uses Express v5) in the Nest.js SDK.

  • feat(sveltekit): Add Support for Cloudflare (#​14672)

This release adds support for deploying SvelteKit applications to Cloudflare Pages.
A docs update with updated instructions will follow shortly.
Until then, you can give this a try by setting up the SvelteKit SDK as usual and then following the instructions outlined in the PR.

Thank you @​SG60 for contributing this feature!

Other Changes
  • feat(core): Add addLink(s) to Sentry span (#​15452)
  • feat(core): Add links to span options (#​15453)
  • feat(deps): Bump @​sentry/webpack-plugin from 2.22.7 to 3.1.2 (#​15328)
  • feat(feedback): Disable Feedback submit & cancel buttons while submitting (#​15408)
  • feat(nextjs): Add experimental flag to not strip origin information from different origin stack frames (#​15418)
  • feat(nuxt): Add enableNitroErrorHandler to server options (#​15444)
  • feat(opentelemetry): Add addLink(s) to span (#​15387)
  • feat(opentelemetry): Add links to span options (#​15403)
  • feat(replay): Expose rrweb recordCrossOriginIframes under _experiments (#​14916)
  • fix(browser): Ensure that performance.measure spans have a positive duration (#​15415)
  • fix(bun): Includes correct sdk metadata (#​15459)
  • fix(core): Add Google gmo error to Inbound Filters (#​15432)
  • fix(core): Ensure http.client span descriptions don't contain query params or fragments (#​15404)
  • fix(core): Filter out unactionable Facebook Mobile browser error (#​15430)
  • fix(nestjs): Pin dependency on @opentelemetry/instrumentation (#​15419)
  • fix(nuxt): Only use filename with file extension from command (#​15445)
  • fix(nuxt): Use SentryNuxtServerOptions type for server init (#​15441)
  • fix(sveltekit): Avoid loading vite config to determine source maps setting (#​15440)
  • ref(profiling-node): Bump chunk interval to 60s (#​15361)

Work in this release was contributed by @​6farer, @​dgavranic and @​SG60. Thank you for your contributions!

Bundle size 📦
Path Size
@​sentry/browser 23.05 KB
@​sentry/browser - with treeshaking flags 22.84 KB
@​sentry/browser (incl. Tracing) 36.13 KB
@​sentry/browser (incl. Tracing, Replay) 73.14 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.6 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.39 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 90.34 KB
@​sentry/browser (incl. Feedback) 40.2 KB
@​sentry/browser (incl. sendFeedback) 27.68 KB
@​sentry/browser (incl. FeedbackAsync) 32.48 KB
@​sentry/react 24.87 KB
@​sentry/react (incl. Tracing) 38.01 KB
@​sentry/vue 27.29 KB
@​sentry/vue (incl. Tracing) 37.81 KB
@​sentry/svelte 23.09 KB
CDN Bundle 24.25 KB
CDN Bundle (incl. Tracing) 36.15 KB
CDN Bundle (incl. Tracing, Replay) 71 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 76.17 KB
CDN Bundle - uncompressed 70.91 KB
CDN Bundle (incl. Tracing) - uncompressed 107.29 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 218.57 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 231.13 KB
@​sentry/nextjs (client) 39.16 KB
@​sentry/sveltekit (client) 36.54 KB
@​sentry/node 129.25 KB
@​sentry/node - without tracing 98.03 KB
@​sentry/aws-serverless 107.45 KB

Configuration

📅 Schedule: Branch creation - "* * 1 * " (UTC), Automerge - " 0-4,22-23 * * 1-5,* * * * 0,6" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 1, 2025
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.3.0 fix(deps): update dependency @sentry/react to v9.4.0 Mar 5, 2025
@renovate renovate bot force-pushed the renovate/sentry-packages branch 2 times, most recently from 4bbc8c7 to 6ab1c4c Compare March 6, 2025 21:01
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.4.0 fix(deps): update dependency @sentry/react to v9.5.0 Mar 6, 2025
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.5.0 fix(deps): update dependency @sentry/react to v9.6.0 Mar 17, 2025
@renovate renovate bot force-pushed the renovate/sentry-packages branch from 6ab1c4c to 92ea531 Compare March 17, 2025 20:06
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.6.0 fix(deps): update dependency @sentry/react to v9.6.1 Mar 19, 2025
@renovate renovate bot force-pushed the renovate/sentry-packages branch 2 times, most recently from 9347c31 to 5bc3853 Compare March 20, 2025 13:58
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.6.1 fix(deps): update dependency @sentry/react to v9.7.0 Mar 20, 2025
@renovate renovate bot force-pushed the renovate/sentry-packages branch from 5bc3853 to f885375 Compare March 21, 2025 13:48
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.7.0 fix(deps): update dependency @sentry/react to v9.8.0 Mar 21, 2025
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.8.0 fix(deps): update dependency @sentry/react to v9.9.0 Mar 24, 2025
@renovate renovate bot force-pushed the renovate/sentry-packages branch 2 times, most recently from c801935 to 28fc4c7 Compare March 27, 2025 21:27
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.9.0 fix(deps): update dependency @sentry/react to v9.10.0 Mar 27, 2025
@renovate renovate bot force-pushed the renovate/sentry-packages branch from 28fc4c7 to 9a9fd46 Compare March 28, 2025 17:42
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.10.0 fix(deps): update dependency @sentry/react to v9.10.1 Mar 28, 2025
@renovate renovate bot force-pushed the renovate/sentry-packages branch from 9a9fd46 to 8780bcd Compare April 3, 2025 12:54
@renovate renovate bot changed the title fix(deps): update dependency @sentry/react to v9.10.1 fix(deps): update dependency @sentry/react to v9.11.0 Apr 3, 2025
Copy link

sonarqubecloud bot commented Apr 3, 2025

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants