Sentry Changelog

Follow @SentryChangelog to stay up to date on everything from product updates to SDK changes.

July 2024

Sentry issue alerts now support `IN` and `NOT IN` conditions for tags and attributes

ISSUES
Alerts
Notifications

Sentry issue alerts now support IN and NOT IN conditions for tags and attributes

Clearer Insights into Your Sentry Data with Our Updated Stats Page

BILLING-AND-SPEND
STATS

We enriched the available information on the Stats page, so you can easily understand the reason events are being filtered or dropped.

Helping You Solve Hydration Errors: Visual and HTML Diff Tooling

JAVASCRIPT
REPLAY
EARLY-ACCESS

Actionable hydration errors based on replay data are now available for early adopters.

Mobile Replay is Now in Open Beta

Mobile Replay is Now in Open Beta

REPLAY
ANDROID
IOS
MOBILE
REACT-NATIVE

We’re excited to finally announce that Session Replay is now available for mobile applications in open beta for React Native, iOS and Android. Session Replay lets developers see a visual reproduction of user engagement with their app, so you can understand when, where, and how an error is impacting your app without having to repro it yourself or talk to a customer.

The Sentry NestJS SDK is live

The Sentry NestJS SDK is live

SDKS
JAVASCRIPT

We are happy to announce that the Sentry NestJS SDK is now live.

June 2024

Ignore errors that don't come from your code

ISSUES
JAVASCRIPT
FRONTEND

A lot of noisy errors come from JavaScript that wasn't written by yourself. Browser extensions, code-injecting browsers, or widgets from third-party services all may throw errors that you cannot address.

There are two possibilities to filter out these kinds of errors:

  1. Using the allowUrls and denyUrls options
  2. Using the thirdPartyErrorFilterIntegration (recommended)
Search for your Traces

Search for your Traces

PERFORMANCE

Directly search for relevant traces to help debug problems

The Sentry Solid SDK is live

The Sentry Solid SDK is live

SDKS
JAVASCRIPT

We are happy to announce that the Sentry Solid SDK is now live.

Improved Remix SDK Support

SDKS
JAVASCRIPT
PERFORMANCE

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.