Skip to content

Commit 45a6202

Browse files
misc: 6.0.1 changelog
1 parent b9a612c commit 45a6202

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@
44

55
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
66

7+
## 6.0.1
8+
9+
- [vue] fix: Make sure that error is present before logging it in Vue (#3183)
10+
- [serverless] fix: Fix issue when `/dist` didn't exist before building (#3190)
11+
712
## 6.0.0
813

9-
*This major version release doesn't contain any breaking API/code changes.*
10-
Starting from the version `6.0.0`, all SDKs that support sending sessions data will do so by default. See our [Release Health](https://docs.sentry.io/product/releases/health/) docs to learn more.
11-
As of this version, it applies to all Browser SDKs (Browser, React, Angular, Vue, Gatsby etc.). Node.js and other related Server SDKs will follow soon after, in the minor `6.x` release.
12-
You can opt-out of this behavior by setting `autoSessionTracking: false` option during SDK initialization.
14+
_This major version release doesn't contain any breaking API/code changes._ Starting from the version `6.0.0`, all SDKs
15+
that support sending sessions data will do so by default. See our
16+
[Release Health](https://docs.sentry.io/product/releases/health/) docs to learn more. As of this version, it applies to
17+
all Browser SDKs (Browser, React, Angular, Vue, Gatsby etc.). Node.js and other related Server SDKs will follow soon
18+
after, in the minor `6.x` release. You can opt-out of this behavior by setting `autoSessionTracking: false` option
19+
during SDK initialization.
1320

1421
---
1522

@@ -292,7 +299,8 @@ You can opt-out of this behavior by setting `autoSessionTracking: false` option
292299
- [tracing] feat: Add `scope.getTransaction` to return a Transaction if it exists (#2668)
293300
- [tracing] ref: Deprecate `scope.setTransaction` in favor of `scope.setTransactionName` (#2668)
294301
- [tracing] feat: Add `beforeNavigate` option (#2691)
295-
- [tracing] ref: Create navigation transactions using `window.location.pathname` instead of `window.location.href` (#2691)
302+
- [tracing] ref: Create navigation transactions using `window.location.pathname` instead of `window.location.href`
303+
(#2691)
296304

297305
## 5.17.0
298306

@@ -1093,7 +1101,7 @@ Raven.setTagsContext({ key: 'value' });
10931101
_New_:
10941102

10951103
```js
1096-
Sentry.configureScope(scope => {
1104+
Sentry.configureScope((scope) => {
10971105
scope.setTag('key', 'value');
10981106
});
10991107
```
@@ -1116,7 +1124,7 @@ _New_:
11161124
try {
11171125
throwingFunction();
11181126
} catch (e) {
1119-
Sentry.withScope(scope => {
1127+
Sentry.withScope((scope) => {
11201128
scope.setExtra('debug', false);
11211129
Sentry.captureException(e);
11221130
});
@@ -1134,7 +1142,7 @@ Raven.captureMessage('test', 'info', { extra: { debug: false } });
11341142
_New_:
11351143

11361144
```js
1137-
Sentry.withScope(scope => {
1145+
Sentry.withScope((scope) => {
11381146
scope.setExtra('debug', false);
11391147
Sentry.captureMessage('test', 'info');
11401148
});

0 commit comments

Comments
 (0)