Skip to content

Commit 6f9d57c

Browse files
committed
meta(changelog): Update changelog for 8.12.0
1 parent 9e10ad6 commit 6f9d57c

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,38 @@
44

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

7+
## 8.12.0
8+
9+
### Important Changes
10+
11+
- **feat(core): Return client from init method (#12585)**
12+
13+
`Sentry.init()` now returns a client directly, so you don't need to explicitly call `getClient()` anymore:
14+
15+
```js
16+
const client = Sentry.init();
17+
```
18+
19+
- **feat(nextjs): Add `deleteSourcemapsAfterUpload` option (#12457)**
20+
21+
This adds an easy way to delete sourcemaps immediately after uploading them:
22+
23+
```js
24+
module.exports = withSentryConfig(nextConfig, {
25+
sourcemaps: {
26+
deleteSourcemapsAfterUpload: true,
27+
},
28+
});
29+
```
30+
31+
### Other Changes
32+
33+
- feat(feedback): Extra check for iPad in screenshot support (#12593)
34+
- fix(bundle): Ensure CDN bundles do not overwrite `window.Sentry` (#12580)
35+
- ref(node): Add error message to NodeFetch log (#12612)
36+
37+
Work in this release was contributed by @n4bb12. Thank you for your contribution!
38+
739
## 8.11.0
840

941
### Important Changes

0 commit comments

Comments
 (0)