releases.shpreview
Sentry/Sentry Changelog/Improved Remix SDK Support

Improved Remix SDK Support

$npx -y @buildinternet/releases show rel_tSN5Y39IxmxEEKVv78v91

With the 8.10.0 release of our Remix SDK includes improvements to our tracing experience, and resolved a number of old issues.

You can now simplify your remix instrumentation by opting-in like this:

const Sentry = require('@sentry/remix');

Sentry.init({
  dsn: YOUR_DSN
  // opt-in to new auto instrumentation
  autoInstrumentRemix: true,
});

With this setup, you do not need to add e.g. wrapExpressCreateRequestHandler anymore. Additionally, the quality of the captured data improves. The old way to use @sentry/remix continues to work, but it is encouraged to use the new setup.

Fetched March 31, 2026