@sentry/node
Advanced tools
Changelog
9.28.0
TracingInterceptor
(#16501)With this change we stop creating spans for TracingInterceptor
as this interceptor only serves as an internal helper and adds noise for the user.
This feature ships updates to the span names and ops to better match OpenTelemetry. This should make them more easily accessible to the new agents module view we are building.
vercelAIIntegration
from @sentry/node
(#16496)Work in this release was contributed by @agrattan0820. Thank you for your contribution!
Changelog
9.27.0
ReactRouterServer
integration (#16470)Changelog
9.25.0
mark
and measure
spans (#16443)This release adds an option to browserTracingIntegration
that lets you ignore
mark
and measure
spans created from the performance.mark(...)
and performance.measure(...)
browser APIs:
Sentry.init({
integrations: [
Sentry.browserTracingIntegration({
ignorePerformanceApiSpans: ['measure-to-ignore', /mark-to-ignore/],
}),
],
});
Changelog
9.23.0
Adds an option to opt out of certain resource.*
spans via ignoreResourceSpans
.
For example, to opt out of resource.script
spans:
Sentry.browserTracingIntegration({
ignoreResourceSpans: ['resource.script'],
}),
isEnabled
from all SDKs (#16405)init()
(#16354)captureLog
(#16352)_INTERNAL_captureSerializedLog
(#16387)static/chunks/main-*
files for widenClientFileUpload
(#16406)browserTracingIntegration
code to setup
hook (#16386)@sentry/nuxt
as external in Rollup (#16407)withScope
keeps span active & _getTraceInfoFromScope
works (#16385)Work in this release was contributed by @Xenossolitarius. Thank you for your contribution!
Changelog
9.22.0
This is a revert of a feature introduced in 9.20.0
with #16240. This feature was causing crashes in firefox, so we are reverting it. We will re-enable this functionality in the future after fixing the crash.
Changelog
9.21.0
@fastify/otel
(#16328)OnEvent
decorators (#16306)client
exports to server
and cloudflare
entries (#16341)Work in this release was contributed by @phthhieu. Thank you for your contribution!