You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,44 @@
4
4
5
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
6
7
+
## 7.73.0
8
+
9
+
### Important Changes
10
+
11
+
-**feat(replay): Upgrade to rrweb2**
12
+
13
+
This is fully backwards compatible with prior versions of the Replay SDK. The only breaking change that we will making is to not be masking `aria-label` by default. The reason for this change is to align with our core SDK which also does not mask `aria-label`. This change also enables better support of searching by clicks.
14
+
15
+
Another change that needs to be highlighted is the 13% bundle size increase. This bundle size increase is necessary to bring improved recording performance and improved replay fidelity, especially in regards to web components and iframes. We will be investigating the reduction of the bundle size in [this PR](https://github.com/getsentry/sentry-javascript/issues/8815).
16
+
17
+
Here are benchmarks comparing the version 1 of rrweb to version 2
18
+
19
+
| metric | v1 | v2 |
20
+
| --------- | ---------- | ---------- |
21
+
| lcp | 1486.06 ms | 1529.11 ms |
22
+
| cls | 0.40 ms | 0.40 ms |
23
+
| fid | 1.53 ms | 1.50 ms |
24
+
| tbt | 3207.22 ms | 3036.80 ms |
25
+
| memoryAvg | 131.83 MB | 124.84 MB |
26
+
| memoryMax | 324.8 MB | 339.03 MB |
27
+
| netTx | 282.67 KB | 272.51 KB |
28
+
| netRx | 8.02 MB | 8.07 MB |
29
+
30
+
### Other Changes
31
+
32
+
- feat: Always assemble Envelopes (#9101)
33
+
- feat(node): Rate limit local variables for caught exceptions and enable `captureAllExceptions` by default (#9102)
34
+
- fix(core): Ensure `tunnel` is considered for `isSentryUrl` checks (#9130)
0 commit comments