This release marks the beta release of the @sentry/nuxt Sentry SDK. For details on how to use it, check out the
Sentry Nuxt SDK README. Please reach out on
GitHub if you have any feedback or concerns.
import() (#13945)It is no longer required to add a Node --import flag. Please update your start command to avoid initializing Sentry
twice (BREAKING CHANGE). The SDK will now apply modifications during the build of your application to allow for
patching of libraries during runtime. If run into issues with this change, you can disable this behavior in your
nuxt.config.ts and use the --import flag instead:
sentry: {
dynamicImportForServerEntry: false;
}
We now require you to explicitly enable sourcemaps for the clientside so that Sentry can un-minify your errors. We made this change so source maps aren't accidentally leaked to the public. Enable source maps on the client as follows:
export default defineNuxtConfig({
sourcemap: {
client: true,
},
});
responseHook with waitUntil (#13986)Support for Pinia is added in this release for @sentry/vue. To capture Pinia state data,
add createSentryPiniaPlugin() to your Pinia store:
import { createPinia } from 'pinia';
import { createSentryPiniaPlugin } from '@sentry/vue';
const pinia = createPinia();
pinia.use(createSentryPiniaPlugin());
This change introduces a new SentryHttpInstrumentation to handle non-span related HTTP instrumentation, allowing it to
run side-by-side with OTel's HttpInstrumentation. This improves support for custom OTel setups and avoids conflicts
with Sentry's instrumentation. Additionally, the spans: false option is reintroduced for httpIntegration to disable
span emission while still allowing custom HttpInstrumentation instances (httpIntegration({ spans: false })).
This change adds a new option trackFetchStreamPerformance to the browser tracing integration. Only when set to true,
Sentry will instrument streams via fetch.
suppressTracing API (#13875)@opentelemetry/instrumentation-express to 0.43.0 (#13948)@opentelemetry/instrumentation-fastify to 0.40.0 (#13983)init is correct in meta frameworks (#13938).set the sentry-trace header instead of .appending in fetch instrumentation (#13907)ignoreOutgoingRequests of httpIntegration applies to breadcrumbs (#13970)Work in this release was contributed by @ZakrepaShe and @zhiyan114. Thank you for your contributions!
| Path | Size |
|---|---|
| @sentry/browser | 22.73 KB |
| @sentry/browser - with treeshaking flags | 21.53 KB |
| @sentry/browser (incl. Tracing) | 35.12 KB |
| @sentry/browser (incl. Tracing, Replay) | 71.86 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 62.26 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 76.21 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 88.99 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback, metrics) | 90.82 KB |
| @sentry/browser (incl. metrics) | 27 KB |
| @sentry/browser (incl. Feedback) | 39.87 KB |
| @sentry/browser (incl. sendFeedback) | 27.38 KB |
| @sentry/browser (incl. FeedbackAsync) | 32.17 KB |
| @sentry/react | 25.49 KB |
| @sentry/react (incl. Tracing) | 38.09 KB |
| @sentry/vue | 26.91 KB |
| @sentry/vue (incl. Tracing) | 37.02 KB |
| @sentry/svelte | 22.87 KB |
| CDN Bundle | 24.11 KB |
| CDN Bundle (incl. Tracing) | 36.96 KB |
| CDN Bundle (incl. Tracing, Replay) | 71.65 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 76.99 KB |
| CDN Bundle - uncompressed | 70.7 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 109.73 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 222.24 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 235.46 KB |
| @sentry/nextjs (client) | 38.06 KB |
| @sentry/sveltekit (client) | 35.74 KB |
| @sentry/node | 125.15 KB |
| @sentry/node - without tracing | 94.25 KB |
| @sentry/aws-serverless | 103.81 KB |
Fetched March 31, 2026