Find flaky tests and see which lines failed which tests, right in the PR.
The NestJS SDK is now officially in beta, starting with the 8.28.0 release of our SDK.
Uptime Monitoring is now available in early access to help track your website's availability. It automatically detects and monitors your most critical URL, triggering alerts based on its status. Make sure to enable early adopter access to use this feature.
The JavaScript SDK now supports the Long Animation Frames API for performance tracing.
We have recently added a few new integrations to our Python SDK, and made it easier for users to configure which integrations they want activated as well.
Working with open source projects has the benefit of allowing engineers at Sentry to work with other developers who are excited to contribute to our code base. We have such contributors to thank for adding Dramatiq, Litestar and Ray integrations. All of which are now available with the 2.13.0 release of the Python SDK.
A trace-related issue enables you to discover another issue within the same trace. Seeing that another issue occurred close to your error provides helpful debugging context so you can find a fix sooner.
All organizations on the Codecov Enterprise plan are now able to authenticate users through Okta
Developers looking to work with an official Sentry SDK for their Nuxt applications are in luck. Our Nuxt SDK is currently available in an alpha state, starting with release 8.23.0 of our SDK. See our Nuxt SDK docs to learn more about integrating the SDK into your apps.
While we continue to work on preparing features of the SDK and documentation, we are happy to receive your feedback in our GitHub tracking issue here .
Turso allows developers to ship applicaitons with SQLite solutions to production. Enabling developers to scale and provide proximity to their users.
Together with Sentry, it is now even easier to monitor those applications and database interactions.
The breadcrumbs section of the issue details page has a new look! You'll have an easier time searching/filtering/sorting your crumbs in the full-page slide out view!
Sentry issue alerts now support IN and NOT IN conditions for tags and attributes
We enriched the available information on the Stats page, so you can easily understand the reason events are being filtered or dropped.
Actionable hydration errors based on replay data are now available for early adopters.
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.
We are happy to announce that the Sentry NestJS SDK is now live.
PHP developers working with wordpress have been able to integrate Sentry into their application for error monitoring using a community maintained integration. With the latest release it now supports tracing and profiling as well.
Check out the latest release v7.17.0 to try it out,
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:
allowUrls and denyUrls optionsthirdPartyErrorFilterIntegration (recommended)Directly search for relevant traces to help debug problems
We are happy to announce that the Sentry Solid SDK is now live.
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.