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: docs/migration/v8-to-v9.md
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -75,16 +75,6 @@ Older Typescript versions _may_ continue to be compatible, but no guarantees app
75
75
- The `beforeSendSpan` hook now receives the root span as well as the child spans.
76
76
We recommend checking your `beforeSendSpan` to account for this change.
77
77
78
-
- If you use the optional `captureConsoleIntegration` and set `attachStackTrace: true` in your `Sentry.init` call, console messages will no longer be marked as unhandled (i.e. `handled: false`) but as handled (i.e. `handled: true`).
79
-
If you want to keep sending them as unhandled, configure the `handled` option when adding the integration:
- The `request` property on the `samplingContext` argument passed to the `tracesSampler` and `profilesSampler` options has been removed.
89
79
`samplingContext.normalizedRequest` can be used instead.
90
80
Note that the type of `normalizedRequest` differs from `request`.
@@ -103,6 +93,16 @@ Older Typescript versions _may_ continue to be compatible, but no guarantees app
103
93
});
104
94
```
105
95
96
+
- If you use the optional `captureConsoleIntegration` and set `attachStackTrace: true` in your `Sentry.init` call, console messages will no longer be marked as unhandled (i.e. `handled: false`) but as handled (i.e. `handled: true`).
97
+
If you want to keep sending them as unhandled, configure the `handled` option when adding the integration:
0 commit comments