@sentry/angular
Advanced tools
Changelog
9.42.1
globalThis
(#17185)handleErrorWithSentry
(#17174)Changelog
9.41.0
enableLogs
and beforeSendLog
option (#17092)Sentry now has support for structured logging. Previously to enable structured logging, you had to use the _experiments.enableLogs
and _experiments.beforeSendLog
options. These options have been deprecated in favor of the top-level enableLogs
and beforeSendLog
options.
// before
Sentry.init({
_experiments: {
enableLogs: true,
beforeSendLog: log => {
return log;
},
},
});
// after
Sentry.init({
enableLogs: true,
beforeSendLog: log => {
return log;
},
});
Server-side and client-side parameterized routes are now supported in the Astro SDK. No configuration changes are required.
vercelAiIntegration
have correct trace (#17142)Work in this release was contributed by @richardjelinek-fastest. Thank you for your contribution!