Releases: getsentry/sentry-javascript
6.18.2
If you are using @sentry-internal/eslint-config-sdk
, please note that this release turns on the quotes rule to enforce usage of single quotes.
This release also removes @sentry/tracing
as a dependency of @sentry/node
. Please explicitly install and import @sentry/tracing
if you want to use performance monitoring capabilities. For more details, see our docs on setting up Node Performance Monitoring.
We also now produce an ES6 version of our CDN tracing bundle, which can be accessed with bundle.tracing.es6.min.js
.
- chore(eslint): Turn on quotes rules (#4671)
- fix(node): prevent errors thrown on flush from breaking response (#4667)
- ref(node): Remove dependency on @sentry/tracing (#4647)
- fix(tracing): Make method required in transactionSampling type (#4657)
- feat(tracing): Add ES6 tracing bundle (#4674)
Work in this release contributed by @Ignigena. Thank you for your contribution!
6.18.1-beta.0
This patch builds on top of the https://github.com/getsentry/sentry-javascript/releases/tag/6.17.8-beta.0 beta.
It adds an additional finish reason that covers the case where a transaction was getting externally finished.
- feat(tracing): Reset IdleTimeout based on activities count (#4531)
6.18.1
- fix(ember): use _backburner if it exists (#4603)
- feat(gatsby): Upgrade Sentry Webpack Plugin to 1.18.8 (#4636)
- feat(nextjs): Upgrade Sentry Webpack Plugin to 1.18.8 (#4643)
- fix(nextjs): webpack as optional peer-dependency (#4634)
Work in this release contributed by @belgattitude, @pbernery, and @kylemh. Thank you for your contributions!
6.18.0
This patch deprecates the frameContextLines
option for the Node SDK. The migration documentation details how to migrate off the deprecated frameContextLines
option.
- fix(browser): Only set event.stacktrace if we have 1 or more frames (#4614)
- fix(hub): keep hint event id if it's provided (#4577)
- fix(nextjs): Use env variable for build detection (#4608)
- ref(node): Refactor node source fetching into integration (#3729)
- feat(serverless): Added
ignoreSentryErrors
option for AWS lambda (#4620)
Work in this release contributed by @GoshaEgorian and @ichina. Thank you for your contributions!
6.17.9
- fix(gatsby): Add missing React peer dependency (#4576)
- fix(types): Use Sentry event type instead of dom one (#4584)
Work in this release contributed by @aaronadamsCA. Thank you for your contribution!
6.17.8
- feat(types): Add Envelope types (#4527)
- fix(build): Remove node code from CDN bundles (#4548)
- fix(build): Prevent unused utils code in integration bundles (#4547)
- fix(tracing): Export BrowserTracing directly in CDN bundle (#4570)
- fix(utils): Use apply in console instrumentation (#4568)
- ref(core): Log
normalizeDepth
when normalization is skipped(#4574)
Work in this release contributed by @mydea. Thank you for your contribution!
6.17.8-beta.0
- feat(tracing): Reset IdleTimeout based on activities count (#4531)
6.17.7
- fix(utils): Make new non-enumerable properties mutable (#4528)
- fix(vue): Check if route name is defined before casting (#4530)
Work in this release contributed by @connorjclark. Thank you for your contribution!
6.17.6
- fix(angular): Add check for global.location in angular universal (#4513)
- fix(nextjs): Stop injecting sentry into API middleware (#4517)
- fix(nextjs): Revert #4139 - remove manipulation of res.finished value (#4516)
Work in this release contributed by @mobilestar1. Thank you for your contribution!
6.17.5
This release deprecates the Severity
enum, the SeverityLevel
type, and the internal SeverityLevels
array, all from @sentry/types
. In v7, Severity
will disappear (in favor of SeverityLevel
) and SeverityLevel
and SeverityLevels
will live in @sentry/utils
. If you are using any of the three, we encourage you to migrate your usage now, using our migration guide.
- ref: Export Session class from core/browser/node (#4508)
- chore(nextjs): Bump
@sentry/webpack-plugin
to 1.18.5 (#4501) - ref(types): Move SeverityLevel and SeverityLevels to
@sentry/utils
(#4492) - fix(vue): Cast name parameter to string (#4483)
Work in this release contributed by @Bobakanoosh and @ssnielsen. Thank you for your contributions!