File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
6
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
+ - feat(nuxt): Add base boilerplate for nuxt (#12573 )
35
+ - fix(bundle): Ensure CDN bundles do not overwrite ` window.Sentry ` (#12580 )
36
+ - ref(node): Add error message to NodeFetch log (#12612 )
37
+
7
38
## 8.11.0
8
39
9
40
### Important Changes
You can’t perform that action at this time.
0 commit comments