Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 13, 2024

This PR contains the following updates:

Package Change Age Confidence
@sentry/core (source) ^7.119.0 -> ^10.8.0 age confidence
@sentry/node (source) ^7.119.0 -> ^10.8.0 age confidence
@sentry/profiling-node (source) 7.119.0 -> 10.8.0 age confidence
@sentry/utils (source) ^7.119.0 -> ^8.55.0 age confidence
@sentry/vue (source) ^7.119.0 -> ^10.8.0 age confidence
@sentry/webpack-plugin (source) 2.22.3 -> 4.2.0 age confidence

Release Notes

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

v10.8.0

Compare Source

Important Changes
  • feat(sveltekit): Add Compatibility for builtin SvelteKit Tracing (#​17423)

    This release makes the @sentry/sveltekit SDK compatible with SvelteKit's native observability support introduced in SvelteKit version 2.31.0.
    If you enable both, instrumentation and tracing, the SDK will now initialize early enough to set up additional instrumentation like database queries and it will pick up spans emitted from SvelteKit.

    We will follow up with docs how to set up the SDK soon.
    For now, If you're on SvelteKit version 2.31.0 or newer, you can easily opt into the new feature:

    1. Enable experimental tracing and instrumentation support in svelte.config.js:

    2. Move your Sentry.init() call from src/hooks.server.(js|ts) to the new instrumentation.server.(js|ts) file:

      // instrumentation.server.ts
      import * as Sentry from '@​sentry/sveltekit';
      
      Sentry.init({
        dsn: '...',
        // rest of your config
      });

      The rest of your Sentry config in hooks.server.ts (sentryHandle and handleErrorWithSentry) should stay the same.

    If you prefer to stay on the hooks-file based config for now, the SDK will continue to work as previously.

    Thanks to the Svelte team and @​elliott-with-the-longest-name-on-github for implementing observability support and for reviewing our PR!

Other Changes
  • fix(react): Avoid multiple name updates on navigation spans (#​17438)
Internal Changes
  • test(profiling): Add tests for current state of profiling (#​17470)

v10.7.0

Compare Source

Important Changes
  • feat(cloudflare): Add instrumentPrototypeMethods option to instrument RPC methods for DurableObjects (#​17424)

By default, Sentry.instrumentDurableObjectWithSentry will not wrap any RPC methods on the prototype. To enable wrapping for RPC methods, set instrumentPrototypeMethods to true or, if performance is a concern, a list of only the methods you want to instrument:

class MyDurableObjectBase extends DurableObject<Env> {
  method1() {
    // ...
  }

  method2() {
    // ...
  }

  method3() {
    // ...
  }
}
// Export your named class as defined in your wrangler config
export const MyDurableObject = Sentry.instrumentDurableObjectWithSentry(
  (env: Env) => ({
    dsn: "https://ac49b7af3017c458bd12dab9b3328bfc@o4508482761982032.ingest.de.sentry.io/4508482780987481",
    tracesSampleRate: 1.0,
    instrumentPrototypeMethods: ['method1', 'method3'],
  }),
  MyDurableObjectBase,
);

v10.6.0

Compare Source

Important Changes
  • feat(node): Add Anthropic AI integration (#​17348)

This release adds support for automatically tracing Anthropic AI SDK requests, providing better observability for AI-powered applications.

  • fix(core): Instrument invoke_agent root span, and support Vercel ai v5 (#​17395)

This release makes the Sentry vercelAiIntegration compatible with version 5 of Vercel ai.

The Sentry Nuxt SDK is now considered stable and no longer in beta!

Other Changes
  • feat(astro): Align options with shared build time options type (#​17396)
  • feat(aws): Add support for automatic wrapping in ESM (#​17407)
  • feat(node): Add an instrumentation interface for Hono (#​17366)
  • fix(browser): Use DedicatedWorkerGlobalScope global object type in registerWebWorker (#​17447)
  • fix(core): Only consider ingest endpoint requests when checking isSentryRequestUrl (#​17393)
  • fix(node): Fix preloading of instrumentation (#​17403)
Internal Changes
  • chore: Add external contributor to CHANGELOG.md (#​17449)
  • chore(deps): bump astro from 4.16.18 to 4.16.19 in /dev-packages/e2e-tests/test-applications/astro-4 (#​17434)
  • test(e2e/firebase): Fix firebase e2e test failing due to outdated rules file (#​17448)
  • test(nextjs): Fix canary tests (#​17416)
  • test(nuxt): Don't rely on flushing for lowQualityTransactionFilter (#​17406)
  • test(solidstart): Don't rely on flushing for lowQualityTransactionFilter (#​17408)

v10.5.0

Compare Source

Internal Changes
  • chore(repo): Adjust "Publishing a Release" document to include internal changes section in changelog (#​17374)
  • test(aws): Run E2E tests with AWS SAM (#​17367)
  • test(node): Add tests for full http.server span attribute coverage (#​17373)

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

Bundle size 📦

Path Size
@​sentry/browser 23.59 KB
@​sentry/browser - with treeshaking flags 22.2 KB
@​sentry/browser (incl. Tracing) 38.94 KB
@​sentry/browser (incl. Tracing, Replay) 76.16 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.24 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.75 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.57 KB
@​sentry/browser (incl. Feedback) 39.87 KB
@​sentry/browser (incl. sendFeedback) 28.13 KB
@​sentry/browser (incl. FeedbackAsync) 32.92 KB
@​sentry/react 25.27 KB
@​sentry/react (incl. Tracing) 40.88 KB
@​sentry/vue 27.97 KB
@​sentry/vue (incl. Tracing) 40.72 KB
@​sentry/svelte 23.62 KB
CDN Bundle 25.06 KB
CDN Bundle (incl. Tracing) 38.82 KB
CDN Bundle (incl. Tracing, Replay) 74.04 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79.36 KB
CDN Bundle - uncompressed 73.2 KB
CDN Bundle (incl. Tracing) - uncompressed 114.83 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 226.44 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.75 KB
@​sentry/nextjs (client) 42.86 KB
@​sentry/sveltekit (client) 39.38 KB
@​sentry/node-core 46.86 KB
@​sentry/node 143.58 KB
@​sentry/node - without tracing 90.08 KB
@​sentry/aws-serverless 101.24 KB

v10.4.0

Compare Source

Important Changes
  • fix(browser): Ensure IP address is only inferred by Relay if sendDefaultPii is true

This release includes a fix for a behaviour change
that was originally introduced with v9 of the SDK: User IP Addresses should only be added to Sentry events automatically,
if sendDefaultPii was set to true.

However, the change in v9 required further internal adjustment, which should have been included in v10 of the SDK.
Unfortunately, the change did not make it into the initial v10 version but is now applied with 10.4.0.
There is no API breakage involved and hence it is safe to update.
However, after updating the SDK, events (errors, traces, replays, etc.) sent from the browser, will only include
user IP addresses, if you set sendDefaultPii: true in your Sentry.init options.

We apologize for any inconvenience caused!

  • feat(node): Add ignoreStaticAssets (#​17370)

This release adds a new option to httpIntegration to ignore requests for static assets (e.g. favicon.xml or robots.txt). The option defaults to true, meaning that going forward, such requests will not be traced by default. You can still enable tracing for these requests by setting the option to false:

Sentry.init({
  integrations: [
    Sentry.httpIntegration({
      // defaults to true, set to false to enable traces for static assets
      ignoreStaticAssets: false,
    }),
  ],
});
Other Changes
  • fix(nuxt): Do not drop parametrized routes (#​17357)
Internal Changes
  • ref(node): Split up incoming & outgoing http handling (#​17358)
  • test(node): Enable additionalDependencies in integration runner (#​17361)

Bundle size 📦

Path Size
@​sentry/browser 23.59 KB
@​sentry/browser - with treeshaking flags 22.2 KB
@​sentry/browser (incl. Tracing) 38.94 KB
@​sentry/browser (incl. Tracing, Replay) 76.16 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.24 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.75 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.57 KB
@​sentry/browser (incl. Feedback) 39.87 KB
@​sentry/browser (incl. sendFeedback) 28.13 KB
@​sentry/browser (incl. FeedbackAsync) 32.92 KB
@​sentry/react 25.27 KB
@​sentry/react (incl. Tracing) 40.88 KB
@​sentry/vue 27.97 KB
@​sentry/vue (incl. Tracing) 40.72 KB
@​sentry/svelte 23.62 KB
CDN Bundle 25.06 KB
CDN Bundle (incl. Tracing) 38.82 KB
CDN Bundle (incl. Tracing, Replay) 74.04 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79.36 KB
CDN Bundle - uncompressed 73.2 KB
CDN Bundle (incl. Tracing) - uncompressed 114.83 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 226.44 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.75 KB
@​sentry/nextjs (client) 42.86 KB
@​sentry/sveltekit (client) 39.38 KB
@​sentry/node-core 46.69 KB
@​sentry/node 143.39 KB
@​sentry/node - without tracing 89.89 KB
@​sentry/aws-serverless 101.05 KB

v10.3.0

Compare Source

  • 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)

v10.2.0

Compare Source

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 '@&#8203;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)

The startTrace option is deprecated and will be removed in a future major version. If you want to disable tracing, set SENTRY_TRACES_SAMPLE_RATE to 0.0. instead. As of today, the flag does not affect traces anymore.

Other Changes

v10.1.0

Compare Source

  • feat(nuxt): Align build-time options to follow bundler plugins structure (#​17255)
  • fix(browser-utils): Ensure web vital client hooks unsubscribe correctly (#​17272)
  • fix(browser): Ensure request from diagnoseSdkConnectivity doesn't create span (#​17280)

v10.0.0

Compare Source

Version 10.0.0 marks a release of the Sentry JavaScript SDKs that contains breaking changes. The goal of this release is to primarily upgrade the underlying OpenTelemetry dependencies to v2 with minimal breaking changes.

How To Upgrade

Please carefully read through the migration guide in the Sentry docs on how to upgrade from version 9 to version 10. Make sure to select your specific platform/framework in the top left corner: https://docs.sentry.io/platforms/javascript/migration/v9-to-v10/

A comprehensive migration guide outlining all changes can be found within the Sentry JavaScript SDK Repository: https://github.com/getsentry/sentry-javascript/blob/develop/MIGRATION.md

Breaking Changes
  • feat!: Bump to OpenTelemetry v2 (#​16872)
  • feat(browser)!: Remove FID web vital collection (#​17076)
  • feat(core)!: Remove BaseClient (#​17071)
  • feat(core)!: Remove enableLogs and beforeSendLog experimental options (#​17063)
  • feat(core)!: Remove hasTracingEnabled (#​17072)
  • feat(core)!: Remove deprecated logger (#​17061)
  • feat(replay)!: Promote _experiments.autoFlushOnFeedback option as default (#​17220)
  • chore(deps)!: Bump bundler plugins to v4 (#​17089)
Other Changes
  • feat(astro): Implement Request Route Parametrization for Astro 5 (#​17105)
  • feat(astro): Parametrize routes on client-side (#​17133)
  • feat(aws): Add SentryNodeServerlessSDKv10 v10 AWS Lambda Layer (#​17069)
  • feat(aws): Create unified lambda layer for ESM and CJS (#​17012)
  • feat(aws): Detect SDK source for AWS Lambda layer (#​17128)
  • feat(core): Add missing openai tool calls attributes (#​17226)
  • feat(core): Add shared flushIfServerless function (#​17177)
  • feat(core): Implement strictTraceContinuation (#​16313)
  • feat(core): MCP server instrumentation without breaking Miniflare (#​16817)
  • feat(deps): bump @​prisma/instrumentation from 6.11.1 to 6.12.0 (#​17117)
  • feat(meta): Unify detection of serverless environments and add Cloud Run (#​17168)
  • feat(nestjs): Switch to OTel core instrumentation (#​17068)
  • feat(node-native): Upgrade @sentry-internal/node-native-stacktrace to 0.2.2 (#​17207)
  • feat(node): Add shouldHandleError option to fastifyIntegration (#​16845)
  • feat(node): Add firebase integration (#​16719)
  • feat(node): Instrument stream responses for openai (#​17110)
  • feat(react-router): Add createSentryHandleError (#​17235)
  • feat(react-router): Automatically flush on serverless for loaders/actions (#​17234)
  • feat(react-router): Automatically flush on Vercel for request handlers (#​17232)
  • fix(astro): Construct parametrized route during runtime (#​17190)
  • fix(aws): Add layer build output to nx cache (#​17148)
  • fix(aws): Fix path to packages directory (#​17112)
  • fix(aws): Resolve all Sentry packages to local versions in layer build (#​17106)
  • fix(aws): Use file link in dependency version (#​17111)
  • fix(cloudflare): Allow non uuid workflow instance IDs (#​17121)
  • fix(cloudflare): Avoid turning DurableObject sync methods into async (#​17184)
  • fix(core): Fix OpenAI SDK private field access by binding non-instrumented fns (#​17163)
  • fix(core): Fix operation name for openai responses API (#​17206)
  • fix(core): Update ai.response.object to gen_ai.response.object (#​17153)
  • fix(nextjs): Flush in route handlers (#​17223)
  • fix(nextjs): Handle async params in url extraction (#​17162)
  • fix(nextjs): Update stackframe calls for next v15.5 (#​17156)
  • fix(node): Add mechanism to fastifyIntegration error handler (#​17208)
  • fix(node): Ensure tool errors for vercelAiIntegration have correct trace connected (#​17132)
  • fix(node): Fix exports for openai instrumentation (#​17238)
  • fix(node): Handle stack traces with data URI filenames (#​17218)
  • fix(react): Memoize wrapped component to prevent rerenders (#​17230)
  • fix(remix): Ensure source maps upload fails silently if Sentry CLI fails (#​17082)
  • fix(replay): Fix re-sampled sessions after a click (#​17008)
  • fix(svelte): Do not insert preprocess code in script module in Svelte 5 (#​17114)
  • fix(sveltekit): Align error status filtering and mechanism in handleErrorWithSentry (#​17157)

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

v9.46.0

Compare Source

  • feat(v9/node): Capture SystemError context and remove paths from message (#​17394)
  • fix(v9/mcp): capture prompt results and add defensive edge cases for transport instrumentation (#​17401)
  • fix(v9/nuxt): Do not drop parametrized routes (#​17357) (#​17359)
Bundle size 📦
Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.94 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.98 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.53 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.34 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.81 KB
@​sentry/browser (incl. FeedbackAsync) 32.59 KB
@​sentry/react 24.95 KB
@​sentry/react (incl. Tracing) 40.64 KB
@​sentry/vue 27.58 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.63 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.97 KB
CDN Bundle - uncompressed 71.73 KB
CDN Bundle (incl. Tracing) - uncompressed 114.12 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.6 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.11 KB
@​sentry/nextjs (client) 42.64 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 165.4 KB
@​sentry/node - without tracing 98.16 KB
@​sentry/aws-serverless 125.65 KB

v9.45.0

Compare Source

  • feat(v9/nuxt): Do not inject trace meta-tags on cached HTML pages (#​17305) (#​17319)
  • fix(v9/node): Assign default export of openai to the instrumented fn (#​17353)

Bundle size 📦

Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.94 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.98 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.53 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.34 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.81 KB
@​sentry/browser (incl. FeedbackAsync) 32.59 KB
@​sentry/react 24.95 KB
@​sentry/react (incl. Tracing) 40.64 KB
@​sentry/vue 27.58 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.63 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.97 KB
CDN Bundle - uncompressed 71.73 KB
CDN Bundle (incl. Tracing) - uncompressed 114.12 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.6 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.11 KB
@​sentry/nextjs (client) 42.64 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 165.23 KB
@​sentry/node - without tracing 97.96 KB
@​sentry/aws-serverless 125.47 KB

v9.44.2

Compare Source

This release is publishing the AWS Lambda Layer under SentryNodeServerlessSDKv9. The previous release 9.44.1 accidentally published the layer under SentryNodeServerlessSDKv10.

v9.44.1

Compare Source

  • fix(replay/v9): Call sendBufferedReplayOrFlush when opening/sending feedback (#​17270)

v9.44.0

Compare Source

  • feat(replay/v9): Deprecate _experiments.autoFlushOnFeedback (#​17219)
  • feat(v9/core): Add shared flushIfServerless function (#​17239)
  • feat(v9/node-native): Upgrade @sentry-internal/node-native-stacktrace to 0.2.2 (#​17256)
  • feat(v9/react-router): Add createSentryHandleError (#​17244)
  • feat(v9/react-router): Automatically flush on serverless for loaders/actions (#​17243)
  • feat(v9/react-router): Automatically flush on serverless for request handler (#​17242)
  • fix(v9/astro): Construct parametrized route during runtime (#​17227)
  • fix(v9/nextjs): Flush in route handlers (#​17245)
  • fix(v9/node): Fix exports for openai instrumentation (#​17238) (#​17241)

Bundle size 📦

Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.94 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.98 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.53 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.34 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.81 KB
@​sentry/browser (incl. FeedbackAsync) 32.59 KB
@​sentry/react 24.95 KB
@​sentry/react (incl. Tracing) 40.64 KB
@​sentry/vue 27.58 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.62 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.97 KB
CDN Bundle - uncompressed 71.73 KB
CDN Bundle (incl. Tracing) - uncompressed 114.12 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.56 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.07 KB
@​sentry/nextjs (client) 42.64 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 165.21 KB
@​sentry/node - without tracing 97.96 KB
@​sentry/aws-serverless 125.46 KB

v9.43.0

Compare Source

  • feat(v9/core): add MCP server instrumentation (#​17196)
  • feat(v9/meta): Unify detection of serverless environments and add Cloud Run (#​17204)
  • fix(v9/node): Add mechanism to fastifyIntegration error handler (#​17211)
  • fix(v9/replay): Fix re-sampled sessions after a click (#​17195)

Bundle size 📦

Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.98 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.02 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.57 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.38 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.81 KB
@​sentry/browser (incl. FeedbackAsync) 32.59 KB
@​sentry/react 24.95 KB
@​sentry/react (incl. Tracing) 40.64 KB
@​sentry/vue 27.58 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.66 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79 KB
CDN Bundle - uncompressed 71.73 KB
CDN Bundle (incl. Tracing) - uncompressed 114.12 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.65 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.16 KB
@​sentry/nextjs (client) 42.64 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 165.2 KB
@​sentry/node - without tracing 97.96 KB
@​sentry/aws-serverless 125.46 KB

v9.42.1

Compare Source

  • fix(v9/astro): Revert Astro v5 storing route data to globalThis (#​17185)
  • fix(v9/cloudflare): Avoid turning DurableObject sync methods into async (#​17187)
  • fix(v9/nextjs): Handle async params in url extraction (#​17176)
  • fix(v9/sveltekit): Align error status filtering and mechanism in handleErrorWithSentry (#​17174)

Bundle size 📦

Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 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.01 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.56 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.38 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 force-pushed the renovate/major-sentry-sdk branch 3 times, most recently from 731bebf to e5dfdc6 Compare May 23, 2024 17:17
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 2 times, most recently from 2f952ad to c5fba93 Compare May 29, 2024 16:58
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 3 times, most recently from f087a6d to b8b94df Compare June 12, 2024 11:05
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 3 times, most recently from d788adf to aad30cb Compare June 25, 2024 12:07
jmkoenig added a commit to cbsi-cmg/sentry-module that referenced this pull request Jun 26, 2024
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 2 times, most recently from 8cc1854 to 15f81d8 Compare July 4, 2024 11:31
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 3 times, most recently from a70d9d5 to ccc6956 Compare July 10, 2024 13:23
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 2 times, most recently from a62d957 to 222a240 Compare July 19, 2024 12:14
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 2 times, most recently from f1d9152 to 7b9c8d5 Compare July 31, 2024 11:01
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 3 times, most recently from 9498476 to 2de5fd8 Compare August 6, 2024 14:34
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 2 times, most recently from 8c98c5c to 3ed9fca Compare August 14, 2024 07:47
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 4 times, most recently from 5f5b27c to 54dfeb0 Compare August 27, 2024 09:04
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 3 times, most recently from 8f6b04f to 568060d Compare June 15, 2025 12:07
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 2 times, most recently from a7fc8d5 to b785b75 Compare June 23, 2025 21:28
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 4 times, most recently from 8c0a167 to 11ac1f6 Compare July 11, 2025 17:42
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 4 times, most recently from 89821fb to 4f3797a Compare July 21, 2025 09:15
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 4 times, most recently from 95e8797 to caf871a Compare July 29, 2025 19:04
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 3 times, most recently from 4d4d1a4 to d432241 Compare August 6, 2025 18:08
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 5 times, most recently from 64a45cb to c0d14b4 Compare August 13, 2025 12:38
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch from c0d14b4 to c1b4c70 Compare August 19, 2025 12:16
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch 2 times, most recently from 29cfe65 to b027b20 Compare August 27, 2025 18:40
@renovate renovate bot force-pushed the renovate/major-sentry-sdk branch from b027b20 to 2bd6660 Compare August 31, 2025 11:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants