Releases: getsentry/sentry-javascript
7.73.0
Important Changes
- feat(replay): Upgrade to rrweb2
This is fully backwards compatible with prior versions of the Replay SDK. The only breaking change that we will making is to not be masking aria-label
by default. The reason for this change is to align with our core SDK which also does not mask aria-label
. This change also enables better support of searching by clicks.
Another change that needs to be highlighted is the 13% bundle size increase. This bundle size increase is necessary to bring improved recording performance and improved replay fidelity, especially in regards to web components and iframes. We will be investigating the reduction of the bundle size in this PR.
Here are benchmarks comparing the version 1 of rrweb to version 2
metric | v1 | v2 |
---|---|---|
lcp | 1486.06 ms | 1529.11 ms |
cls | 0.40 ms | 0.40 ms |
fid | 1.53 ms | 1.50 ms |
tbt | 3207.22 ms | 3036.80 ms |
memoryAvg | 131.83 MB | 124.84 MB |
memoryMax | 324.8 MB | 339.03 MB |
netTx | 282.67 KB | 272.51 KB |
netRx | 8.02 MB | 8.07 MB |
Other Changes
- feat: Always assemble Envelopes (#9101)
- feat(node): Rate limit local variables for caught exceptions and enable
captureAllExceptions
by default (#9102) - fix(core): Ensure
tunnel
is considered forisSentryUrl
checks (#9130) - fix(nextjs): Fix
RequestAsyncStorage
fallback path (#9126) - fix(node-otel): Suppress tracing for generated sentry spans (#9142)
- fix(node): fill in span data from http request options object (#9112)
- fix(node): Fixes and improvements to ANR detection (#9128)
- fix(sveltekit): Avoid data invalidation in wrapped client-side
load
functions (#9071) - ref(core): Refactor
InboundFilters
integration to useprocessEvent
(#9020) - ref(wasm): Refactor Wasm integration to use
processEvent
(#9019)
Work in this release contributed by @vlad-zhukov. Thank you for your contribution!
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 84.26 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.42 KB |
@sentry/browser - Webpack (gzipped) | 22 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 78.69 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.52 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.59 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 254.14 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 86.42 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 61.23 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.38 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 84.28 KB |
@sentry/react - Webpack (gzipped) | 22.03 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 102.2 KB |
@sentry/nextjs Client - Webpack (gzipped) | 50.95 KB |
7.72.0
Important Changes
- feat(node): App Not Responding with stack traces (#9079)
This release introduces support for Application Not Responding (ANR) errors for Node.js applications.
These errors are triggered when the Node.js main thread event loop of an application is blocked for more than five seconds.
The Node SDK reports ANR errors as Sentry events and can optionally attach a stacktrace of the blocking code to the ANR event.
To enable ANR detection, import and use the enableANRDetection
function from the @sentry/node
package before you run the rest of your application code.
Any event loop blocking before calling enableANRDetection
will not be detected by the SDK.
Example (ESM):
import * as Sentry from "@sentry/node";
Sentry.init({
dsn: "___PUBLIC_DSN___",
tracesSampleRate: 1.0,
});
await Sentry.enableANRDetection({ captureStackTrace: true });
// Function that runs your app
runApp();
Example (CJS):
const Sentry = require("@sentry/node");
Sentry.init({
dsn: "___PUBLIC_DSN___",
tracesSampleRate: 1.0,
});
Sentry.enableANRDetection({ captureStackTrace: true }).then(() => {
// Function that runs your app
runApp();
});
Other Changes
- fix(nextjs): Filter
RequestAsyncStorage
locations by locations that webpack will resolve (#9114) - fix(replay): Ensure
replay_id
is not captured when session is expired (#9109)
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 75.58 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.46 KB |
@sentry/browser - Webpack (gzipped) | 22.06 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 70.28 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.57 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.65 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 222.21 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 86.57 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 61.42 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.43 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 75.61 KB |
@sentry/react - Webpack (gzipped) | 22.09 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 93.48 KB |
@sentry/nextjs Client - Webpack (gzipped) | 51.04 KB |
7.71.0
- feat(bun): Instrument Bun.serve (#9080)
- fix(core): Ensure global event processors are always applied to event (#9064)
- fix(core): Run client eventProcessors before global ones (#9032)
- fix(nextjs): Use webpack module paths to attempt to resolve internal request async storage module (#9100)
- fix(react): Add actual error name to boundary error name (#9065)
- fix(react): Compare location against
basename
-prefixed route. (#9076) - ref(browser): Refactor browser integrations to use
processEvent
(#9022)
Work in this release contributed by @jorrit. Thank you for your contribution!
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 75.58 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.46 KB |
@sentry/browser - Webpack (gzipped) | 22.06 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 70.27 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.57 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.64 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 222.17 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 86.57 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 61.42 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.43 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 75.6 KB |
@sentry/react - Webpack (gzipped) | 22.09 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 93.48 KB |
@sentry/nextjs Client - Webpack (gzipped) | 51.04 KB |
7.70.0
Important Changes
- feat: Add Bun SDK (#9029)
This release contains the beta version of @sentry/bun
, our SDK for the Bun JavaScript runtime! For details on how to use it, please see the README. Any feedback/bug reports are greatly appreciated, please reach out on GitHub.
Note that as of now the Bun runtime does not support global error handlers. This is being actively worked on, see the tracking issue in Bun's GitHub repo.
- feat(remix): Add Remix 2.x release support. (#8940)
The Sentry Remix SDK now officially supports Remix v2! See our Remix docs for more details.
Other Changes
- chore(node): Upgrade cookie to ^0.5.0 (#9013)
- feat(core): Introduce
processEvent
hook onIntegration
(#9017) - feat(node): Improve non-error messages (#9026)
- feat(vercel-edge): Add Vercel Edge Runtime package (#9041)
- fix(remix): Use
React.ComponentType
instead ofReact.FC
aswithSentry
's generic type. (#9043) - fix(replay): Ensure replay events go through
preprocessEvent
hook (#9034) - fix(replay): Fix typo in Replay types (#9028)
- fix(sveltekit): Adjust
handleErrorWithSentry
type (#9054) - fix(utils): Try-catch monkeypatching to handle frozen objects/functions (#9031)
Work in this release contributed by @Dima-Dim, @krist7599555 and @lifeiscontent. Thank you for your contributions!
Special thanks for @isaacharrisholt for helping us implement a Vercel Edge Runtime SDK which we use under the hood for our Next.js SDK.
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 75.58 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.49 KB |
@sentry/browser - Webpack (gzipped) | 22.09 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 70.27 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.59 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.66 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 222.15 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 86.64 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 61.49 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.46 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 75.61 KB |
@sentry/react - Webpack (gzipped) | 22.12 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 93.49 KB |
@sentry/nextjs Client - Webpack (gzipped) | 51.07 KB |
7.70.0-beta.1
Important Changes
- feat(replay): Upgrade to rrweb2.0
This is fully backwards compatible with previously recorded replays. Only breaking change is that we will not be masking aria-label
by default. This is to better support searching by clicks. Another issue is there is about a 13% bundle size increase, however this comes with improved performance and improved replay fidelity especially in regards to web components.
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 84.27 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.5 KB |
@sentry/browser - Webpack (gzipped) | 22.09 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 78.69 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.61 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.67 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 254.08 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 86.66 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 61.5 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.48 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 84.29 KB |
@sentry/react - Webpack (gzipped) | 22.12 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 102.22 KB |
@sentry/nextjs Client - Webpack (gzipped) | 51.07 KB |
7.70.0-beta.0
Important Changes
- feat(replay): Upgrade to rrweb2.0
This is fully backwards compatible with previously recorded replays. Only breaking change is that we will not be masking aria-label
by default. This is to better support searching by clicks. Another issue is there is about a 13% bundle size increase, however this comes with improved performance and improved replay fidelity especially in regards to web components.
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 84.09 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.32 KB |
@sentry/browser - Webpack (gzipped) | 21.92 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 78.61 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.52 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.6 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 253.77 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 86.35 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 61.19 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.4 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 84.12 KB |
@sentry/react - Webpack (gzipped) | 21.95 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 102.02 KB |
@sentry/nextjs Client - Webpack (gzipped) | 50.89 KB |
7.69.0
Important Changes
- New Performance APIs
This release introduces a new set of top level APIs for the Performance Monitoring SDKs. These aim to simplify creating spans and reduce the boilerplate needed for performance instrumentation. The three new methods introduced are Sentry.startSpan
, Sentry.startInactiveSpan
, and Sentry.startSpanManual
. These methods are available in the browser and node SDKs.
Sentry.startSpan
wraps a callback in a span. The span is automatically finished when the callback returns. This is the recommended way to create spans.
// Start a span that tracks the duration of expensiveFunction
const result = Sentry.startSpan({ name: 'important function' }, () => {
return expensiveFunction();
});
// You can also mutate the span wrapping the callback to set data or status
Sentry.startSpan({ name: 'important function' }, (span) => {
// span is undefined if performance monitoring is turned off or if
// the span was not sampled. This is done to reduce overhead.
span?.setData('version', '1.0.0');
return expensiveFunction();
});
If you don't want the span to finish when the callback returns, use Sentry.startSpanManual
to control when the span is finished. This is useful for event emitters or similar.
// Start a span that tracks the duration of middleware
function middleware(_req, res, next) {
return Sentry.startSpanManual({ name: 'middleware' }, (span, finish) => {
res.once('finish', () => {
span?.setHttpStatus(res.status);
finish();
});
return next();
});
}
Sentry.startSpan
and Sentry.startSpanManual
create a span and make it active for the duration of the callback. Any spans created while this active span is running will be added as a child span to it. If you want to create a span without making it active, use Sentry.startInactiveSpan
. This is useful for creating parallel spans that are not related to each other.
const span1 = Sentry.startInactiveSpan({ name: 'span1' });
someWork();
const span2 = Sentry.startInactiveSpan({ name: 'span2' });
moreWork();
const span3 = Sentry.startInactiveSpan({ name: 'span3' });
evenMoreWork();
span1?.finish();
span2?.finish();
span3?.finish();
Other Changes
- feat(core): Export
BeforeFinishCallback
type (#8999) - build(eslint): Enforce that ts-expect-error is used (#8987)
- feat(integration): Ensure
LinkedErrors
integration runs before all event processors (#8956) - feat(node-experimental): Keep breadcrumbs on transaction (#8967)
- feat(redux): Add 'attachReduxState' option (#8953)
- feat(remix): Accept
org
,project
andurl
as args to upload script (#8985) - fix(utils): Prevent iterating over VueViewModel (#8981)
- fix(utils): uuidv4 fix for cloudflare (#8968)
- fix(core): Always use event message and exception values for
ignoreErrors
(#8986) - fix(nextjs): Add new potential location for Next.js request AsyncLocalStorage (#9006)
- fix(node-experimental): Ensure we only create HTTP spans when outgoing (#8966)
- fix(node-experimental): Ignore OPTIONS & HEAD requests (#9001)
- fix(node-experimental): Ignore outgoing Sentry requests (#8994)
- fix(node-experimental): Require parent span for
pg
spans (#8993) - fix(node-experimental): Use Sentry logger as Otel logger (#8960)
- fix(node-otel): Refactor OTEL span reference cleanup (#9000)
- fix(react): Switch to props in
useRoutes
(#8998) - fix(remix): Add
glob
to Remix SDK dependencies. (#8963) - fix(replay): Ensure
handleRecordingEmit
aborts when event is not added (#8938) - fix(replay): Fully stop & restart session when it expires (#8834)
Work in this release contributed by @Duncanxyz and @malay44. Thank you for your contributions!
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 75.39 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.32 KB |
@sentry/browser - Webpack (gzipped) | 21.92 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 70.17 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.51 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.59 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 221.8 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 86.33 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 61.18 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.39 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 75.42 KB |
@sentry/react - Webpack (gzipped) | 21.95 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 93.28 KB |
@sentry/nextjs Client - Webpack (gzipped) | 50.89 KB |
7.68.0
- feat(browser): Add
BroadcastChannel
andSharedWorker
to TryCatch EventTargets (#8943) - feat(core): Add
name
toSpan
(#8949) - feat(core): Add
ServerRuntimeClient
(#8930) - fix(node-experimental): Ensure
span.finish()
works as expected (#8947) - fix(remix): Add new sourcemap-upload script files to prepack assets. (#8948)
- fix(publish): Publish downleveled TS3.8 types and fix types path (#8954)
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 75.35 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.24 KB |
@sentry/browser - Webpack (gzipped) | 21.84 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 69.87 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.18 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.18 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 220.81 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 85.09 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 59.73 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.08 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 75.37 KB |
@sentry/react - Webpack (gzipped) | 21.88 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 93.23 KB |
@sentry/nextjs Client - Webpack (gzipped) | 50.81 KB |
7.67.0
Important Changes
- feat: Mark errors caught by the SDK as unhandled
- feat(browser): Mark errors caught from
TryCatch
integration as unhandled (#8890) - feat(integrations): Mark errors caught from
HttpClient
andCaptureConsole
integrations as unhandled (#8891) - feat(nextjs): Mark errors caught from NextJS wrappers as unhandled (#8893)
- feat(react): Mark errors captured from ErrorBoundary as unhandled (#8914)
- feat(remix): Mark errors caught from Remix instrumentation as unhandled (#8894)
- feat(serverless): Mark errors caught in Serverless handlers as unhandled (#8907)
- feat(vue): Mark errors caught by Vue wrappers as unhandled (#8905)
- feat(browser): Mark errors caught from
This release fixes inconsistent behaviour of when our SDKs classify captured errors as unhandled.
Previously, some of our instrumentations correctly set unhandled, while others set handled.
Going forward, all errors caught automatically from our SDKs will be marked as unhandled.
If you manually capture errors (e.g. by calling Sentry.captureException
), your errors will continue to be reported as handled.
This change might lead to a decrease in reported crash-free sessions and consequently in your release health score.
If you have concerns about this, feel free to open an issue.
Other Changes
- feat(node-experimental): Implement new performance APIs (#8911)
- feat(node-experimental): Sync OTEL context with Sentry AsyncContext (#8797)
- feat(replay): Allow to configure
maxReplayDuration
(#8769) - feat(remix): Add debugid injection and map deletion to sourcemaps script (#8814)
- fix(browser): Add replay and profiling options to
BrowserClientOptions
(#8921) - fix(browser): Check for existence of instrumentation targets (#8939)
- fix(nextjs): Don't re-export default in route handlers (#8924)
- fix(node): Improve mysql integration (#8923)
- fix(remix): Guard against missing default export for server instrument (#8909)
- ref(browser): Deprecate top-level
wrap
function (#8927) - ref(node-otel): Avoid exporting internals & refactor attribute adding (#8920)
Work in this release contributed by @SorsOps. Thank you for your contribution!
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 75.32 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.21 KB |
@sentry/browser - Webpack (gzipped) | 21.83 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 69.83 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.16 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.15 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 220.71 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 84.99 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 59.7 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.05 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 75.34 KB |
@sentry/react - Webpack (gzipped) | 21.86 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 93.2 KB |
@sentry/nextjs Client - Webpack (gzipped) | 50.78 KB |
7.67.0-beta.0
Important Changes
- feat(replay): Upgrade to rrweb2.0
This should be fully backwards compatible with previously recorded replays. Only breaking change is that we will not be masking aria-label
by default. This is to better support searching by clicks. Another issue is there is about a 13% bundle size increase, however this comes with improved performance and improved replay fidelity especially in regards to web components.
Bundle size 📦
Path | Size |
---|---|
@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) | 83.83 KB |
@sentry/browser (incl. Tracing) - Webpack (gzipped) | 31.22 KB |
@sentry/browser - Webpack (gzipped) | 21.84 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 78.11 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) | 28.17 KB |
@sentry/browser - ES6 CDN Bundle (gzipped) | 20.16 KB |
@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 251.58 KB |
@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 85.02 KB |
@sentry/browser - ES6 CDN Bundle (minified & uncompressed) | 59.72 KB |
@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.07 KB |
@sentry/react (incl. Tracing, Replay) - Webpack (gzipped) | 83.86 KB |
@sentry/react - Webpack (gzipped) | 21.87 KB |
@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) | 101.75 KB |
@sentry/nextjs Client - Webpack (gzipped) | 50.79 KB |