File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 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 )
You can’t perform that action at this time.
0 commit comments