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
This release adds a new API, `Sentry.captureUserFeedback`, to browser-side SDKs that allows you to send user feedback to Sentry without loading and opening Sentry's user feedback dialog. This allows you to obtain user feedback however and whenever you want to and simply send it to Sentry using the SDK.
14
+
15
+
For instance, you can collect feedback, whenever convenient as shown in this example:
With this release, we officially deprecate all exports from the `@sentry/tracing` package, in favour of using them directly from the main SDK package. The `@sentry/tracing` package will be removed in a future major release.
50
+
51
+
Please take a look at the [Migration docs](./MIGRATION.md/#remove-requirement-for-sentrytracing-package-since-7460) for more details.
52
+
53
+
### Additional Features and Fixes
54
+
55
+
- feat(sveltekit): Add partial instrumentation for client-side `fetch` (#7626)
56
+
- fix(angular): Handle routes with empty path (#7686)
57
+
- fix(angular): Only open report dialog if error was sent (#7750)
58
+
- fix(core): Determine debug ID paths from the top of the stack (#7722)
59
+
- fix(ember): Ensure only one client is created & Replay works (#7712)
60
+
- fix(integrations): Ensure HttpClient integration works with Axios (#7714)
61
+
- fix(loader): Ensure JS loader works with tracing & add tests (#7662)
62
+
- fix(nextjs): Restore tree shaking capabilities (#7710)
63
+
- fix(node): Disable `LocalVariables` integration on Node < v18 (#7748)
64
+
- fix(node): Redact URL authority only in breadcrumbs and spans (#7740)
65
+
- fix(react): Only show report dialog if event was sent to Sentry (#7754)
Copy file name to clipboardExpand all lines: MIGRATION.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,8 @@ Sentry.init({
56
56
});
57
57
```
58
58
59
+
**Note:** If you imported `stripUrlQueryAndFragment` from `@sentry/tracing`, you'll need to import it from `@sentry/utils`, once you remove `@sentry/tracing`.
60
+
59
61
## Replay options changed (since 7.35.0) - #6645
60
62
61
63
Some options for replay have been depracted in favor of new APIs.
0 commit comments