Skip to content

Commit d6c7884

Browse files
authored
meta(changelog): Update changelog for v7.112.0 (#11744)
Closes #11729
1 parent 6a0a4c6 commit d6c7884

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

CHANGELOG.md

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

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

7+
## 7.112.0
8+
9+
### Important Changes
10+
11+
- **feat: Export pluggable integrations from SDK packages (#11723)**
12+
13+
Instead of installing `@sentry/integrations`, you can now import the pluggable integrations directly from your SDK
14+
package:
15+
16+
```js
17+
// Before
18+
import * as Sentry fromv '@sentry/browser';
19+
import { dedupeIntegration } from '@sentry/integrations';
20+
21+
Sentry.init({
22+
integrations: [dedupeIntegration()],
23+
});
24+
25+
// After
26+
import * as Sentry from '@sentry/browser';
27+
28+
Sentry.init({
29+
integrations: [Sentry.dedupeIntegration()],
30+
});
31+
```
32+
33+
Note that only the functional integrations (e.g. `xxxIntegration()`) are re-exported.
34+
35+
### Other Changes
36+
37+
- feat(replay): Add "maxCanvasSize" option for replay canvases (#11732)
38+
- fix(serverless): [v7] Check if cloud event callback is a function (#11734)
39+
740
## 7.111.0
841

942
- feat(core): Add `server.address` to browser `http.client` spans (#11663)

0 commit comments

Comments
 (0)