Download Latest Version 9.46.0 source code.tar.gz (4.8 MB)
Email in envelope

Get an email when there's a new version of Sentry JS

Home / 10.4.0
Name Modified Size InfoDownloads / Week
Parent folder
sentry-browser-10.4.0.tgz 2025-08-11 209.1 kB
sentry-core-10.4.0.tgz 2025-08-11 715.1 kB
sentry-ember-10.4.0.tgz 2025-08-11 11.4 kB
sentry-gatsby-10.4.0.tgz 2025-08-11 5.8 kB
sentry-internal-feedback-10.4.0.tgz 2025-08-11 138.6 kB
sentry-internal-replay-10.4.0.tgz 2025-08-11 557.8 kB
sentry-internal-replay-canvas-10.4.0.tgz 2025-08-11 168.2 kB
sentry-internal-typescript-10.4.0.tgz 2025-08-11 1.9 kB
sentry-nestjs-10.4.0.tgz 2025-08-11 29.9 kB
sentry-nextjs-10.4.0.tgz 2025-08-11 247.7 kB
sentry-node-10.4.0.tgz 2025-08-11 198.7 kB
sentry-node-core-10.4.0.tgz 2025-08-11 281.2 kB
sentry-node-native-10.4.0.tgz 2025-08-11 17.7 kB
sentry-nuxt-10.4.0.tgz 2025-08-11 66.9 kB
sentry-opentelemetry-10.4.0.tgz 2025-08-11 128.0 kB
sentry-pino-transport-10.4.0.tgz 2025-08-11 9.9 kB
sentry-profiling-node-10.4.0.tgz 2025-08-11 56.7 kB
sentry-react-10.4.0.tgz 2025-08-11 77.0 kB
sentry-react-router-10.4.0.tgz 2025-08-11 49.9 kB
sentry-remix-10.4.0.tgz 2025-08-11 59.4 kB
sentry-solid-10.4.0.tgz 2025-08-11 9.1 kB
sentry-solidstart-10.4.0.tgz 2025-08-11 49.9 kB
sentry-svelte-10.4.0.tgz 2025-08-11 15.9 kB
sentry-sveltekit-10.4.0.tgz 2025-08-11 83.1 kB
sentry-tanstackstart-10.4.0.tgz 2025-08-11 3.2 kB
sentry-tanstackstart-react-10.4.0.tgz 2025-08-11 7.7 kB
sentry-types-10.4.0.tgz 2025-08-11 8.1 kB
sentry-vercel-edge-10.4.0.tgz 2025-08-11 313.3 kB
sentry-vue-10.4.0.tgz 2025-08-11 31.3 kB
sentry-wasm-10.4.0.tgz 2025-08-11 7.9 kB
sentry-angular-10.4.0.tgz 2025-08-11 60.5 kB
sentry-astro-10.4.0.tgz 2025-08-11 41.1 kB
sentry-aws-serverless-10.4.0.tgz 2025-08-11 25.1 kB
sentry-bun-10.4.0.tgz 2025-08-11 19.6 kB
sentry-cloudflare-10.4.0.tgz 2025-08-11 67.3 kB
sentry-deno-10.4.0.tgz 2025-08-11 25.7 kB
sentry-google-cloud-serverless-10.4.0.tgz 2025-08-11 23.3 kB
sentry-internal-browser-utils-10.4.0.tgz 2025-08-11 142.2 kB
sentry-internal-eslint-config-sdk-10.4.0.tgz 2025-08-11 5.3 kB
sentry-internal-eslint-plugin-sdk-10.4.0.tgz 2025-08-11 2.9 kB
sentry-node-serverless-10.4.0.zip 2025-08-11 1.7 MB
10.4.0 source code.tar.gz 2025-08-11 4.8 MB
10.4.0 source code.zip 2025-08-11 8.4 MB
README.md 2025-08-11 4.6 kB
Totals: 44 Items   18.9 MB 0

Important Changes

  • fix(browser): Ensure IP address is only inferred by Relay if sendDefaultPii is true

This release includes a fix for a behaviour change that was originally introduced with v9 of the SDK: User IP Addresses should only be added to Sentry events automatically, if sendDefaultPii was set to true.

However, the change in v9 required further internal adjustment, which should have been included in v10 of the SDK. Unfortunately, the change did not make it into the initial v10 version but is now applied with 10.4.0. There is no API breakage involved and hence it is safe to update. However, after updating the SDK, events (errors, traces, replays, etc.) sent from the browser, will only include user IP addresses, if you set sendDefaultPii: true in your Sentry.init options.

We apologize for any inconvenience caused!

  • feat(node): Add ignoreStaticAssets (#17370)

This release adds a new option to httpIntegration to ignore requests for static assets (e.g. favicon.xml or robots.txt). The option defaults to true, meaning that going forward, such requests will not be traced by default. You can still enable tracing for these requests by setting the option to false:

:::js
Sentry.init({
  integrations: [
    Sentry.httpIntegration({
      // defaults to true, set to false to enable traces for static assets
      ignoreStaticAssets: false,
    }),
  ],
});

Other Changes

  • fix(nuxt): Do not drop parametrized routes (#17357)
Internal Changes - ref(node): Split up incoming & outgoing http handling ([#17358](https://github.com/getsentry/sentry-javascript/pull/17358)) - test(node): Enable additionalDependencies in integration runner ([#17361](https://github.com/getsentry/sentry-javascript/pull/17361))

Bundle size 📦

Path Size
@sentry/browser 23.59 KB
@sentry/browser - with treeshaking flags 22.2 KB
@sentry/browser (incl. Tracing) 38.94 KB
@sentry/browser (incl. Tracing, Replay) 76.16 KB
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.24 KB
@sentry/browser (incl. Tracing, Replay with Canvas) 80.75 KB
@sentry/browser (incl. Tracing, Replay, Feedback) 92.57 KB
@sentry/browser (incl. Feedback) 39.87 KB
@sentry/browser (incl. sendFeedback) 28.13 KB
@sentry/browser (incl. FeedbackAsync) 32.92 KB
@sentry/react 25.27 KB
@sentry/react (incl. Tracing) 40.88 KB
@sentry/vue 27.97 KB
@sentry/vue (incl. Tracing) 40.72 KB
@sentry/svelte 23.62 KB
CDN Bundle 25.06 KB
CDN Bundle (incl. Tracing) 38.82 KB
CDN Bundle (incl. Tracing, Replay) 74.04 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 79.36 KB
CDN Bundle - uncompressed 73.2 KB
CDN Bundle (incl. Tracing) - uncompressed 114.83 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 226.44 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.75 KB
@sentry/nextjs (client) 42.86 KB
@sentry/sveltekit (client) 39.38 KB
@sentry/node-core 46.69 KB
@sentry/node 143.39 KB
@sentry/node - without tracing 89.89 KB
@sentry/aws-serverless 101.05 KB
Source: README.md, updated 2025-08-11