File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-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.95.0
8+
9+ ### Important Changes
10+
11+ #### Deprecations
12+
13+ This release includes some deprecations in preparation for v8.
14+
15+ Most notably, it deprecates the ` Replay ` & ` Feedback ` classes in favor of a functional replacement:
16+
17+ ``` js
18+ import * as Sentry from ' @sentry/browser' ;
19+
20+ Sentry .init ({
21+ integrations: [
22+ // Instead of
23+ new Sentry.Replay (),
24+ new Sentry.Feedback (),
25+ // Use the functional replacement:
26+ Sentry .replayIntegration (),
27+ Sentry .feedbackIntegration (),
28+ ],
29+ });
30+ ```
31+
32+ - feat(core): Deprecate ` Span.origin ` in favor of ` sentry.origin ` attribute (#10260 )
33+ - feat(core): Deprecate ` Span.parentSpanId ` (#10244 )
34+ - feat(core): Expose ` isInitialized() ` to replace checking via ` getClient ` (#10296 )
35+ - feat(replay): Deprecate ` Replay ` , ` ReplayCanvas ` , ` Feedback ` classes (#10270 )
36+ - feat(wasm): Deprecate ` Wasm ` integration class (#10230 )
37+
38+ ### Other Changes
39+
40+ - feat: Make ` parameterize ` function available through browser and node API (#10085 )
41+ - feat(feedback): Configure feedback border radius (#10289 )
42+ - feat(sveltekit): Update default integration handling & deprecate ` addOrUpdateIntegration ` (#10263 )
43+ - fix(replay-canvas): Add missing dependency on @sentry/utils (#10279 )
44+ - fix(tracing): Don't send negative ttfb (#10286 )
45+
46+ Work in this release contributed by @AleshaOleg . Thank you for your contribution!
47+
748## 7.94.1
849
950This release fixes a publishing issue.
You can’t perform that action at this time.
0 commit comments