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
+44-2Lines changed: 44 additions & 2 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.49.0
8
+
9
+
### Important Changes
10
+
11
+
-**feat(sveltekit): Read adapter output directory from `svelte.config.js` (#7863)**
12
+
13
+
Our source maps upload plugin is now able to read `svelte.config.js`. This is necessary to automatically find the output directory that users can specify when setting up the Node adapter.
14
+
15
+
-**fix(replay): Ensure we normalize scope breadcrumbs to max. depth to avoid circular ref (#7915)**
16
+
17
+
This release fixes a potential problem with how Replay captures console logs.
18
+
Any objects logged will now be cut off after a maximum depth of 10, as well as cutting off any properties after the 1000th.
19
+
This should ensure we do not accidentally capture massive console logs, where a stringified object could reach 100MB or more.
20
+
21
+
-**fix(utils): Normalize HTML elements as string (#7916)**
22
+
23
+
We used to normalize references to HTML elements as POJOs.
24
+
This is both not very easily understandable, as well as potentially large, as HTML elements may have properties attached to them.
25
+
With this change, we now normalize them to e.g. `[HTMLElement: HTMLInputElement]`.
26
+
27
+
### Additional Features and Fixes
28
+
29
+
- feat(browser): Simplify stack parsers (#7897)
30
+
- feat(node): Add monitor upsert types (#7914)
31
+
- feat(replay): Truncate network bodies to max size (#7875)
32
+
- fix(gatsby): Don't crash build when auth token is missing (#7858)
33
+
- fix(gatsby): Use `import` for `gatsby-browser.js` instead of `require` (#7889)
34
+
- fix(nextjs): Handle braces in stack frame URLs (#7900)
35
+
- fix(nextjs): Mark value injection loader result as uncacheable (#7870)
36
+
- fix(node): Correct typo in trpc integration transaciton name (#7871)
Copy file name to clipboardExpand all lines: MIGRATION.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# Deprecations in 7.x
2
2
3
+
## Deprecate `timestampWithMs` export - #7878
4
+
5
+
The `timestampWithMs` util is deprecated in favor of using `timestampInSeconds`.
6
+
3
7
## Remove requirement for `@sentry/tracing` package (since 7.46.0)
4
8
5
9
With `7.46.0` you no longer require the `@sentry/tracing` package to use tracing and performance monitoring with the Sentry JavaScript SDKs. The `@sentry/tracing` package will be removed in a future major release, but can still be used in the meantime.
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@
27
27
"postpublish": "lerna run --stream --concurrency 1 postpublish",
28
28
"test": "lerna run --ignore @sentry-internal/* test",
29
29
"test:unit": "lerna run --ignore @sentry-internal/* test:unit",
30
-
"test-ci-browser": "lerna run test --ignore \"@sentry/{node,opentelemetry-node,serverless,nextjs,remix,gatsby}\" --ignore @sentry-internal/*",
30
+
"test-ci-browser": "lerna run test --ignore \"@sentry/{node,opentelemetry-node,serverless,nextjs,remix,gatsby,sveltekit}\" --ignore @sentry-internal/*",
0 commit comments