Skip to content

Commit 54f1791

Browse files
committed
meta(changelog): Update changelog for v7.95.0
1 parent c017181 commit 54f1791

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,45 @@
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+
746
## 7.94.1
847

948
This release fixes a publishing issue.

0 commit comments

Comments
 (0)