Releases: getsentry/sentry-javascript
9.25.0
Important Changes
- feat(browser): Add option to ignore
markandmeasurespans (#16443)
This release adds an option to browserTracingIntegration that lets you ignore
mark and measure spans created from the performance.mark(...) and performance.measure(...) browser APIs:
Sentry.init({
integrations: [
Sentry.browserTracingIntegration({
ignorePerformanceApiSpans: ['measure-to-ignore', /mark-to-ignore/],
}),
],
});Other Changes
- feat(browser): Export getTraceData from the browser sdks (#16433)
- feat(node): Add
includeServerNameoption (#16442) - fix(nuxt): Remove setting
@sentry/nuxtexternal (#16444)
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.43 KB |
| @sentry/browser - with treeshaking flags | 23.2 KB |
| @sentry/browser (incl. Tracing) | 37.44 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.69 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 67.96 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.33 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 91.13 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.39 KB |
| @sentry/vue | 27.67 KB |
| @sentry/vue (incl. Tracing) | 39.24 KB |
| @sentry/svelte | 23.45 KB |
| CDN Bundle | 24.88 KB |
| CDN Bundle (incl. Tracing) | 37.62 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.64 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.93 KB |
| CDN Bundle - uncompressed | 72.67 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 111.4 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 222.7 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 235.22 KB |
| @sentry/nextjs (client) | 41.02 KB |
| @sentry/sveltekit (client) | 37.93 KB |
| @sentry/node | 146.37 KB |
| @sentry/node - without tracing | 95.83 KB |
| @sentry/aws-serverless | 120.98 KB |
9.24.0
Important Changes
- feat(angular): Bump
@sentry/angularpeer dependencies to add Angular 20 support (#16414)
This release adds support for Angular 20 to the Sentry Angular SDK @sentry/angular.
Other Changes
- feat(browser): Add
unregisterOriginalCallbacksoption tobrowserApiErrorsIntegration(#16412) - feat(core): Add user to logs (#16399)
- feat(core): Make sure Supabase db query insights are populated (#16169)
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.43 KB |
| @sentry/browser - with treeshaking flags | 23.2 KB |
| @sentry/browser (incl. Tracing) | 37.39 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.64 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 67.92 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.29 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 91.09 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.35 KB |
| @sentry/vue | 27.67 KB |
| @sentry/vue (incl. Tracing) | 39.19 KB |
| @sentry/svelte | 23.45 KB |
| CDN Bundle | 24.71 KB |
| CDN Bundle (incl. Tracing) | 37.57 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.58 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.88 KB |
| CDN Bundle - uncompressed | 72.17 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 111.21 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 222.51 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 235.03 KB |
| @sentry/nextjs (client) | 40.97 KB |
| @sentry/sveltekit (client) | 37.88 KB |
| @sentry/node | 146.36 KB |
| @sentry/node - without tracing | 95.82 KB |
| @sentry/aws-serverless | 120.98 KB |
9.23.0
Important changes
- feat(browser): option to ignore certain resource types (#16389)
Adds an option to opt out of certain resource.* spans via ignoreResourceSpans.
For example, to opt out of resource.script spans:
Sentry.browserTracingIntegration({
ignoreResourceSpans: ['resource.script'],
}),Other changes
- feat: Export
isEnabledfrom all SDKs (#16405) - feat(browser): Disable client when browser extension is detected in
init()(#16354) - feat(core): Allow re-use of
captureLog(#16352) - feat(core): Export
_INTERNAL_captureSerializedLog(#16387) - feat(deps): bump @opentelemetry/semantic-conventions from 1.32.0 to 1.34.0 (#16393)
- feat(deps): bump @prisma/instrumentation from 6.7.0 to 6.8.2 (#16392)
- feat(deps): bump @sentry/cli from 2.43.0 to 2.45.0 (#16395)
- feat(deps): bump @sentry/webpack-plugin from 3.3.1 to 3.5.0 (#16394)
- feat(nextjs): Include
static/chunks/main-*files forwidenClientFileUpload(#16406) - feat(node): Do not add HTTP & fetch span instrumentation if tracing is disabled (#15730)
- feat(nuxt): Added support for nuxt layers (#16372)
- fix(browser): Ensure logs are flushed when sendClientReports=false (#16351)
- fix(browser): Move
browserTracingIntegrationcode tosetuphook (#16386) - fix(cloudflare): Capture exceptions thrown in hono (#16355)
- fix(node): Don't warn about Spotlight on empty NODE_ENV (#16381)
- fix(node): Suppress Spotlight calls (#16380)
- fix(nuxt): Add
@sentry/nuxtas external in Rollup (#16407) - fix(opentelemetry): Ensure
withScopekeeps span active &_getTraceInfoFromScopeworks (#16385)
Work in this release was contributed by @Xenossolitarius. Thank you for your contribution!
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.37 KB |
| @sentry/browser - with treeshaking flags | 23.14 KB |
| @sentry/browser (incl. Tracing) | 37.33 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.59 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 67.86 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.23 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 91.04 KB |
| @sentry/browser (incl. Feedback) | 39.73 KB |
| @sentry/browser (incl. sendFeedback) | 27.97 KB |
| @sentry/browser (incl. FeedbackAsync) | 32.75 KB |
| @sentry/react | 25.11 KB |
| @sentry/react (incl. Tracing) | 39.29 KB |
| @sentry/vue | 27.6 KB |
| @sentry/vue (incl. Tracing) | 39.11 KB |
| @sentry/svelte | 23.39 KB |
| CDN Bundle | 24.66 KB |
| CDN Bundle (incl. Tracing) | 37.51 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.52 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.83 KB |
| CDN Bundle - uncompressed | 71.96 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 111 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 222.3 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 234.82 KB |
| @sentry/nextjs (client) | 40.93 KB |
| @sentry/sveltekit (client) | 37.83 KB |
| @sentry/node | 146.36 KB |
| @sentry/node - without tracing | 95.82 KB |
| @sentry/aws-serverless | 120.98 KB |
9.22.0
Important changes
- Revert "feat(browser): Track measure detail as span attributes" (#16348)
This is a revert of a feature introduced in 9.20.0 with #16240. This feature was causing crashes in firefox, so we are reverting it. We will re-enable this functionality in the future after fixing the crash.
Other changes
- feat(deps): bump @sentry/rollup-plugin from 3.1.2 to 3.2.1 (#15511)
- fix(remix): Use generic types for
ServerBuildargument and return (#16336)
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.39 KB |
| @sentry/browser - with treeshaking flags | 23.16 KB |
| @sentry/browser (incl. Tracing) | 37.37 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.59 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 67.86 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.26 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 91.07 KB |
| @sentry/browser (incl. Feedback) | 39.76 KB |
| @sentry/browser (incl. sendFeedback) | 28 KB |
| @sentry/browser (incl. FeedbackAsync) | 32.77 KB |
| @sentry/react | 25.12 KB |
| @sentry/react (incl. Tracing) | 39.3 KB |
| @sentry/vue | 27.68 KB |
| @sentry/vue (incl. Tracing) | 39.15 KB |
| @sentry/svelte | 23.41 KB |
| CDN Bundle | 24.64 KB |
| CDN Bundle (incl. Tracing) | 37.47 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.5 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.8 KB |
| CDN Bundle - uncompressed | 71.9 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 111 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 222.29 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 234.82 KB |
| @sentry/nextjs (client) | 40.92 KB |
| @sentry/sveltekit (client) | 37.83 KB |
| @sentry/node | 145.96 KB |
| @sentry/node - without tracing | 95.8 KB |
| @sentry/aws-serverless | 120.54 KB |
9.21.0
- docs: Fix v7 migration link (#14629)
- feat(node): Vendor in
@fastify/otel(#16328) - fix(nestjs): Handle multiple
OnEventdecorators (#16306) - fix(node): Avoid creating breadcrumbs for suppressed requests (#16285)
- fix(remix): Add missing
clientexports toserverandcloudflareentries (#16341)
Work in this release was contributed by @phthhieu. Thank you for your contribution!
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.48 KB |
| @sentry/browser - with treeshaking flags | 23.15 KB |
| @sentry/browser (incl. Tracing) | 37.56 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.79 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 67.98 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.44 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 91.27 KB |
| @sentry/browser (incl. Feedback) | 39.87 KB |
| @sentry/browser (incl. sendFeedback) | 28.11 KB |
| @sentry/browser (incl. FeedbackAsync) | 32.87 KB |
| @sentry/react | 25.21 KB |
| @sentry/react (incl. Tracing) | 39.49 KB |
| @sentry/vue | 27.77 KB |
| @sentry/vue (incl. Tracing) | 39.34 KB |
| @sentry/svelte | 23.5 KB |
| CDN Bundle | 24.65 KB |
| CDN Bundle (incl. Tracing) | 37.63 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.57 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.89 KB |
| CDN Bundle - uncompressed | 71.9 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 111.35 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 222.65 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 235.18 KB |
| @sentry/nextjs (client) | 41.1 KB |
| @sentry/sveltekit (client) | 38.04 KB |
| @sentry/node | 145.96 KB |
| @sentry/node - without tracing | 95.8 KB |
| @sentry/aws-serverless | 120.54 KB |
9.20.0
Important changes
- feat(browser): Track measure detail as span attributes (#16240)
The SDK now automatically collects details passed to performance.measure options.
Other changes
- feat(node): Add
maxIncomingRequestBodySize(#16225) - feat(react-router): Add server action instrumentation (#16292)
- feat(react-router): Filter manifest requests (#16294)
- feat(replay): Extend default list for masking with
aria-label(#16192) - fix(browser): Ensure pageload & navigation spans have correct data (#16279)
- fix(cloudflare): Account for static fields in wrapper type (#16303)
- fix(nextjs): Preserve
next.routeattribute on root spans (#16297) - feat(node): Fork isolation scope in tRPC middleware (#16296)
- feat(core): Add
orgIdoption toinitand DSC (sentry-org_idin baggage) (#16305)
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.48 KB |
| @sentry/browser - with treeshaking flags | 23.15 KB |
| @sentry/browser (incl. Tracing) | 37.56 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.79 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 67.98 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.44 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 91.27 KB |
| @sentry/browser (incl. Feedback) | 39.87 KB |
| @sentry/browser (incl. sendFeedback) | 28.11 KB |
| @sentry/browser (incl. FeedbackAsync) | 32.87 KB |
| @sentry/react | 25.25 KB |
| @sentry/react (incl. Tracing) | 39.53 KB |
| @sentry/vue | 27.77 KB |
| @sentry/vue (incl. Tracing) | 39.34 KB |
| @sentry/svelte | 23.5 KB |
| CDN Bundle | 24.66 KB |
| CDN Bundle (incl. Tracing) | 37.63 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.58 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.9 KB |
| CDN Bundle - uncompressed | 71.95 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 111.4 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 222.7 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 235.23 KB |
| @sentry/nextjs (client) | 41.1 KB |
| @sentry/sveltekit (client) | 38.04 KB |
| @sentry/node | 154.45 KB |
| @sentry/node - without tracing | 95.77 KB |
| @sentry/aws-serverless | 120.52 KB |
9.19.0
- feat(react-router): Add otel instrumentation for server requests (#16147)
- feat(remix): Vendor in
opentelemetry-instrumentation-remix(#16145) - fix(browser): Ensure spans auto-ended for navigations have
cancelledreason (#16277) - fix(node): Pin
@fastify/otelfork to direct url to allow installing without git (#16287) - fix(react): Handle nested parameterized routes in reactrouterv3 transaction normalization (#16274)
Work in this release was contributed by @sidx1024. Thank you for your contribution!
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.4 KB |
| @sentry/browser - with treeshaking flags | 23.06 KB |
| @sentry/browser (incl. Tracing) | 37.31 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.53 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 67.72 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.19 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 91 KB |
| @sentry/browser (incl. Feedback) | 39.8 KB |
| @sentry/browser (incl. sendFeedback) | 28.03 KB |
| @sentry/browser (incl. FeedbackAsync) | 32.79 KB |
| @sentry/react | 25.17 KB |
| @sentry/react (incl. Tracing) | 39.27 KB |
| @sentry/vue | 27.67 KB |
| @sentry/vue (incl. Tracing) | 39.07 KB |
| @sentry/svelte | 23.43 KB |
| CDN Bundle | 24.58 KB |
| CDN Bundle (incl. Tracing) | 37.33 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.37 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.68 KB |
| CDN Bundle - uncompressed | 71.72 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 110.5 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 221.78 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 234.31 KB |
| @sentry/nextjs (client) | 40.88 KB |
| @sentry/sveltekit (client) | 37.77 KB |
| @sentry/node | 154.29 KB |
| @sentry/node - without tracing | 95.6 KB |
| @sentry/aws-serverless | 120.36 KB |
9.18.0
Important changes
- feat: Support Node 24 (#16236)
We now also publish profiling binaries for Node 24.
Other changes
- deps(node): Bump
import-in-the-middleto1.13.1(#16260) - feat: Export
consoleLoggingIntegrationfrom vercel edge sdk (#16228) - feat(cloudflare): Add support for email, queue, and tail handler (#16233)
- feat(cloudflare): Improve http span data (#16232)
- feat(nextjs): Add more attributes for generation functions (#16214)
- feat(opentelemetry): Widen peer dependencies to support Otel v2 (#16246)
- fix(core): Gracefully handle invalid baggage entries (#16257)
- fix(node): Ensure traces are propagated without spans in Node 22+ (#16221)
- fix(node): Use sentry forked
@fastify/oteldependency with pinned Otel v1 deps (#16256) - fix(remix): Remove vendored types (#16218)
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.4 KB |
| @sentry/browser - with treeshaking flags | 23.22 KB |
| @sentry/browser (incl. Tracing) | 37.3 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.53 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 68.37 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.18 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 90.99 KB |
| @sentry/browser (incl. Feedback) | 39.8 KB |
| @sentry/browser (incl. sendFeedback) | 28.03 KB |
| @sentry/browser (incl. FeedbackAsync) | 32.79 KB |
| @sentry/react | 25.17 KB |
| @sentry/react (incl. Tracing) | 39.26 KB |
| @sentry/vue | 27.67 KB |
| @sentry/vue (incl. Tracing) | 39.06 KB |
| @sentry/svelte | 23.43 KB |
| CDN Bundle | 24.58 KB |
| CDN Bundle (incl. Tracing) | 37.33 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.37 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.67 KB |
| CDN Bundle - uncompressed | 71.72 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 110.46 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 221.75 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 234.27 KB |
| @sentry/nextjs (client) | 40.88 KB |
| @sentry/sveltekit (client) | 37.76 KB |
| @sentry/node | 155.42 KB |
| @sentry/node - without tracing | 96 KB |
| @sentry/aws-serverless | 121.5 KB |
9.17.0
- feat(node): Migrate to
@fastify/otel(#15542)
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.35 KB |
| @sentry/browser - with treeshaking flags | 23.19 KB |
| @sentry/browser (incl. Tracing) | 37.25 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.47 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 68.34 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.12 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 90.93 KB |
| @sentry/browser (incl. Feedback) | 39.75 KB |
| @sentry/browser (incl. sendFeedback) | 27.98 KB |
| @sentry/browser (incl. FeedbackAsync) | 32.74 KB |
| @sentry/react | 25.16 KB |
| @sentry/react (incl. Tracing) | 39.24 KB |
| @sentry/vue | 27.63 KB |
| @sentry/vue (incl. Tracing) | 39.01 KB |
| @sentry/svelte | 23.38 KB |
| CDN Bundle | 24.55 KB |
| CDN Bundle (incl. Tracing) | 37.29 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.33 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.64 KB |
| CDN Bundle - uncompressed | 71.62 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 110.34 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 221.63 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 234.15 KB |
| @sentry/nextjs (client) | 40.84 KB |
| @sentry/sveltekit (client) | 37.73 KB |
| @sentry/node | 151.37 KB |
| @sentry/node - without tracing | 95.77 KB |
| @sentry/aws-serverless | 120.16 KB |
9.16.1
- fix(core): Make sure logs get flushed in server-runtime-client (#16222)
- ref(node): Remove vercel flushing code that does nothing (#16217)
Bundle size π¦
| Path | Size |
|---|---|
| @sentry/browser | 23.35 KB |
| @sentry/browser - with treeshaking flags | 23.19 KB |
| @sentry/browser (incl. Tracing) | 37.25 KB |
| @sentry/browser (incl. Tracing, Replay) | 74.47 KB |
| @sentry/browser (incl. Tracing, Replay) - with treeshaking flags | 68.34 KB |
| @sentry/browser (incl. Tracing, Replay with Canvas) | 79.12 KB |
| @sentry/browser (incl. Tracing, Replay, Feedback) | 90.93 KB |
| @sentry/browser (incl. Feedback) | 39.75 KB |
| @sentry/browser (incl. sendFeedback) | 27.98 KB |
| @sentry/browser (incl. FeedbackAsync) | 32.74 KB |
| @sentry/react | 25.16 KB |
| @sentry/react (incl. Tracing) | 39.24 KB |
| @sentry/vue | 27.63 KB |
| @sentry/vue (incl. Tracing) | 39.01 KB |
| @sentry/svelte | 23.38 KB |
| CDN Bundle | 24.55 KB |
| CDN Bundle (incl. Tracing) | 37.29 KB |
| CDN Bundle (incl. Tracing, Replay) | 72.33 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) | 77.64 KB |
| CDN Bundle - uncompressed | 71.62 KB |
| CDN Bundle (incl. Tracing) - uncompressed | 110.34 KB |
| CDN Bundle (incl. Tracing, Replay) - uncompressed | 221.63 KB |
| CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 234.15 KB |
| @sentry/nextjs (client) | 40.84 KB |
| @sentry/sveltekit (client) | 37.73 KB |
| @sentry/node | 143.93 KB |
| @sentry/node - without tracing | 95.77 KB |
| @sentry/aws-serverless | 120.16 KB |