These docs walk through how to migrate our JavaScript SDKs through different major versions.
- Upgrading from SDK 4.x to 5.x/6.x
- Upgrading from SDK 6.x to 7.x
- Upgrading from SDK 7.x to 8.x
- Upgrading from SDK 8.x to 9.x
- Upgrading from SDK 9.x to 10.x
- Upgrading from SDK 10.x to 11.x
Version 11 of the Sentry JavaScript SDK primarily focuses on better OpenTelemetry interoperability, more flexible instrumentation, and better out-of-the-box defaults. The biggest changes are:
- Better OpenTelemetry interoperability: Sentry no longer takes over your OpenTelemetry setup.
- Better instrumentation: It is now possible to instrument at run and build time, unlocking proper tracing on platform providers like Vercel and Netlify.
- Broader runtime support: Our integrations are now usable on Cloudflare, Bun and Deno.
- Span streaming: Streaming spans becomes the new default, bypassing size and span volume limits of legacy transactions.
- Data collection:
sendDefaultPiiis replaced by a more granulardataCollectionoption with more permissive defaults. - Node and TypeScript versions: Node 20.19.0 is the new minimum and we raised the minimum TypeScript version.
- Framework versions: We raised the minimum version of various supported frameworks.
Since some of these changes are not caught by TypeScript or other tooling, we recommend reading through this entire guide before upgrading. For an early overview see #22056 "What's coming in v11".
Version 11 of the SDK is compatible with Sentry self-hosted versions 24.4.2 or higher (unchanged from v10). Lower versions may continue to work, but may not support all features.
Version 11 of the Sentry SDK has new compatibility ranges for runtimes and frameworks.
Node.js: The minimum supported Node.js version is now 20.19.0. Node.js 18 is no longer supported.
Deno: The minimum supported Deno version is now 2.8.3.
Browsers: Support for Safari 14 was dropped. Sentry now requires Safari 15 or higher. For the rest of the browser support matrix, refer to the Sentry docs.
The minimum required TypeScript version is increased to version 5.0.4. We also no longer emit down-leveled types.
Older TypeScript versions may continue to be compatible, but no guarantees apply.
We raised the minimum supported versions of several frameworks and libraries:
- Next.js: dropped Next.js 13 (minimum is now 14).
- React: dropped React 16 (minimum is now 17).
- Astro: dropped Astro 3 (minimum is now 4).
- React Router (framework mode): minimum is now 7.15.
- Remix: dropped
@remix-run/nodev1 (minimum is now v2). - Fastify: dropped Fastify 3.0 through 3.20 (minimum is now 3.21).
A new AWS Lambda Layer for version 11 will be published as SentryNodeServerlessSDKv11.
The ARN will be published in the Sentry docs once available.
The layer is compatible with the nodejs20.x, nodejs22.x and nodejs24.x runtimes. Functions still on nodejs18.x need to move to a newer runtime before upgrading.
Updates and fixes for version 10 will be published as SentryNodeServerlessSDKv10.
Affected SDKs: Server-side SDKs (@sentry/node and all dependents).
By default, v11 no longer sets up an OpenTelemetry tracer provider for most SDKs. SDKs now own the full span lifecycle, producing native Sentry spans.
A new optional OpenTelemetry integration lets you connect Sentry events such as Errors, Logs, Crons and Metrics to your OpenTelemetry traces, if you need to. See Connecting Sentry to your OpenTelemetry traces.
Only @sentry/nextjs and @sentry/sveltekit still set up an OpenTelemetry compatible light tracer provider to capture spans the underlying frameworks emit.
This means you can run your own OpenTelemetry setup cleanly alongside Sentry without having Sentry spans leak into your pipeline anymore. Your OpenTelemetry setup will no longer be required to use Sentry components for exporting, context management and trace propagation.
With this, we also heavily reduced our OpenTelemetry dependencies, with @opentelemetry/api being the only one remaining. These changes also mean @sentry/node-core no longer serves any purpose and was merged back into @sentry/node.
If you only use the Sentry SDK, day-to-day tracing remains unchanged.
There are three ways to run the Sentry and OpenTelemetry SDKs together, and which one you want depends on who should own spans. This is controlled by the new enableOpenTelemetrySetup option, which replaces v10's skipOpenTelemetrySetup with inverted meaning (skipOpenTelemetrySetup: true becomes enableOpenTelemetrySetup: false). It defaults to false for most server SDKs (including @sentry/node, @sentry/bun, the serverless SDKs and @sentry/cloudflare) and true for @sentry/nextjs and @sentry/sveltekit.
The default, and what you most likely want. Tracing works out of the box:
Sentry.init({
dsn: '__DSN__',
tracesSampleRate: 1.0,
});If a library you depend on emits its own OpenTelemetry spans and you want those in Sentry too, use setup 2.
Set enableOpenTelemetrySetup: true:
Sentry.init({
dsn: '__DSN__',
tracesSampleRate: 1.0,
enableOpenTelemetrySetup: true,
});Sentry registers a minimal OpenTelemetry-compatible tracer provider, context manager and propagator. Just enough OpenTelemetry to pick up spans created through @opentelemetry/api, which become native Sentry spans.
Spans go to Sentry. This is not a general OpenTelemetry pipeline: there is no exporter and no OTLP output. Sentry also refuses to register its provider if you already registered one of your own, logging a warning instead. If you want a real OpenTelemetry pipeline, use setup 3.
Leave enableOpenTelemetrySetup unset or set it to false, turn Sentry tracing off, use your own OpenTelemetry setup, and add the Sentry otlpIntegration():
import { OTLPTraceExporter } from '@opentelemetry/exporter-trace-otlp-http';
import { BatchSpanProcessor } from '@opentelemetry/sdk-trace-base';
import { NodeTracerProvider } from '@opentelemetry/sdk-trace-node';
import * as Sentry from '@sentry/node';
const provider = new NodeTracerProvider({
spanProcessors: [new BatchSpanProcessor(new OTLPTraceExporter(Sentry.getOtlpTracesEndpoint('__DSN__')))],
});
provider.register();
Sentry.init({
dsn: '__DSN__',
// no tracesSampleRate: OpenTelemetry owns spans, Sentry owns errors and logs
integrations: [Sentry.otlpIntegration()],
});enableOpenTelemetrySetup already defaults to false on most server SDKs, so there is nothing to set. On @sentry/nextjs and @sentry/sveltekit it defaults to true, so you have to set it to false explicitly. Otherwise Sentry registers its own tracer provider and you end up in setup 2 rather than this one.
OpenTelemetry owns spans end to end. Sentry captures errors and logs, and the Sentry otlpIntegration() attaches them to the active OpenTelemetry span so all your telemetry is connected in one trace. getOtlpTracesEndpoint() turns your DSN into the URL and auth headers for Sentry's OTLP endpoint, so you can point your own exporter at Sentry, at your own collector, or at both.
Sentry does not touch your pipeline: no exporter, no span processor, no tracer provider, and outgoing trace propagation is left to your propagator. See Connecting Sentry to your OpenTelemetry traces for the details, including what changed if you used the v10 integration.
Sentry instruments many of the same libraries OpenTelemetry does (Express, Postgres, Redis, Prisma, Kafka and so on), so enabling Sentry tracing on top of your own instrumentation gives you two spans for every operation. Leave tracesSampleRate in your Sentry.init unset to avoid duplicate spans. With tracing off, Sentry's instrumentation stays installed and keeps isolating requests, but emits no spans.
Note that this changed since v10, where setting skipOpenTelemetrySetup: true also turned Sentry's HTTP and fetch spans off by default. Sentry now emits those whenever tracing is enabled, regardless of enableOpenTelemetrySetup.
If you do want Sentry spans alongside your own, keep tracesSampleRate set and drop the integrations that overlap. HTTP and fetch are the exception: turn off only their spans, because httpIntegration also provides request isolation, request data and session tracking:
Sentry.init({
dsn: '__DSN__',
tracesSampleRate: 1.0,
integrations: integrations => [
// your own OpenTelemetry instrumentation already covers these
...integrations.filter(integration => integration.name !== 'Postgres'),
Sentry.httpIntegration({ spans: false }),
Sentry.nativeNodeFetchIntegration({ spans: false }),
],
});In v10, running your own OpenTelemetry setup meant registering Sentry's own components into it: SentryContextManager, SentrySampler and SentrySpanProcessor. Those were removed, so there is no longer a way to route spans from your own provider into Sentry as Sentry spans. Export them over OTLP instead, as shown in setup 3.
Sentry.otlpIntegration() attaches everything Sentry sends that carries trace information (errors, logs, metrics and crons) to the OpenTelemetry span that is active when it happens. It takes no options, and is available from every server-side SDK, so there is nothing extra to install or import. See setup 3 above for a complete example.
It does not set up a span exporter, span processor, or tracer provider. You keep full ownership of your OpenTelemetry pipeline, and outgoing request propagation is left to your OpenTelemetry propagator. To send your spans to Sentry, point your own exporter at the URL and auth headers that Sentry.getOtlpTracesEndpoint() derives from your DSN.
An active Sentry span still takes precedence, so this only changes what happens when Sentry has no span of its own, which is the usual setup when OpenTelemetry owns tracing.
If you used the v10 integration from @sentry/node-core/light/otlp, three things changed: it moved to the main export of every server SDK, it no longer sets up an exporter for you and lost its options, and it reports itself as Otlp rather than OtlpIntegration. Configure your own exporter as shown in setup 3, pointing it at your collector's URL if you route through one.
Affected SDKs: All SDKs.
Heads up — this is a behavior change, not just a renamed option. In v10, leaving
sendDefaultPiiunset behaved likesendDefaultPii: false(restrictive). In v11, leavingdataCollectionunset collects the categories below by default. Review this before upgrading if you'd rather not collect HTTP request data, database queries, or GenAI inputs/outputs.
We've replaced sendDefaultPii with dataCollection, which controls each category of collected data individually. The default is now more permissive than in v10.
| Category | v10 default (sendDefaultPii off) |
v11 default |
|---|---|---|
userInfo |
false |
true |
cookies |
not collected | true |
httpHeaders |
request + response, PII scrubbed | request + response |
httpBodies |
not collected (size only) | all request/response |
urlQueryParams |
true |
true |
genAI |
inputs + outputs not collected | inputs + outputs |
databaseQueryData |
false |
true |
stackFrameVariables |
true |
true |
frameContextLines |
7 |
5 |
Sentry's built-in sensitive-data filtering still applies. Review your data-scrubbing config for categories that may contain sensitive values — especially request/response bodies.
The v11 default matches this, so just remove the option:
// v10
Sentry.init({ sendDefaultPii: true });
// v11 — same behavior is now the default
Sentry.init({});Set the baseline explicitly. Don't leave dataCollection unset — that now enables broader collection.
// v11 — preserves the v10 default
Sentry.init({
dataCollection: {
userInfo: false,
cookies: false,
httpHeaders: {
request: { deny: ['forwarded', '-ip', 'remote-', 'via', '-user'] },
response: { deny: ['forwarded', '-ip', 'remote-', 'via', '-user'] },
},
httpBodies: [],
urlQueryParams: { deny: ['forwarded', '-ip', 'remote-', 'via', '-user'] },
genAI: { inputs: false, outputs: false },
databaseQueryData: false,
graphQL: { document: false, variables: false },
},
});Each key-value field (cookies, urlQueryParams, httpHeaders.request, httpHeaders.response) accepts
true, false, { allow: string[] }, or { deny: string[] } for fine-grained control.
See the dataCollection docs for the full option list.
The requestDataIntegration's include options remain an integration-level override. An explicit false
prevents that category from being attached, while an explicit true enables it even when the corresponding
dataCollection category is disabled. For cookies, headers, and query parameters, any configured allow or
deny filtering continues to apply: When include enables a category which dataCollection disabled, the
default sensitive-value denylist is applied.
User IP address inference, which was previously gated on sendDefaultPii, is now controlled by
dataCollection.userInfo. An explicit requestDataIntegration({ include: { ip: true } }) overrides
dataCollection.userInfo: false for data collected by that integration.
captureActionFormDataKeys is an integration-level override, so it no longer requires
dataCollection.httpBodies to also include 'incomingRequest':
// v10 — both were required
Sentry.init({
captureActionFormDataKeys: { username: true },
dataCollection: { httpBodies: ['incomingRequest'] },
});
// v11 — the option opts in on its own
Sentry.init({
captureActionFormDataKeys: { username: true },
});If captureActionFormDataKeys is not set, all form fields are captured when
dataCollection.httpBodies includes 'incomingRequest' (the v11 default). Values whose field name
looks sensitive (password, token, …) are replaced with [Filtered], including explicitly
allowlisted ones.
Affected SDKs: @sentry/node and all dependents.
The new channel-based instrumentations (using orchestrion instead of import-in-the-middle) are now the default. They were available opt-in in v10. This unlocks instrumenting at run and build time, which enables instrumentation at deployment targets like Vercel and Netlify, as well as using instrumentations on non-Node runtimes like Cloudflare, Bun and Deno. For most users this requires no changes.
Affected SDKs: @sentry/node and all dependents.
Node re-runs --require preloads on the internal module loader thread it spawns for Module.register() — which the SDK triggers itself when it installs its instrumentation hooks. A --required instrument file therefore ran Sentry.init() a second time, on a thread that never executes any of your code. The SDK now skips initialization on that thread and warns when it detects that it was loaded through --require.
Use --import instead. It is not re-run on the loader thread, and it works for CommonJS apps too — the instrument file's extension (.cjs, or .js in a package without "type": "module") is what decides that it loads as CommonJS:
# Before
node --require ./instrument.js app.js
# After
node --import ./instrument.js app.jsAffected SDKs: All SDKs.
Spans are now sent to Sentry in small batches instead of being buffered until the root span completes. This means spans are no longer bound by the 1000-span per transaction limit and their individual payload-size limits have been increased.
The new model comes with some changes to Sentry hooks such as beforeSendSpan or options like ignoreSpans and requires manual migration.
The beforeSendTransaction and ignoreTransactions options will no-op.
If you cannot migrate to span streaming yet, you can opt into the previous transaction-based static model.
Your beforeSendSpan callback now receives a StreamedSpanJSON object and is invoked as each span finishes, rather than for all spans of a transaction right before that transaction is sent. As in v10, it is invoked for the root span as well as for child spans.
The payload fields were renamed:
Before (SpanJSON) |
After (StreamedSpanJSON) |
|---|---|
description |
name |
data |
attributes |
op |
attributes['sentry.op'] |
timestamp |
end_timestamp |
status (string) |
status ('ok' or 'error') |
The status field, now only contains two statuses: 'ok' and 'error'.
Streamed spans always have a status (while status was optional on transaction-based spans).
Previously more fine-grained error statuses are now mapped to 'error'.
Additional error information may be set via span attributes (e.g. sentry.status.message).
// Before
Sentry.init({
beforeSendSpan: span => {
if (span.op === 'db.query') {
span.description = scrub(span.description);
span.data['db.statement'] = scrub(span.data['db.statement']);
}
return span;
},
});
// After
Sentry.init({
beforeSendSpan: span => {
if (span.attributes['sentry.op'] === 'db.query') {
span.name = scrub(span.name);
span.attributes['db.statement'] = scrub(span.attributes['db.statement']);
}
return span;
},
});Returning null to drop a span was already disallowed in v9 and remains a no-op. Use ignoreSpans to filter spans.
If you cannot migrate the callback yet, opt out of span streaming and wrap beforeSendSpan with Sentry.withStaticSpan():
Sentry.init({
traceLifecycle: 'static',
beforeSendSpan: Sentry.withStaticSpan(span => {
span.description = scrub(span.description);
return span;
}),
});A beforeSendSpan callback that does not match the configured traceLifecycle is never invoked — an unwrapped callback is ignored in 'static' mode, and a withStaticSpan-wrapped callback is ignored in 'stream' mode. Enable debug logging to surface a warning about the mismatch. Previously, an incompatible callback silently downgraded the SDK to the static lifecycle instead.
The withStreamedSpan() helper is now a no-op, since streamed payloads are the default. It is deprecated and will be removed in v12. You can remove the wrapper:
// Before
beforeSendSpan: Sentry.withStreamedSpan(span => span);
// After
beforeSendSpan: span => span;The internal isStreamedBeforeSendSpanCallback() function from @sentry/core was removed.
beforeSendTransaction no-ops because no transaction events are produced.
For scrubbing and data modification, move the logic to beforeSendSpan and guard on is_segment to target what used to be the transaction
For dropping a transaction or child spans, use ignoreSpans (see below). The beforeSendSpan callback cannot drop spans.
// Before
Sentry.init({
beforeSendTransaction: event => {
if (event.transaction === 'GET /health') {
return null;
}
event.transaction = scrubIds(event.transaction);
return event;
},
});
// After
Sentry.init({
ignoreSpans: ['GET /health'],
beforeSendSpan: span => {
if (span.is_segment) {
span.name = scrubIds(span.name);
}
return span;
},
});Note that scope tags and extra are not carried over to streamed spans, since spans only have attributes. Use Sentry.setAttribute() / Sentry.setAttributes() instead.
ignoreTransactions no-ops. Use ignoreSpans to match the segment span instead: when a segment span is ignored, all of its child spans are dropped with it, which is equivalent to dropping the whole transaction.
// Before
Sentry.init({
ignoreTransactions: ['GET /health'],
});
// After
Sentry.init({
ignoreSpans: ['GET /health'],
});ignoreSpans matches on the span name (formerly description). Because it applies to every span rather than just to root spans, consider narrowing the filter with the object form so that child spans sharing a name are not dropped as collateral:
Sentry.init({
ignoreSpans: [{ name: 'GET /health', attributes: { 'sentry.op': 'http.server' } }],
});ignoreSpans itself is unchanged in shape, but it now takes effect when a span starts rather than when the transaction is sent. Matched spans are never recorded at all, which means a matched non-segment span's children are re-parented to its parent instead of being dropped.
To keep the previous transaction-based model, set traceLifecycle: 'static':
Sentry.init({
traceLifecycle: 'static',
// `beforeSendSpan` MUST be wrapped with Sentry.withStaticSpan:
beforeSendSpan: Sentry.withStaticSpan(span => {
span.description = scrub(span.description);
return span;
}),
});In Node, Bun, Vercel Edge and Cloudflare you can also set the SENTRY_TRACE_LIFECYCLE=static environment variable instead. The static lifecycle only exists for backwards compatibility and is planned for removal in a future major version, so treat this as a temporary measure.
The spanToJSON helper previously returned a SpanJSON object. In v11, the return type was changed to StreamedSpanJSON, meaning the object shape is now the same as in beforeSendSpan.
If you're opting out of span streaming, you can replace your spanToJSON calls with spanToStaticSpanJSON, which still returns the static SpanJSON object format.
The spanToStreamedSpanJSON helper, which returned this format in v10, was removed in favor of spanToJSON. Since the two are now equivalent, replace any calls to it:
// Before (v10)
const spanJson = Sentry.spanToStreamedSpanJSON(span);
// After (v11)
const spanJson = Sentry.spanToJSON(span);Affected SDKs: All SDKs.
Logging follows an opt-in-by-usage model similar to metrics: you are opted in when you call Sentry.logger.* or explicitly enable a logging integration. The default value of enableLogs is now true, and logging integrations do not emit logs unless explicitly enabled.
To opt out of logging entirely, set enableLogs to false:
Sentry.init({
enableLogs: false,
});Affected SDKs: All SDKs running in the browser.
Browser sessions affected by an uncaught error are now recorded as unhandled rather than crashed. If you track crash-free session rates in Release Health or have alerts built on them, expect the crash-free rate to shift after upgrading.
Affected SDKs: All SDKs running in the browser.
The default lifecycle mode of browserSessionIntegration changed from 'route' to 'page'. In 'page' mode a session is created once when the page loads and is not renewed on navigation. To restore the previous behaviour (a new session on load and on every navigation):
Sentry.init({
integrations: [Sentry.browserSessionIntegration({ lifecycle: 'route' })],
});Affected SDKs: All SDKs.
attachStacktrace now defaults to true. Events captured with Sentry.captureMessage, and non-Error values passed to Sentry.captureException, now attach a synthetic stack trace pointing to the call site. Pass attachStacktrace: false in Sentry.init to restore the previous behavior.
Two consequences to be aware of when upgrading:
- Issue grouping: Grouping in Sentry differs for events with and without stack traces, so you may see new issue groups after upgrading.
- Release health: Events with a stack trace are counted as errors, so a
captureMessagecall (including messages emitted bycaptureConsoleIntegration) now marks the current session as errored. This affects errored-session counts but does not mark sessions as crashed, so crash-free session rate is unaffected. If you usecaptureMessagefor purely informational output, consider using Sentry Logs instead, which is better suited and does not affect release health.
Affected SDKs: All SDKs.
- The
http.queryandhttp.fragmentspan attributes were renamed tourl.queryandurl.fragment. - The gen_ai cache token attributes
gen_ai.usage.cache_creation_input_tokensandgen_ai.usage.cache_read_input_tokenswere renamed togen_ai.usage.cache_creation.input_tokensandgen_ai.usage.cache_read.input_tokens. - The
gen_ai.systemspan attribute was renamed togen_ai.provider.nameacross all AI integrations. - The
gen_ai.request.available_toolsspan attribute was renamed togen_ai.tool.definitionsacross all AI integrations. - The
gen_ai.tool.inputspan attribute was renamed togen_ai.tool.call.argumentsacross all AI integrations. - The
gen_ai.tool.outputspan attribute was renamed togen_ai.tool.call.resultacross all AI integrations. - The Vercel AI token attributes
gen_ai.usage.input_tokens.cached,gen_ai.usage.input_tokens.cache_write, andgen_ai.usage.output_tokens.reasoningwere renamed togen_ai.usage.cache_read.input_tokens,gen_ai.usage.cache_creation.input_tokens, andgen_ai.usage.reasoning.output_tokens. - The deprecated
gen_ai.tool.typespan attribute is no longer set on tool spans. - Span attributes now use the shared
@sentry/conventionspackage under the hood.
If you reference these attributes in custom instrumentation, beforeSendSpan, dashboards, or alerts, update them to the new names.
Affected SDKs: All SDKs.
Span ops are now aligned to a smaller, framework-neutral, convention-backed set. The detail that used to live in the op (framework, library, method name, trigger, or lifecycle phase) is preserved in span attributes such as code.function.name, sentry.origin, db.system.name, db.operation.name, faas.trigger, and framework-specific attributes.
These changes are not caught by TypeScript. If you filter, group, or alert on span ops — in dashboards, dynamic sampling rules, ignoreSpans, or beforeSendSpan — update them to the new ops below.
Backend HTTP, handlers, middleware & routers:
| Area | Before | After |
|---|---|---|
| Request handlers (Express, Koa, Connect, Fastify, Elysia, NestJS, …) | request_handler.<library>, handler.nestjs |
handler |
Hono app.request() in-process dispatch |
hono.request |
http.server |
| Web-server middleware | middleware.express, middleware.koa, middleware.hono, middleware.elysia, middleware.nestjs, middleware.nuxt, middleware.nitro, middleware.tanstackstart, hook.fastify, http.server.middleware (Next.js) |
middleware |
| Backend router layers | router.express, router.koa, router.hapi |
router |
| Hapi server extensions | server.ext.hapi |
middleware |
| NestJS setup & lifecycle handlers | app_creation.nestjs, request_context.nestjs, event.nestjs |
function |
Framework functions:
| Area | Before | After |
|---|---|---|
| Loaders, actions & server functions (Next.js, Remix, React Router, SvelteKit, SolidStart, TanStack Start) | function.nextjs, function.sveltekit.load, function.react_router.loader, function.remix.document_request, loader.remix, action.remix, function.server_action, function.tanstackstart |
function |
Frontend & UI:
| Area | Before | After |
|---|---|---|
| Frontend routing | ui.angular.routing, ui.sveltekit.routing, ui.ember.transition |
router |
| React, Vue & Svelte component lifecycles | ui.react.mount/render/update, ui.svelte.init/update, Vue render/update/mount/create/activate/unmount/destroy |
ui.mount, ui.render, ui.update, ui.unmount |
| Angular tracing decorators | ui.angular.init (TraceDirective/TraceClass), ui.angular.<method> (TraceMethod) |
ui.mount, function |
| Ember route hooks, runloop & components | ui.ember.route.<hook>, ui.ember.runloop.<queue>, ui.ember.component.render/definition/init |
function, ui.task, ui.render/function/ui.mount |
| Browser paint entries | paint |
browser.paint |
Databases, cache & messaging:
| Area | Before | After |
|---|---|---|
| Redis commands / connect | db.redis, db.redis.connect |
db.query, db |
| Nuxt & Nitro storage (unstorage) | cache.has_item, cache.get_item, cache.get_items, cache.get_keys, cache.set_item, cache.set_items, cache.remove_item, cache.clear, … |
cache.get, cache.put, cache.remove |
| Kafka, AMQP & OTel-inferred messaging | message, message.produce, message.consume |
queue.publish, queue.receive, queue.process |
RPC & Gen AI:
| Area | Before | After |
|---|---|---|
| tRPC | rpc.server |
rpc |
| GCP gRPC calls | grpc.<service> |
grpc |
| AWS Bedrock inference | rpc |
gen_ai.chat, gen_ai.generate_content |
| Gen AI fallbacks & model metadata (Vercel AI, LangGraph) | gen_ai.unknown, ai.run, gen_ai.models |
function |
FaaS, serverless & HTTP clients:
| Area | Before | After |
|---|---|---|
| AWS Lambda functions | function.aws.lambda |
function.aws |
| GCP functions | function.gcp.http, function.gcp.event, function.gcp.cloud_event |
function.gcp |
| Firebase functions | http.request |
function.gcp |
| Cloudflare cron, email & workflow steps | faas.cron, faas.email, function.step.do |
function |
OTel-inferred FaaS spans (from faas.trigger) |
arbitrary trigger strings used verbatim | http.server, queue.process, function |
| GCP HTTP client | http.client.<service> |
http.client |
| Prefetch HTTP requests | http.client.prefetch, http.server.prefetch |
http.client, http.server |
Casing normalized to snake_case: Some browser.* and ui.* ops used inconsistent casing and are now aligned to snake_case:
| Before | After |
|---|---|
ui.long-task |
ui.long_task |
ui.long-animation-frame |
ui.long_animation_frame |
browser.unloadEvent |
browser.unload_event |
browser.domContentLoadedEvent |
browser.dom_content_loaded_event |
browser.loadEvent |
browser.load_event |
browser.TLS/SSL |
browser.tls_ssl |
browser.DNS |
browser.dns |
Affected SDKs: All server-side SDKs.
The LangGraph instrumentation no longer emits gen_ai.create_agent spans when a graph is compiled. gen_ai.invoke_agent and gen_ai.execute_tool spans are unaffected. If you reference create_agent spans in dashboards or alerts, update them accordingly.
Tracing removed from generated templates: Tracing was removed from the generated Pages Router API handler, Edge API handler, and Middleware wrapper templates. Route handlers and middleware are still instrumented automatically, so no action is required for most users.
Affected SDKs: @sentry/cloudflare.
The SDK now requires the nodejs_compat compatibility flag instead of nodejs_als. Update your wrangler.toml (or wrangler.jsonc):
- compatibility_flags = ["nodejs_als"]
+ compatibility_flags = ["nodejs_compat"]Affected SDKs: @sentry/cloudflare.
wrapRequestHandler is no longer available from the main @sentry/cloudflare entry point. Import it from the dedicated subpath instead:
- import { wrapRequestHandler } from '@sentry/cloudflare';
+ import { wrapRequestHandler } from '@sentry/cloudflare/request';Affected SDKs: @sentry/cloudflare.
sentryCloudflareVitePlugin() now wraps your Worker entry — and any Durable Object, Workflow or WorkerEntrypoint class listed in your wrangler config — at build time. Entries you already wrapped yourself are left untouched, so no action is required for most users. Opt out with the new top-level autoInstrumentation option:
sentryCloudflareVitePlugin({ autoInstrumentation: false });The experimental opt-in this replaces was removed:
- sentryCloudflareVitePlugin({ _experimental: { autoInstrumentation: true } });
+ sentryCloudflareVitePlugin();Affected SDKs: @sentry/ember.
@sentry/ember is now a v2 (Embroider) addon, so it builds cleanly under Embroider and Vite in addition to classic builds. Because v2 addons cannot auto-configure the host app, Sentry is no longer wired up from config/environment.js and no longer registers its own initializer. You now call Sentry.init() yourself and opt into performance instrumentation explicitly. A full walkthrough lives in packages/ember/UPGRADE.md.
1. Initialize Sentry in app/app.ts instead of config/environment.js. Remove the '@sentry/ember' block from config/environment.js and call init() before your Application class:
// config/environment.js
ENV.sentryDsn = process.env.E2E_TEST_DSN;// app/app.ts
import Application from '@ember/application';
import Resolver from 'ember-resolver';
import loadInitializers from 'ember-load-initializers';
import config from 'my-app/config/environment';
import * as Sentry from '@sentry/ember';
Sentry.init({
dsn: config.sentryDsn,
tracesSampleRate: 1.0,
// all @sentry/browser options are supported
});
export default class App extends Application {
modulePrefix = config.modulePrefix;
podModulePrefix = config.podModulePrefix;
Resolver = Resolver;
}
loadInitializers(App, config.modulePrefix);The former @sentry/ember config keys map onto arguments you now pass directly: sentry options become Sentry.init() options, and the disable* performance flags move to instrumentAppInstancePerformance() (see below). disablePerformance no longer exists as a single switch — omit the instance-initializer entirely to disable performance instrumentation.
2. Opt into performance instrumentation with an instance-initializer. Automatic performance instrumentation is gone; add it yourself:
// app/instance-initializers/sentry-performance.ts
import type ApplicationInstance from '@ember/application/instance';
import { instrumentAppInstancePerformance } from '@sentry/ember';
export function initialize(appInstance: ApplicationInstance): void {
instrumentAppInstancePerformance(appInstance, {
// former config/environment flags live here now, e.g.:
// disableRunloopPerformance: false,
// disableInstrumentComponents: false,
});
}
export default { initialize };FastBoot is detected automatically, so client-side instrumentation is skipped during server rendering with no extra configuration.
3. instrumentRoutePerformance is unchanged. Wrapping individual routes works exactly as before:
// app/routes/posts.ts
import Route from '@ember/routing/route';
import { instrumentRoutePerformance } from '@sentry/ember';
class PostsRoute extends Route {
async model() {
return this.store.findAll('post');
}
}
export default instrumentRoutePerformance(PostsRoute);- The
createSpanEnvelopefunction and theSpanEnvelope/SpanItemtypes were removed. They existed only to send standalone (v1) spans as their own segment envelope, which the SDK no longer does. Standalone spans are gone; spans are sent either on their transaction or, with span streaming, as streamed spans (StreamedSpanEnvelope). - The
disableInstrumentationWarningsoption and theMissingInstrumentationContexttype were removed. Now that instrumentation is channel-based, the SDK can no longer detect the "you imported a framework beforeSentry.init()" case, so the warning it gated and the context it attached no longer exist. - The deprecated
sendDefaultPiioption was removed. UsedataCollectioninstead. - The
_experiments.enableLogsoption was removed. Logs are now enabled by default, so if you were opting in via_experiments.enableLogs: trueyou can simply omit the option. Use the top-levelenableLogs: falseto opt out.
// before
Sentry.init({
_experiments: {
enableLogs: true,
},
});
// after: logs are enabled by default, no option needed
Sentry.init({});
// or, to opt out
Sentry.init({
enableLogs: false,
});-
The experimental
_experiments.enableStandaloneClsSpansand_experiments.enableStandaloneLcpSpansoptions were removed from bothbrowserTracingIntegrationandwebVitalsIntegration. CLS and LCP are no longer configurable: they are recorded as measurements on the pageload span, unless span streaming is enabled (traceLifecycle: 'stream'), in which case they are sent as dedicated spans. -
INP is now always sent as a web vital span (streamed when span streaming is enabled, standalone otherwise) that carries its value as a
browser.web_vital.inp.valueattribute. Previously, with span streaming disabled, INP was sent as a standalone span that carried its value as a span measurement. -
browserTracingIntegrationno longer captures spans created byperformance.mark()andperformance.measure()by default. AdduserTimingIntegration()to continue capturing them. TheignorePerformanceApiSpansoption moved to the new integration asignore.
// before
Sentry.init({
integrations: [
Sentry.browserTracingIntegration({
ignorePerformanceApiSpans: ['third-party-mark'],
}),
],
});
// after
Sentry.init({
integrations: [
Sentry.browserTracingIntegration(),
Sentry.userTimingIntegration({
ignore: ['third-party-mark'],
}),
],
});SentryContextManageris no longer exported. It is no longer needed now that Sentry does not set up OpenTelemetry by default.- The deprecated
honoIntegrationwas removed. Use the@sentry/honoSDK to instrument Hono. - The
connectinstrumentation was removed. - The deprecated
prismaInstrumentationoption was removed. It was no longer used, as Prisma works out of the box. - The
registerEsmLoaderHooksoption was removed. All instrumentation is now channel-based (via@sentry/server-utils), so the SDK no longer registersimport-in-the-middleESM loader hooks and the option no longer had any effect. - The deprecated
SentryHttpInstrumentationandSentryNodeFetchInstrumentationexports were removed. UseinstrumentHttpOutgoingRequests()and thenativeNodeFetchIntegrationrespectively. - The
generateInstrumentOnceexport was removed (from@sentry/nodeand the framework SDKs that re-exported it). It wrapped OpenTelemetry'sregisterInstrumentationsand is no longer needed now that instrumentation is channel-based. - The
@sentry/node/initand@sentry/node/preloadentry points were removed. Create your own instrument file that callsSentry.init()and preload it withnode --import ./instrument.mjs app.jsinstead. - The
preloadOpenTelemetry()function was removed. All instrumentation is now channel-based viaorchestrionand is set up when the instrumented module loads, so preloading is no longer needed. - The
@sentry/node/loaderentry point was removed. Usenode --import @sentry/node/importinstead. - (Astro) The
@sentry/astro/loaderentry point was removed. Usenode --import @sentry/astro/importinstead. - (AWS Lambda) The
@sentry/aws-serverless/loaderentry point was removed. Usenode --import @sentry/aws-serverless/importinstead. - (Google Cloud) The
@sentry/google-cloud-serverless/loaderentry point was removed. Usenode --import @sentry/google-cloud-serverless/importinstead. - (Next.js) The
@sentry/nextjs/loaderentry point was removed. Usenode --import @sentry/nextjs/importinstead. - (Remix) The
@sentry/remix/loaderentry point was removed. Usenode --import @sentry/remix/importinstead. - (TanStack Start) The
@sentry/tanstackstart-react/loaderentry point was removed. Usenode --import @sentry/tanstackstart-react/importinstead. - (Express) The deprecated
patchExpressModule(options)signature was removed. UsepatchExpressModule(moduleExports, getOptions)instead. - The
@sentry/node-core/light/otlpentry point was removed, along with its optional@opentelemetry/exporter-trace-otlp-httppeer dependency.otlpIntegrationis now exported directly from every server-side SDK, soSentry.otlpIntegration()needs no extra import or install. - The
otlpIntegrationoptionssetupOtlpTracesExporterandcollectorUrlwere removed, and the integration no longer sets up a span exporter, span processor, or tracer provider. Configure your own exporter and point it atSentry.getOtlpTracesEndpoint(dsn), or at your collector's URL if you route through one. See Connecting Sentry to your OpenTelemetry traces.
- The
@sentry/cloudflare/nodejs_compatsubpath export was removed. Sincenodejs_compatis now required for all users, the main@sentry/cloudflareentry point includes everything that was previously only available via the subpath.
- import * as Sentry from '@sentry/cloudflare/nodejs_compat';
+ import * as Sentry from '@sentry/cloudflare';- The deprecated
instrumentD1WithSentryexport was removed.withSentry()automatically instruments all D1 bindings viaenv.
import * as Sentry from '@sentry/cloudflare';
export default withSentry(
(env) => ({ dsn: env.SENTRY_DSN }),
{
async fetch(request, env, ctx) {
- const db = Sentry.instrumentD1WithSentry(env.DB);
- const result = await db.prepare('SELECT * FROM users').all();
+ const result = await env.DB.prepare('SELECT * FROM users').all();
},
},
);-
The
enableRpcTracePropagationoption now defaults totrue. Trace context is propagated across RPC calls (service bindings, Durable Objects, WorkerEntrypoints) unless you explicitly setenableRpcTracePropagation: false. -
The
instrumentPrototypeMethodsoption ofinstrumentDurableObjectWithSentrywas removed. UseenableRpcTracePropagationinstead, which was introduced as its replacement in v10.
export const MyDO = Sentry.instrumentDurableObjectWithSentry(
(env) => ({
dsn: env.SENTRY_DSN,
- instrumentPrototypeMethods: true,
+ enableRpcTracePropagation: true,
}),
MyDOBase,
);- The
honoIntegrationwas removed. Use the dedicated@sentry/honopackage instead, which provides a middleware that handles error capturing automatically.
- import * as Sentry from '@sentry/cloudflare';
+ import { sentry } from '@sentry/hono/cloudflare';
const app = new Hono();
+ app.use(sentry());getTraceContextForScopewas removed. Scope-to-trace-context resolution now goes through the shared core implementation.- The
@opentelemetry/corepeer dependency was removed; its APIs are now vendored internally. getSentryResourcewas removed.- OpenTelemetry resources are no longer collected, and
contexts.otel.resourcewas dropped from events. As a result, theOTEL_SERVICE_NAMEandOTEL_RESOURCE_ATTRIBUTESenvironment variables are no longer read by the SDK.
- The
enableTruncationandstreamGenAiSpansflags were removed. The new default is no truncation and to always stream gen AI spans. - The internal
sentry.sdk_meta.gen_ai.input.messages.original_lengthspan attribute was removed. - (Vercel AI) The internal JSON-stringify workaround for array span attributes was removed.
- AI integrations are no longer available in the browser SDK. They remain available in the server-side SDKs.
- The AI instrumentation code moved out of
@sentry/coreinto@sentry/server-utils. If you imported any AI helper directly from@sentry/core, import it from@sentry/server-utilsinstead (or keep importing it from your platform SDK, e.g.@sentry/node, if it re-exported that helper before — platform SDK availability is unchanged from v10). Affected helpers:instrumentOpenAiClient,instrumentAnthropicAiClient,instrumentGoogleGenAIClient,instrumentWorkersAiClient,createLangChainCallbackHandler,instrumentLangChainEmbeddings,instrumentStateGraph,instrumentStateGraphCompile,instrumentCreateReactAgent,addVercelAiProcessors. - The following low-level AI exports are no longer part of the public API (they were provider-instrumentation internals exported from
@sentry/core):- Attribute/stream/util helpers:
extractOpenAiRequestAttributes,addOpenAiRequestAttributes,addOpenAiResponseAttributes,extractOpenAiRequestParameters,instrumentOpenAiStream,extractAnthropicRequestAttributes,addAnthropicRequestAttributes,addAnthropicResponseAttributes,instrumentAsyncIterableStream,instrumentMessageStream,extractGoogleGenAIRequestAttributes,addGoogleGenAIRequestAttributes,addGoogleGenAIResponseAttributes,instrumentGoogleGenAIStream,getProviderMetadataAttributes,getTruncatedJsonString,shouldEnableTruncation,resolveAIRecordingOptions,wrapToolsWithSpans,extractLLMFromParams,extractAgentNameFromParams,instrumentCompiledGraphInvoke. - Integration-name constants:
OPENAI_INTEGRATION_NAME,ANTHROPIC_AI_INTEGRATION_NAME,GOOGLE_GENAI_INTEGRATION_NAME,LANGCHAIN_INTEGRATION_NAME,LANGGRAPH_INTEGRATION_NAME. - Types:
OpenAiClient,OpenAiOptions,InstrumentedMethod,AnthropicAiClient,AnthropicAiOptions,AnthropicAiResponse,AnthropicAiInstrumentedMethod,GoogleGenAIClient,GoogleGenAIChat,GoogleGenAIOptions,GoogleGenAIResponse,GoogleGenAIInstrumentedMethod,GoogleGenAIIstrumentedMethod,WorkersAiClient,WorkersAiOptions,LangChainOptions,LangChainIntegration,LangGraphOptions,LangGraphIntegration,CompiledGraph.
- Attribute/stream/util helpers:
- The deprecated server wrappers
wrapServerLoaderandwrapServerActionwere removed. Loaders and actions are instrumented automatically via the instrumentation API - exportinstrumentations = [Sentry.createSentryServerInstrumentation()]from yourentry.server.tsxinstead of wrapping them individually.
- The
prune-profiler-binariesscript was removed.
The deprecated sourceMapsUploadOptions and other deprecated Vite/build plugin options were removed from @sentry/nuxt and @sentry/sveltekit. Use the top-level equivalents (e.g. sourcemaps, release, authToken, org, project, telemetry) instead.
The deprecated sourceMapsUploadOptions module option was removed. Move its fields to the root level of the sentry module options. Note that url was renamed to sentryUrl, and enabled was replaced by sourcemaps.disable (inverted: enabled: false becomes sourcemaps: { disable: true }).
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@sentry/nuxt/module'],
sentry: {
// before
sourceMapsUploadOptions: {
org: 'my-org',
project: 'my-project',
authToken: process.env.SENTRY_AUTH_TOKEN,
url: 'https://my-sentry.example.com',
sourcemaps: {
assets: ['./dist/**/*'],
},
},
// after
org: 'my-org',
project: 'my-project',
authToken: process.env.SENTRY_AUTH_TOKEN,
sentryUrl: 'https://my-sentry.example.com',
sourcemaps: {
assets: ['./dist/**/*'],
},
},
});The deprecated sourceMapsUploadOptions option was removed from sentrySvelteKit(). Move its fields to the root level of the sentrySvelteKit() options. Note that url was renamed to sentryUrl.
// vite.config.ts
export default defineConfig({
plugins: [
sentrySvelteKit({
// before
sourceMapsUploadOptions: {
org: 'my-org',
project: 'my-project',
authToken: process.env.SENTRY_AUTH_TOKEN,
url: 'https://my-sentry.example.com',
sourcemaps: {
assets: ['./build/**/*'],
},
},
// after
org: 'my-org',
project: 'my-project',
authToken: process.env.SENTRY_AUTH_TOKEN,
sentryUrl: 'https://my-sentry.example.com',
sourcemaps: {
assets: ['./build/**/*'],
},
}),
sveltekit(),
],
});Import all types from @sentry/core instead. @sentry/types has only re-exported from @sentry/core
since v8 and has been deprecated since then.
// before
import type { Event } from '@sentry/types';
// after
import type { Event } from '@sentry/core';With the reduced OpenTelemetry footprint in v11, @sentry/node-core no longer serves a purpose and was removed. Import everything from @sentry/node instead.
// before
import { init } from '@sentry/node-core';
// after
import { init } from '@sentry/node';The utility @sentry/tanstackstart package was removed. Use the @sentry/tanstackstart-react package for your setup.
Affected SDKs: All SDKs.
The InboundFilters integration was renamed to EventFilters, and inboundFiltersIntegration to
eventFiltersIntegration. The old inboundFiltersIntegration export (deprecated in v10) was removed.
// before
import { inboundFiltersIntegration } from '@sentry/browser';
// after
import { eventFiltersIntegration } from '@sentry/browser';All SDKs now also set up eventFiltersIntegration instead of inboundFiltersIntegration as a default
integration, so the integration reports itself as EventFilters (e.g. in the sdk.integrations payload of
events). If you disable the integration by its previous name, update the reference:
// before
Sentry.init({
integrations: integrations => integrations.filter(integration => integration.name !== 'InboundFilters'),
});
// after
Sentry.init({
integrations: integrations => integrations.filter(integration => integration.name !== 'EventFilters'),
});The same applies when looking the integration up by name, e.g. via client.getIntegrationByName('InboundFilters').
Affected SDKs: SDKs with LangGraph instrumentation.
instrumentLangGraph only instruments the StateGraph class, so it was renamed to
instrumentStateGraph to avoid confusion with the separate ReactAgent instrumentation.
// before
import { instrumentLangGraph } from '@sentry/node';
// after
import { instrumentStateGraph } from '@sentry/node';Affected SDKs: @sentry/deno.
Several default integrations were renamed to match the names used by the other SDKs. The old deno*Integration exports are kept as deprecated aliases. If you relied on the old names (for example, to disable an integration), update them:
DenoAmqplib=>AmqplibDenoKoa=>KoaDenoMongodb=>MongodbDenoMongoose=>MongooseDenoMysql=>MysqlDenoPostgres=>Postgres
Affected SDKs: Server-side SDKs (@sentry/node and all dependents).
The OTLP integration reports itself as Otlp rather than OtlpIntegration, matching every other integration in the SDKs, none of which carry an Integration suffix in their name. The otlpIntegration() export itself is unchanged. This only matters if you reference the integration by name:
// before
Sentry.init({
integrations: integrations => integrations.filter(integration => integration.name !== 'OtlpIntegration'),
});
// after
Sentry.init({
integrations: integrations => integrations.filter(integration => integration.name !== 'Otlp'),
});The same applies when looking the integration up by name, e.g. via client.getIntegrationByName('OtlpIntegration').
Affected SDKs: @sentry/sveltekit.
The sentrySvelteKit Vite plugin is no longer re-exported from the main @sentry/sveltekit entry. Import it from @sentry/sveltekit/vite in your vite.config.ts instead:
// vite.config.ts
// before
import { sentrySvelteKit } from '@sentry/sveltekit';
// after
import { sentrySvelteKit } from '@sentry/sveltekit/vite';The main entry re-exported the build plugin statically, which pulled the whole build-time module graph (@sentry/vite-plugin, and through it @babel/core) into the server runtime graph whenever the SDK was imported in server code. Serverless bundlers that trace by reachability (e.g. @vercel/nft) then copied all of it into the function. Moving the plugin behind its own subpath keeps it off the runtime entry so it is never reachable from server code.
- Several public types that used
anynow useunknown— includingStackFrame,SamplingContext,SentryError, andUser. You may need to narrow types explicitly where you previously relied onany. - (Cloudflare) The
envtypes and the generics onwithSentryandinstrumentDurableObjectWithSentrywere reworked for better type safety. If you were not passing explicit generic type parameters, no changes are needed.
- export default withSentry<Env>(
+ export default withSentry(
(env) => ({ dsn: env.SENTRY_DSN }),
{
async fetch(request, env, ctx) {
// env is correctly typed based on the handler
},
} satisfies ExportedHandler<Env>,
);- export const MyDO = Sentry.instrumentDurableObjectWithSentry<Env, MyDOBase, typeof MyDOBase>(
+ export const MyDO = Sentry.instrumentDurableObjectWithSentry(
(env) => ({ dsn: env.SENTRY_DSN }),
MyDOBase,
);Version support timelines are stressful for everybody using the SDK, so we won't be defining one. Instead, we will be applying bug fixes and features to older versions as long as there is demand.
Additionally, we hold ourselves accountable to any security issues, meaning that if any vulnerabilities are found, we will in almost all cases backport them.
Note, that it is decided on a case-per-case basis, what gets backported or not. If you need a fix or feature in a previous version of the SDK, please reach out via a GitHub Issue.