Skip to content

Commit eccc5ab

Browse files
meta: CHANGELOG for 6.17.0 (#4421)
Co-authored-by: Katie Byers <[email protected]>
1 parent eaf2e81 commit eccc5ab

File tree

2 files changed

+12
-19
lines changed

2 files changed

+12
-19
lines changed

CHANGELOG.md

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

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

7-
## 6.17.0-beta.0
7+
## 6.17.0
88

9-
This beta releases contains several internal refactors that help reduce the bundle size of the SDK and help prep for our [upcoming major release](https://github.com/getsentry/sentry-javascript/issues/4240). There are no breaking changes in this patch unless you are using our internal `Dsn` class. We also deprecated our typescript enums and our internal `API` class. We've detailed how to update your sdk usage if you are using the `Dsn` class or any of the deprecated methods in our [migration documentation](./MIGRATION.md#upgrading-from-6.x-to-6.17.0).
9+
This release contains several internal refactors that help reduce the bundle size of the SDK and help prep for our [upcoming major release](https://github.com/getsentry/sentry-javascript/issues/4240). There are no breaking changes in this patch unless you are using our internal `Dsn` class, which has been removed. We also deprecated a few of our typescript enums and our internal `API` class. We've detailed in our [migration documentation](./MIGRATION.md#upgrading-from-6.x-to-6.17.0) how to update your sdk usage if you are using any of these in your code.
1010

11+
- feat: Undeprecate Severity Enum (#4412)
12+
- feat: Remove Dsn class (#4325)
13+
- feat(core): Add processing metadata to scope and event (#4252)
1114
- feat(core): Deprecate API class (#4281)
12-
- feat(dsn): Remove Dsn class (#4325)
1315
- feat(ember): Update ember dependencies (#4253)
16+
- fix(nextjs): Inject sentry.x.config.js into pages/_error (#4397)
1417
- fix(nextjs): Add sentry-cli existence check for enabling webpack plugin #4311
1518
- ref(tracing): deprecate span status enum (#4299)
1619
- ref(types): drop unused logLevel (#4317)
@@ -20,6 +23,8 @@ This beta releases contains several internal refactors that help reduce the bund
2023
- ref(types): deprecate status enum (#4298)
2124
- ref(types): deprecate severity enum (#4280)
2225

26+
Work in this release contributed by @yordis. Thank you for your contribution!
27+
2328
## 6.16.1
2429

2530
- feat(nextjs): Support Next.js v12 (#4093)

MIGRATION.md

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,11 @@ const envelopeEndpoint = api.getEnvelopeEndpointWithUrlEncodedAuth();
4444

4545
## Enum changes
4646

47-
We've detailed how to migrate off our enums `Severity`, `Status` and `SpanStatus`. We also made changes to deprecate `TransactionMethod`, `Outcome` and `RequestSessionStatus` enums, but those are internal only APIs.
47+
The enums `Status` and `SpanStatus` were deprecated, and we've detailed how to migrate away from them below. We also deprecated the `TransactionMethod`, `Outcome` and `RequestSessionStatus` enums, but those are internal-only APIs. If you are using them, we encourage you to take a look at the corresponding PRs to see how we've changed our code as a result.
4848

49-
#### Severity
50-
51-
We deprecated the `Severity` enum in `@sentry/types` and it will be removed in the next major release. We recommend using string literals to save on bundle size. [PR](https://github.com/getsentry/sentry-javascript/pull/4280). We also removed the `Severity.fromString` method. This was done to save on bundle size.
52-
53-
```js
54-
// New in 6.17.0:
55-
import { severityFromString } from '@sentry/utils';
56-
57-
const severity = severityFromString(level);
58-
59-
// Before:
60-
import { Severity } from '@sentry/types';
61-
62-
const severity = Severity.fromString(level);
63-
```
49+
- `TransactionMethod`: https://github.com/getsentry/sentry-javascript/pull/4314
50+
- `Outcome`: https://github.com/getsentry/sentry-javascript/pull/4315
51+
- `RequestSessionStatus`: https://github.com/getsentry/sentry-javascript/pull/4316
6452

6553
#### Status
6654

0 commit comments

Comments
 (0)