Skip to content

fix(deps): update dependency @sentry/node to v9 #2872

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: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 21, 2025

This PR contains the following updates:

Package Change Age Confidence
@sentry/node (source) 8.49.0 -> 9.40.0 age confidence

Release Notes

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

v9.40.0

Compare Source

Important Changes
  • feat(browser): Add debugId sync APIs between web worker and main thread (#​16981)

This release adds two Browser SDK APIs to let the main thread know about debugIds of worker files:

  • webWorkerIntegration({worker}) to be used in the main thread
  • registerWebWorker({self}) to be used in the web worker
// main.js
Sentry.init({...})

const worker = new MyWorker(...);

Sentry.addIntegration(Sentry.webWorkerIntegration({ worker }));

worker.addEventListener('message', e => {...});
// worker.js
Sentry.registerWebWorker({ self });

self.postMessage(...);
  • feat(core): Deprecate logger in favor of debug (#​17040)

The internal SDK logger export from @sentry/core has been deprecated in favor of the debug export. debug only exposes log, warn, and error methods but is otherwise identical to logger. Note that this deprecation does not affect the logger export from other packages (like @sentry/browser or @sentry/node) which is used for Sentry Logging.

import { logger, debug } from '@​sentry/core';

// before
logger.info('This is an info message');

// after
debug.log('This is an info message');
  • feat(node): Add OpenAI integration (#​17022)

This release adds official support for instrumenting OpenAI SDK calls in with Sentry tracing, following OpenTelemetry semantic conventions for Generative AI. It instruments:

  • client.chat.completions.create() - For chat-based completions
  • client.responses.create() - For the responses API
// The integration respects your `sendDefaultPii` option, but you can override the behavior in the integration options

Sentry.init({
  dsn: '__DSN__',
  integrations: [
    Sentry.openAIIntegration({
      recordInputs: true, // Force recording prompts
      recordOutputs: true, // Force recording responses
    }),
  ],
});
Other Changes
  • feat(node-core): Expand @opentelemetry/instrumentation range to cover 0.203.0 (#​17043)
  • fix(cloudflare): Ensure errors get captured from durable objects (#​16838)
  • fix(sveltekit): Ensure server errors from streamed responses are sent (#​17044)

Work in this release was contributed by @​0xbad0c0d3 and @​tommy-gilligan. Thank you for your contributions!

Bundle size 📦

Path Size
@​sentry/browser 23.23 KB
@​sentry/browser - with treeshaking flags 21.82 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.96 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.56 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.37 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.8 KB
@​sentry/browser (incl. FeedbackAsync) 32.58 KB
@​sentry/react 24.94 KB
@​sentry/react (incl. Tracing) 40.64 KB
@​sentry/vue 27.57 KB
@​sentry/vue (incl. Tracing) 40.48 KB
@​sentry/svelte 23.25 KB
CDN Bundle 24.59 KB
CDN Bundle (incl. Tracing) 38.49 KB
CDN Bundle (incl. Tracing, Replay) 73.65 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.99 KB
CDN Bundle - uncompressed 71.72 KB
CDN Bundle (incl. Tracing) - uncompressed 114.12 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.58 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.1 KB
@​sentry/nextjs (client) 42.64 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 165.02 KB
@​sentry/node - without tracing 97.85 KB
@​sentry/aws-serverless 125.35 KB

v9.39.0

Compare Source

Important Changes
  • feat(browser): Add afterStartPageloadSpan hook to improve spanId assignment on web vital spans (#​16893)

This PR adds a new afterStartPageloadSpan lifecycle hook to more robustly assign the correct pageload span ID to web vital spans, replacing the previous unreliable "wait for a tick" approach with a direct callback that fires when the pageload span becomes available.

  • feat(nextjs): Client-side parameterized routes (#​16934)

This PR implements client-side parameterized routes for Next.js by leveraging an injected manifest within the existing app-router instrumentation to automatically parameterize all client-side transactions (e.g. users/123 and users/456 now become become users/:id).

  • feat(node): Drop 401-404 and 3xx status code spans by default (#​16972)

This PR changes the default behavior in the Node SDK to drop HTTP spans with 401-404 and 3xx status codes by default to reduce noise in tracing data.

Other Changes
  • feat(core): Prepend vercel ai attributes with vercel.ai.X (#​16908)
  • feat(nextjs): Add disableSentryWebpackConfig flag (#​17013)
  • feat(nextjs): Build app manifest (#​16851)
  • feat(nextjs): Inject manifest into client for turbopack builds (#​16902)
  • feat(nextjs): Inject manifest into client for webpack builds (#​16857)
  • feat(node-native): Add option to disable event loop blocked detection (#​16919)
  • feat(react-router): Ensure http.server route handling is consistent (#​16986)
  • fix(core): Avoid prolonging idle span when starting standalone span (#​16928)
  • fix(core): Remove side-effect from tracing/errors.ts (#​16888)
  • fix(core): Wrap beforeSendLog in consoleSandbox (#​16968)
  • fix(node-core): Apply correct SDK metadata (#​17014)
  • fix(react-router): Ensure that all browser spans have source=route (#​16984)

Work in this release was contributed by @​janpapenbrock. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser 23.32 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.82 KB
@​sentry/browser (incl. Tracing, Replay) 76.05 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.03 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.65 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.46 KB
@​sentry/browser (incl. Feedback) 39.63 KB
@​sentry/browser (incl. sendFeedback) 27.89 KB
@​sentry/browser (incl. FeedbackAsync) 32.67 KB
@​sentry/react 25.01 KB
@​sentry/react (incl. Tracing) 40.74 KB
@​sentry/vue 27.65 KB
@​sentry/vue (incl. Tracing) 40.56 KB
@​sentry/svelte 23.34 KB
CDN Bundle 24.59 KB
CDN Bundle (incl. Tracing) 38.51 KB
CDN Bundle (incl. Tracing, Replay) 73.67 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79.01 KB
CDN Bundle - uncompressed 71.82 KB
CDN Bundle (incl. Tracing) - uncompressed 114.25 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.76 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.27 KB
@​sentry/nextjs (client) 42.72 KB
@​sentry/sveltekit (client) 39.25 KB
@​sentry/node 163.76 KB
@​sentry/node - without tracing 97.98 KB
@​sentry/aws-serverless 125.47 KB

v9.38.0

Compare Source

Important Changes

This release publishes the @sentry/node-native SDK.

Other Changes
  • feat(core): Introduce debug to replace logger (#​16906)
  • fix(browser): Guard nextHopProtocol when adding resource spans (#​16900)

Bundle size 📦

Path Size
@​sentry/browser 23.32 KB
@​sentry/browser - with treeshaking flags 21.82 KB
@​sentry/browser (incl. Tracing) 38.82 KB
@​sentry/browser (incl. Tracing, Replay) 76.05 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.12 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.63 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.46 KB
@​sentry/browser (incl. Feedback) 39.61 KB
@​sentry/browser (incl. sendFeedback) 27.89 KB
@​sentry/browser (incl. FeedbackAsync) 32.68 KB
@​sentry/react 25.01 KB
@​sentry/react (incl. Tracing) 40.73 KB
@​sentry/vue 27.65 KB
@​sentry/vue (incl. Tracing) 40.56 KB
@​sentry/svelte 23.34 KB
CDN Bundle 24.57 KB
CDN Bundle (incl. Tracing) 38.49 KB
CDN Bundle (incl. Tracing, Replay) 73.61 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.97 KB
CDN Bundle - uncompressed 71.77 KB
CDN Bundle (incl. Tracing) - uncompressed 114.15 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.65 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.16 KB
@​sentry/nextjs (client) 42.32 KB
@​sentry/sveltekit (client) 39.26 KB
@​sentry/node 163.65 KB
@​sentry/node - without tracing 97.95 KB
@​sentry/aws-serverless 125.4 KB

v9.37.0

Compare Source

Important Changes
  • feat(nuxt): Parametrize SSR routes (#​16843)

    When requesting dynamic or catch-all routes in Nuxt, those will now be shown as parameterized routes in Sentry.
    For example, /users/123 will be shown as /users/:userId() in Sentry. This will make it easier to identify patterns and make grouping easier.

Other Changes
  • feat(astro): Deprecate passing runtime config to astro integration (#​16839)
  • feat(browser): Add beforeStartNavigationSpan lifecycle hook (#​16863)
  • feat(browser): Detect redirects when emitting navigation spans (#​16324)
  • feat(cloudflare): Add option to opt out of capturing errors in wrapRequestHandler (#​16852)
  • feat(feedback): Return the eventId into the onSubmitSuccess callback (#​16835)
  • feat(vercel-edge): Do not vendor in all OpenTelemetry dependencies (#​16841)
  • fix(browser): Ensure standalone CLS and LCP spans have traceId of pageload span (#​16864)
  • fix(nextjs): Use value injection loader on instrumentation-client.ts|js (#​16855)
  • fix(sveltekit): Avoid capturing redirect() calls as errors in Cloudflare (#​16853)
  • docs(nextjs): Update deleteSourcemapsAfterUpload jsdoc default value (#​16867)

Work in this release was contributed by @​zachkirsch. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser 23.25 KB
@​sentry/browser - with treeshaking flags 22.01 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.97 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.14 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.56 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.39 KB
@​sentry/browser (incl. Feedback) 39.54 KB
@​sentry/browser (incl. sendFeedback) 27.82 KB
@​sentry/browser (incl. FeedbackAsync) 32.6 KB
@​sentry/react 24.99 KB
@​sentry/react (incl. Tracing) 40.67 KB
@​sentry/vue 27.6 KB
@​sentry/vue (incl. Tracing) 40.49 KB
@​sentry/svelte 23.27 KB
CDN Bundle 24.77 KB
CDN Bundle (incl. Tracing) 38.7 KB
CDN Bundle (incl. Tracing, Replay) 73.8 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79.13 KB
CDN Bundle - uncompressed 72.34 KB
CDN Bundle (incl. Tracing) - uncompressed 114.94 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 226.2 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.71 KB
@​sentry/nextjs (client) 42.27 KB
@​sentry/sveltekit (client) 39.17 KB
@​sentry/node 163.92 KB
@​sentry/node - without tracing 98.23 KB
@​sentry/aws-serverless 125.68 KB

v9.36.0

Compare Source

Important Changes
  • feat(node-core): Add node-core SDK (#​16745)

This release adds a new SDK @sentry/node-core which ships without any OpenTelemetry instrumententation out of the box. All OpenTelemetry dependencies are peer dependencies and OpenTelemetry has to be set up manually.

Use @sentry/node-core when:

  • You already have OpenTelemetry set up
  • You need custom OpenTelemetry configuration
  • You want minimal dependencies
  • You need fine-grained control over instrumentation

Use @sentry/node when:

  • You want an automatic setup
  • You're new to OpenTelemetry
  • You want sensible defaults
  • You prefer convenience over control
  • feat(node): Deprecate ANR integration (#​16832)

The ANR integration has been deprecated and will be removed in future versions. Use eventLoopBlockIntegration from @sentry/node-native instead.

  • feat(replay): Add _experiments.ignoreMutations option (#​16816)

This replay option allows to configure a selector list of elements to not capture mutations for.

Sentry.replayIntegration({
  _experiments: {
    ignoreMutations: ['.dragging'],
  },
});
Other changes
  • feat(deps): bump @​prisma/instrumentation from 6.10.1 to 6.11.1 (#​16833)
  • feat(nextjs): Add flag for suppressing router transition warning (#​16823)
  • feat(nextjs): Automatically skip middleware requests for tunnel route (#​16812)
  • feat(replay): Export compression worker from @sentry/replay-internal (#​16794)
  • fix(browser): Avoid 4xx response for succesful diagnoseSdkConnectivity request (#​16840)
  • fix(browser): Guard against undefined nextHopProtocol (#​16806)
  • fix(cloudflare): calculate retries not attempts (#​16834)
  • fix(nuxt): Parametrize routes on the server-side (#​16785)
  • fix(vue): Make pageload span handling more reliable (#​16799)

Work in this release was contributed by @​Spice-King and @​stayallive. Thank you for your contributions!

Bundle size 📦

Path Size
@​sentry/browser 23.42 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 38.69 KB
@​sentry/browser (incl. Tracing, Replay) 75.99 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 69.24 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.61 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.48 KB
@​sentry/browser (incl. Feedback) 39.79 KB
@​sentry/browser (incl. sendFeedback) 28.02 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.16 KB
@​sentry/react (incl. Tracing) 40.63 KB
@​sentry/vue 27.71 KB
@​sentry/vue (incl. Tracing) 40.44 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.9 KB
CDN Bundle (incl. Tracing) 38.7 KB
CDN Bundle (incl. Tracing, Replay) 73.84 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79.17 KB
CDN Bundle - uncompressed 72.75 KB
CDN Bundle (incl. Tracing) - uncompressed 115.01 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 226.63 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 239.15 KB
@​sentry/nextjs (client) 42.24 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 158.05 KB
@​sentry/node - without tracing 96.48 KB
@​sentry/aws-serverless 121.7 KB

v9.35.0

Compare Source

  • feat(browser): Add ElementTiming instrumentation and spans (#​16589)
  • feat(browser): Export Context and Contexts types (#​16763)
  • feat(cloudflare): Add user agent to cloudflare spans (#​16793)
  • feat(node): Add eventLoopBlockIntegration (#​16709)
  • feat(node): Export server-side feature flag integration shims (#​16735)
  • feat(node): Update vercel ai integration attributes (#​16721)
  • fix(astro): Handle errors in middlewares better (#​16693)
  • fix(browser): Ensure explicit parentSpan is considered (#​16776)
  • fix(node): Avoid using dynamic require for fastify integration (#​16789)
  • fix(nuxt): Add @sentry/cloudflare as optional peerDependency (#​16782)
  • fix(nuxt): Ensure order of plugins is consistent (#​16798)
  • fix(nestjs): Fix exception handling in @Cron decorated tasks (#​16792)

Work in this release was contributed by @​0xbad0c0d3 and @​alSergey. Thank you for your contributions!

v9.34.0

Compare Source

Important Changes
  • feat(nuxt): Add Cloudflare Nitro plugin (#​15597)

    A Nitro plugin for @sentry/nuxt which initializes Sentry when deployed to Cloudflare (cloudflare-pages preset).

    1. Remove the previous server config file: sentry.server.config.ts

    2. Add a plugin in server/plugins (e.g. server/plugins/sentry-cloudflare-setup.ts)

    3. Add this code in your plugin file

      // server/plugins/sentry-cloudflare-setup.ts (filename does not matter)
      import { sentryCloudflareNitroPlugin } from '@​sentry/nuxt/module/plugins';
      
      export default defineNitroPlugin(
        sentryCloudflareNitroPlugin({
          dsn: 'https://dsn',
          tracesSampleRate: 1.0,
        }),
      );

      or with access to nitroApp:

      // server/plugins/sentry-cloudflare-setup.ts (filename does not matter)
      import { sentryCloudflareNitroPlugin } from '@​sentry/nuxt/module/plugins';
      
      export default defineNitroPlugin(sentryCloudflareNitroPlugin((nitroApp: NitroApp) => {
        // You can access nitroApp here if needed
        return  ({
          dsn: 'https://dsn',
          tracesSampleRate: 1.0,
        })
      }))
Other Changes
  • feat(browser): Record standalone LCP spans (#​16591)
  • fix(nuxt): Only add OTel alias in dev mode (#​16756)

Bundle size 📦

Path Size
@​sentry/browser 23.42 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 38.11 KB
@​sentry/browser (incl. Tracing, Replay) 75.35 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.61 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.01 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.81 KB
@​sentry/browser (incl. Feedback) 39.79 KB
@​sentry/browser (incl. sendFeedback) 28.02 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.16 KB
@​sentry/react (incl. Tracing) 40.04 KB
@​sentry/vue 27.69 KB
@​sentry/vue (incl. Tracing) 39.9 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.9 KB
CDN Bundle (incl. Tracing) 38.19 KB
CDN Bundle (incl. Tracing, Replay) 73.24 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.57 KB
CDN Bundle - uncompressed 72.75 KB
CDN Bundle (incl. Tracing) - uncompressed 113.89 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.27 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 237.8 KB
@​sentry/nextjs (client) 41.64 KB
@​sentry/sveltekit (client) 38.56 KB
@​sentry/node 150.68 KB
@​sentry/node - without tracing 96.32 KB
@​sentry/aws-serverless 121.48 KB

v9.33.0

Compare Source

Important Changes
  • feat: Add opt-in vercelAiIntegration to cloudflare & vercel-edge (#​16732)

The vercelAiIntegration is now available as opt-in for the Cloudflare and the Next.js SDK for Vercel Edge.
To use it, add the integration in Sentry.init

Sentry.init({
  tracesSampleRate: 1.0,
  integrations: [Sentry.vercelAIIntegration()],
});

And enable telemetry for Vercel AI calls

const result = await generateText({
  model: openai('gpt-4o'),
  experimental_telemetry: {
    isEnabled: true,
  },
});
  • feat(node): Add postgresjs instrumentation (#​16665)

The Node.js SDK now includes instrumentation for Postgres.js.

  • feat(node): Use diagnostics channel for Fastify v5 error handling (#​16715)

If you're on Fastify v5, you no longer need to call setupFastifyErrorHandler. It is done automatically by the node SDK. Older versions still rely on calling setupFastifyErrorHandler.

Other Changes
  • feat(cloudflare): Allow interop with OpenTelemetry emitted spans (#​16714)
  • feat(cloudflare): Flush after waitUntil (#​16681)
  • fix(nextjs): Remove ai from default server external packages (#​16736)

Work in this release was contributed by @​0xbad0c0d3. Thank you for your contribution!

v9.32.0

Compare Source

Important Changes
  • feat(browser): Add CLS sources to span attributes (#​16710)

Enhances CLS (Cumulative Layout Shift) spans by adding attributes detailing the elements that caused layout shifts.

  • feat(cloudflare): Add instrumentWorkflowWithSentry to instrument workflows (#​16672)

We've added support for Cloudflare Workflows, enabling comprehensive tracing for your workflow runs. This integration uses the workflow's instanceId as the Sentry trace_id and for sampling, linking all steps together. You'll now be able to see full traces, including retries with exponential backoff.

  • feat(pino-transport): Add functionality to send logs to sentry (#​16667)

Adds the ability to send logs to Sentry via a pino transport.

Other Changes
  • feat(nextjs): Expose top level buildTime errorHandler option (#​16718)
  • feat(node): update pipeline spans to use agent naming (#​16712)
  • feat(deps): bump @​prisma/instrumentation from 6.9.0 to 6.10.1 (#​16698)
  • fix(sveltekit): Export logger from sveltekit worker (#​16716)
  • fix(google-cloud-serverless): Make CloudEventsContext compatible with CloudEvent (#​16705)
  • fix(nextjs): Stop injecting release value when create release options is set to false (#​16695)
  • fix(node): account for Object. syntax with local variables matching (#​16702)
  • fix(nuxt): Add alias for @opentelemetry/resources (#​16727)

Work in this release was contributed by @​flaeppe. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser 23.42 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 37.93 KB
@​sentry/browser (incl. Tracing, Replay) 75.18 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.42 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 79.83 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.63 KB
@​sentry/browser (incl. Feedback) 39.79 KB
@​sentry/browser (incl. sendFeedback) 28.02 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.16 KB
@​sentry/react (incl. Tracing) 39.88 KB
@​sentry/vue 27.69 KB
@​sentry/vue (incl. Tracing) 39.75 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.9 KB
CDN Bundle (incl. Tracing) 38 KB
CDN Bundle (incl. Tracing, Replay) 73.08 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.41 KB
CDN Bundle - uncompressed 72.75 KB
CDN Bundle (incl. Tracing) - uncompressed 112.71 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 224.1 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 236.62 KB
@​sentry/nextjs (client) 41.48 KB
@​sentry/sveltekit (client) 38.41 KB
@​sentry/node 147.34 KB
@​sentry/node - without tracing 96.32 KB
@​sentry/aws-serverless 121.48 KB

v9.31.0

Compare Source

Important Changes
  • feat(nextjs): Add option for auto-generated random tunnel route (#​16626)

Adds an option to automatically generate a random tunnel route for the Next.js SDK. This helps prevent ad blockers and other tools from blocking Sentry requests by using a randomized path instead of the predictable /monitoring endpoint.

  • feat(core): Allow to pass scope & client to getTraceData (#​16633)

Adds the ability to pass custom scope and client parameters to the getTraceData function, providing more flexibility when generating trace data for distributed tracing.

Other Changes
  • feat(core): Add support for x-forwarded-host and x-forwarded-proto headers (#​16687)
  • deps: Remove unused @sentry/opentelemetry dependency (#​16677)
  • deps: Update all bundler plugin instances to latest & allow caret ranges (#​16641)
  • feat(deps): Bump @​prisma/instrumentation from 6.8.2 to 6.9.0 (#​16608)
  • feat(flags): add node support for generic featureFlagsIntegration and move utils to core (#​16585)
  • feat(flags): capture feature flag evaluations on spans (#​16485)
  • feat(pino): Add initial package for @sentry/pino-transport (#​16652)
  • fix: Wait for the correct clientWidth/clientHeight when showing Feedback Screenshot previews (#​16648)
  • fix(browser): Remove usage of Array.at() method (#​16647)
  • fix(core): Improve safeJoin usage in console logging integration (#​16658)
  • fix(google-cloud-serverless): Make CloudEvent type compatible (#​16661)
  • fix(nextjs): Fix lookup of instrumentation-client.js file (#​16637)
  • fix(node): Ensure graphql errors result in errored spans (#​16678)

Bundle size 📦

Path Size
@​sentry/browser 23.42 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 37.89 KB
@​sentry/browser (incl. Tracing, Replay) 75.13 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.38 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 79.78 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.58 KB
@​sentry/browser (incl. Feedback) 39.79 KB
@​sentry/browser (incl. sendFeedback) 28.02 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.16 KB
@​sentry/react (incl. Tracing) 39.84 KB
@​sentry/vue 27.69 KB
@​sentry/vue (incl. Tracing) 39.71 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.9 KB
CDN Bundle (incl. Tracing) 37.97 KB
CDN Bundle (incl. Tracing, Replay) 73.03 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.38 KB
CDN Bundle - uncompressed 72.75 KB
CDN Bundle (incl. Tracing) - uncompressed 112.63 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 224.01 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 236.53 KB
@​sentry/nextjs (client) 41.44 KB
@​sentry/sveltekit (client) 38.37 KB
@​sentry/node 147.29 KB
@​sentry/node - without tracing 96.27 KB
@​sentry/aws-serverless 121.42 KB

v9.30.0

Compare Source

  • feat(nextjs): Add URL to tags of server components and generation functions issues (#​16500)
  • feat(nextjs): Ensure all packages we auto-instrument are externalized (#​16552)
  • feat(node): Automatically enable vercelAiIntegration when ai module is detected (#​16565)
  • feat(node): Ensure modulesIntegration works in more environments (#​16566)
  • feat(core): Don't gate user on logs with sendDefaultPii (#​16527)
  • feat(browser): Add detail to measure spans and add regression tests (#​16557)
  • feat(node): Update Vercel AI span attributes (#​16580)
  • fix(opentelemetry): Ensure only orphaned spans of sent spans are sent (#​16590)
Bundle size 📦
Path Size
@​sentry/browser 23.43 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 37.88 KB
@​sentry/browser (incl. Tracing, Replay) 75.08 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.33 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 79.74 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.52 KB
@​sentry/browser (incl. Feedback) 39.77 KB
@​sentry/browser (incl. sendFeedback) 28.03 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.15 KB
@​sentry/react (incl. Tracing) 39.82 KB
@​sentry/vue 27.7 KB
@​sentry/vue (incl. Tracing) 39.7 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.88 KB
CDN Bundle (incl. Tracing) 38.05 KB
CDN Bundle (incl. Tracing, Replay) 73.03 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.32 KB
CDN Bundle - uncompressed 72.74 KB
CDN Bundle (incl. Tracing) - uncompressed 112.6 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 223.9 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 236.42 KB
@​sentry/nextjs (client) 41.44 KB
@​sentry/sveltekit (client) 38.36 KB
@​sentry/node 147.12 KB
@​sentry/node - without tracing 96.09 KB
@​sentry/aws-serverless 121.25 KB

v9.29.0

Compare Source

v9.28.1

Compare Source

  • feat(deps): Bump @​sentry/cli from 2.45.0 to 2.46.0 (#​16516)
  • fix(nextjs): Avoid tracing calls to symbolication server on dev (#​16533)
  • fix(sveltekit): Add import attribute for node exports (#​16528)

Work in this release was contributed by @​eltigerchino. Thank you for your contribution!

Bundle size 📦

| Path | Size


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 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 21, 2025
Copy link
Contributor

github-actions bot commented Mar 21, 2025

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@graphql-inspector/action 5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c npm ↗︎ unpkg ↗︎
@graphql-inspector/cli 5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c npm ↗︎ unpkg ↗︎
@graphql-inspector/audit-command 5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c npm ↗︎ unpkg ↗︎
@graphql-inspector/coverage-command 6.1.3-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c npm ↗︎ unpkg ↗︎
@graphql-inspector/diff-command 5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c npm ↗︎ unpkg ↗︎
@graphql-inspector/introspect-command 5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c npm ↗︎ unpkg ↗︎
@graphql-inspector/similar-command 5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c npm ↗︎ unpkg ↗︎
@graphql-inspector/validate-command 5.0.9-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c npm ↗︎ unpkg ↗︎
@graphql-inspector/core 6.3.0-alpha-20250717192725-1121dbb155561f9714443100745cea88216a257c npm ↗︎ unpkg ↗︎

Copy link
Contributor

github-actions bot commented Mar 21, 2025

💻 Website Preview

The latest changes are available as preview in: https://pr-2872.graphql-inspector.pages.dev

@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from aea1855 to c1b2065 Compare March 21, 2025 11:41
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from c1b2065 to b72f686 Compare March 24, 2025 19:01
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from b72f686 to b3288de Compare March 27, 2025 22:32
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from b3288de to b209014 Compare March 28, 2025 16:16
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from b209014 to 8536389 Compare April 3, 2025 15:45
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 8536389 to c6ae297 Compare April 8, 2025 17:31
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from c6ae297 to 2d6dc39 Compare April 16, 2025 15:05
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 2d6dc39 to 8684c2a Compare April 23, 2025 19:04
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 8684c2a to 432b786 Compare April 29, 2025 19:33
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 432b786 to b27dab2 Compare May 7, 2025 15:07
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from b27dab2 to 905ae71 Compare May 7, 2025 20:38
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 905ae71 to ff27f30 Compare May 8, 2025 17:07
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from ff27f30 to 3396708 Compare May 13, 2025 12:53
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 10a8da6 to 2e0c663 Compare June 10, 2025 17:00
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 2e0c663 to 94028ee Compare June 11, 2025 12:17
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 94028ee to 519692f Compare June 15, 2025 11:51
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 519692f to 66d05e5 Compare June 17, 2025 11:57
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 66d05e5 to 773ab5e Compare June 23, 2025 20:33
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 773ab5e to 400ba67 Compare June 25, 2025 14:39
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 400ba67 to a6fae54 Compare June 27, 2025 10:37
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from a6fae54 to 85f2259 Compare July 1, 2025 11:39
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 85f2259 to 9e16b77 Compare July 4, 2025 12:58
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 9e16b77 to 66d4b50 Compare July 9, 2025 12:52
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 66d4b50 to e9c97c4 Compare July 10, 2025 17:41
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from e9c97c4 to 7fbef57 Compare July 11, 2025 14:33
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 7fbef57 to daa7226 Compare July 15, 2025 19:29
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