Skip to content

Releases: getsentry/sentry-javascript

7.55.2

14 Jun 14:26
Compare
Choose a tag to compare
  • fix(replay): Stop exporting EventType from @sentry-internal/rrweb (#8334)
  • fix(serverless): Export captureCheckIn (#8333)

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.12 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.86 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.65 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.34 KB
@sentry/browser - Webpack (gzipped + minified) 21.28 KB
@sentry/browser - Webpack (minified) 69.26 KB
@sentry/react - Webpack (gzipped + minified) 21.31 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.23 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.74 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.98 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 48.6 KB
@sentry/replay - Webpack (gzipped + minified) 42.26 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 67.63 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 60.54 KB

7.55.1

14 Jun 11:16
Compare
Choose a tag to compare
  • fix(replay): Do not export types from @sentry-internal/rrweb (#8329)

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.12 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.86 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.65 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.34 KB
@sentry/browser - Webpack (gzipped + minified) 21.28 KB
@sentry/browser - Webpack (minified) 69.26 KB
@sentry/react - Webpack (gzipped + minified) 21.31 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.23 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.74 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.98 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 48.6 KB
@sentry/replay - Webpack (gzipped + minified) 42.26 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 67.63 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 60.54 KB

7.55.0

13 Jun 14:32
Compare
Choose a tag to compare
  • feat(replay): Capture slow clicks (GA) (#8298)
  • feat(replay): Improve types for replay recording events (#8224)
  • fix(nextjs): Strip query params from transaction names of navigations to unknown routes (#8278)
  • fix(replay): Ignore max session life for buffered sessions (#8258)
  • fix(sveltekit): Export captureCheckIn (#8313)
  • ref(svelte): Add Svelte 4 as a peer dependency (#8280)

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.12 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.86 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.65 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.34 KB
@sentry/browser - Webpack (gzipped + minified) 21.28 KB
@sentry/browser - Webpack (minified) 69.26 KB
@sentry/react - Webpack (gzipped + minified) 21.31 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.23 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.74 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.98 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 48.68 KB
@sentry/replay - Webpack (gzipped + minified) 42.26 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 67.63 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 60.54 KB

7.54.0

01 Jun 14:14
Compare
Choose a tag to compare

Important Changes

  • feat(core): Add default entries to ignoreTransactions for Healthchecks #8191

    All SDKs now filter out health check transactions by default.
    These are transactions where the transaction name matches typical API health check calls, such as /^.*healthy.*$/ or /^. *heartbeat.*$/. Take a look at this list to learn which regexes we currently use to match transaction names.
    We believe that these transactions do not provide value in most cases and we want to save you some of your quota by filtering them out by default.
    These filters are implemented as default values for the top level ignoreTransactions option.

    You can disable this filtering by manually specifiying the InboundFilters integration and setting the disableTransactionDefaults option:

    Sentry.init({
      //...
      integrations: [new InboundFilters({ disableTransactionDefaults: true })],
    })
  • feat(replay): Add mutationBreadcrumbLimit and mutationLimit to Replay Options (#8228)

    The previously experimental options mutationBreadcumbLimit and mutationLimit have been promoted to regular Replay integration options.

    A high number of DOM mutations (in a single event loop) can cause performance regressions in end-users' browsers.
    Use mutationBreadcrumbLimit to send a breadcrumb along with your recording if the mutation limit was reached.
    Use mutationLimit to stop recording if the mutation limit was reached.

  • feat(sveltekit): Add source maps support for Vercel (lambda) (#8256)

    • feat(sveltekit): Auto-detect SvelteKit adapters (#8193)

    The SvelteKit SDK can now be used if you deploy your SvelteKit app to Vercel.
    By default, the SDK's Vite plugin will detect the used adapter and adjust the source map uploading config as necessary.
    If you want to override the default adapter detection, you can specify the adapter option in the sentrySvelteKit options:

    // vite.config.js
    export default defineConfig({
      plugins: [
        sentrySvelteKit({
          adapter: 'vercel',
        }),
        sveltekit(),
      ],
    });

    Currently, the Vite plugin will configure itself correctly for @sveltejs/adapter-auto, @sveltejs/adapter-vercel and @sveltejs/adapter-node.

    Important: The SvelteKit SDK is not yet compatible with Vercel's edge runtime.
    It will only work for lambda functions.

Other Changes

  • feat(replay): Throttle breadcrumbs to max 300/5s (#8086)
  • feat(sveltekit): Add option to control handling of unknown server routes (#8201)
  • fix(node): Strip query and fragment from request URLs without route parameters (#8213)
  • fix(remix): Don't log missing parameters warning on server-side. (#8269)
  • fix(remix): Pass loadContext through wrapped document request function (#8268)
  • fix(replay): Guard against missing key (#8246)
  • fix(sveltekit): Avoid capturing redirects and 4xx Http errors in request Handlers (#8215)
  • fix(sveltekit): Bump magicast to support satisfied keyword (#8254)
  • fix(wasm): Avoid throwing an error when WASM modules are loaded from blobs (#8263)

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.12 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.86 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.65 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.34 KB
@sentry/browser - Webpack (gzipped + minified) 21.28 KB
@sentry/browser - Webpack (minified) 69.26 KB
@sentry/react - Webpack (gzipped + minified) 21.31 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.23 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.74 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.98 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 48.58 KB
@sentry/replay - Webpack (gzipped + minified) 42.28 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 67.63 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 60.55 KB

7.53.1

24 May 16:18
Compare
Choose a tag to compare
  • chore(deps): bump socket.io-parser from 4.2.1 to 4.2.3 (#8196)
  • chore(svelte): Bump magic-string to 0.30.0 (#8197)
  • fix(core): Fix racecondition that modifies in-flight sessions (#8203)
  • fix(node): Catch os.uptime() throwing because of EPERM (#8206)
  • fix(replay): Fix buffered replays creating replay w/o error occuring (#8168)

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.05 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.69 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.59 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.16 KB
@sentry/browser - Webpack (gzipped + minified) 21.21 KB
@sentry/browser - Webpack (minified) 69.08 KB
@sentry/react - Webpack (gzipped + minified) 21.23 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.16 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.67 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.91 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 48.25 KB
@sentry/replay - Webpack (gzipped + minified) 42.1 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 67.22 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 60.12 KB

7.53.0

23 May 10:50
Compare
Choose a tag to compare
  • feat(replay): Add beforeAddRecordingEvent Replay option (#8124)
  • feat(replay): Do not capture replays < 5 seconds (#7949)
  • fix(nextjs): Guard for non-absolute paths when injecting sentry config (#8151)
  • fix(nextjs): Import path issue on Windows (#8142)
  • fix(nextjs): Make withSentryConfig isomorphic (#8166)
  • fix(node): Add debug logging for node checkin (#8131)
  • fix(node): Add LRU map for tracePropagationTargets calculation (#8130)
  • fix(node): Remove new URL usage in Undici integration (#8147)
  • fix(replay): Show the correct Replay config option name maskFn
  • fix(sveltekit): Avoid double-wrapping load functions (#8094)
  • fix(tracing): Change where content-length gets added (#8139)
  • fix(tracing): Use integer for content length (#8152)
  • fix(utils): Fail silently if the provided Dsn is invalid (#8121)
  • ref(node): Cache undici trace propagation decisions (#8136)
  • ref(serverless): Remove relay extension from AWS Layer (#8080)

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.03 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.68 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.59 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.15 KB
@sentry/browser - Webpack (gzipped + minified) 21.2 KB
@sentry/browser - Webpack (minified) 69.07 KB
@sentry/react - Webpack (gzipped + minified) 21.22 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.16 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.67 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.9 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 48.24 KB
@sentry/replay - Webpack (gzipped + minified) 42.1 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 67.21 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 60.11 KB

7.52.1

15 May 17:10
Compare
Choose a tag to compare
  • feat(replay): Capture slow clicks (experimental) (#8052)

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.03 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.63 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.57 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.09 KB
@sentry/browser - Webpack (gzipped + minified) 21.17 KB
@sentry/browser - Webpack (minified) 69.04 KB
@sentry/react - Webpack (gzipped + minified) 21.19 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.12 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.65 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.89 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 48.13 KB
@sentry/replay - Webpack (gzipped + minified) 42.02 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 67.09 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 59.99 KB

7.52.0

15 May 13:48
Compare
Choose a tag to compare

Important Next.js SDK changes:

This release adds support Vercel Cron Jobs in the Next.js SDK.
The SDK will automatically create Sentry Cron Monitors for your Vercel Cron Jobs configured via vercel.json when deployed on Vercel.

You can opt out of this functionality by setting the automaticVercelMonitors option to false:

// next.config.js
const nextConfig = {
  sentry: {
    automaticVercelMonitors: false,
  },
};

(Note: Sentry Cron Monitoring is currently in beta and subject to change. Help us make it better by letting us know what you think. Respond on GitHub or write to us at [email protected])

  • feat(nextjs): Add API method to wrap API routes with crons instrumentation (#8084)
  • feat(nextjs): Add automatic monitors for Vercel Cron Jobs (#8088)

Other changes

  • feat(replay): Capture keyboard presses for special characters (#8051)
  • fix(build): Don't mangle away global debug ID map (#8096)
  • fix(core): Return checkin id from client (#8116)
  • fix(core): Use last error for ignoreErrors check (#8089)
  • fix(docs): Change to addTracingExtensions was not documented in MIGRATION.md (#8101)
  • fix(replay): Check relative URLs correctly (#8024)
  • fix(tracing-internal): Avoid classifying protocol-relative URLs as same-origin urls (#8114)
  • ref: Hoist createCheckinEnvelope to core package (#8082)

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.03 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.63 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.57 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.09 KB
@sentry/browser - Webpack (gzipped + minified) 21.17 KB
@sentry/browser - Webpack (minified) 69.04 KB
@sentry/react - Webpack (gzipped + minified) 21.19 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.12 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.65 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.89 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 47.7 KB
@sentry/replay - Webpack (gzipped + minified) 41.57 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 66.6 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 59.48 KB

7.51.2

08 May 18:42
Compare
Choose a tag to compare
  • fix(nextjs): Continue traces in data fetchers when there is an already active transaction on the hub (#8073)
  • fix(sveltekit): Avoid creating the Sentry Vite plugin in dev mode (#8065)

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.02 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.62 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.55 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.08 KB
@sentry/browser - Webpack (gzipped + minified) 21.16 KB
@sentry/browser - Webpack (minified) 69.03 KB
@sentry/react - Webpack (gzipped + minified) 21.18 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.09 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.64 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.87 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 47.35 KB
@sentry/replay - Webpack (gzipped + minified) 41.13 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 66.3 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 59.18 KB

7.51.1

08 May 12:31
Compare
Choose a tag to compare
  • feat(replay): Add event to capture options on checkouts (#8011)
  • feat(replay): Improve click target detection (#8026)
  • fix(node): Make sure we use same ID for checkIns (#8050)
  • fix(replay: Keep session active on key press (#8037)
  • fix(replay): Move error sampling to before send (#8057)
  • fix(sveltekit): Wrap load when typed explicitly (#8049)

Replay rrweb changes:

@sentry-internal/rrweb was updated from 1.106.0 to 1.108.0:

  • fix: Fix some input masking (esp for radio buttons) (#85)
  • fix: Unescaped : in CSS rule from Safari (#86)
  • feat: Define custom elements (web components) (#87)

Work in this release contributed by @sreetamdas. Thank you for your contribution!

Bundle size 📦

Path Size
@sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.01 KB
@sentry/browser - ES5 CDN Bundle (minified) 65.62 KB
@sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.55 KB
@sentry/browser - ES6 CDN Bundle (minified) 58.08 KB
@sentry/browser - Webpack (gzipped + minified) 21.16 KB
@sentry/browser - Webpack (minified) 69.03 KB
@sentry/react - Webpack (gzipped + minified) 21.18 KB
@sentry/nextjs Client - Webpack (gzipped + minified) 49.09 KB
@sentry/browser + @sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.64 KB
@sentry/browser + @sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.86 KB
@sentry/replay ES6 CDN Bundle (gzipped + minified) 47.35 KB
@sentry/replay - Webpack (gzipped + minified) 41.13 KB
@sentry/browser + @sentry/tracing + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 66.3 KB
@sentry/browser + @sentry/replay - ES6 CDN Bundle (gzipped + minified) 59.18 KB