@@ -88,7 +88,7 @@ to access and mutate the current scope.
88
88
89
89
## General API Changes
90
90
91
- - The minumum supported Node version for all the SDK packages is Node 14 (#10527 )
91
+ - The minimum supported Node version for all the SDK packages is Node 14 (#10527 )
92
92
- Remove ` spanStatusfromHttpCode ` in favour of ` getSpanStatusFromHttpCode ` (#10361 )
93
93
- Remove deprecated ` deepReadDirSync ` export from ` @sentry/node ` (#10564 )
94
94
- Remove ` _eventFromIncompleteOnError ` usage (#10553 )
@@ -109,7 +109,7 @@ npx @sentry/migr8@latest
109
109
This will let you select which updates to run, and automatically update your code. Make sure to still review all code
110
110
changes!
111
111
112
- ## Depreacted ` BrowserTracing ` integration
112
+ ## Deprecated ` BrowserTracing ` integration
113
113
114
114
The ` BrowserTracing ` integration, together with the custom routing instrumentations passed to it, are deprecated in v8.
115
115
Instead, you should use ` Sentry.browserTracingIntegration() ` .
@@ -234,7 +234,16 @@ only be set later during the span lifecycle (and thus not be available during sa
234
234
235
235
## Deprecate ` wrapRemixHandleError ` in Remix SDK (since v7.100.0)
236
236
237
- This release deprecates ` wrapRemixHandleError ` in favor of using ` sentryHandleError ` from ` @sentry/remix ` .
237
+ This release deprecates ` wrapRemixHandleError ` in favor of using ` sentryHandleError ` from ` @sentry/remix ` . It can be
238
+ used as below:
239
+
240
+ ```` typescript
241
+ // entry.server.ts
242
+
243
+ export const handleError = Sentry .wrapHandleErrorWithSentry (() => {
244
+ // Custom handleError implementation
245
+ });
246
+ ```
238
247
239
248
## Deprecate using ` getClient() ` to check if the SDK was initialized
240
249
@@ -328,7 +337,7 @@ typescript:
328
337
329
338
```ts
330
339
const replay = getClient ().getIntegrationByName <Replay >('Replay ');
331
- ```
340
+ ````
332
341
333
342
## Deprecate `Hub `
334
343
@@ -1130,8 +1139,8 @@ version.
1130
1139
### Import Changes
1131
1140
1132
1141
Due to the compiler change, our NPM package structure changed as well as it now conforms to the
1133
- [ ** Angular** Package Format v10] ( https://docs.google.com/document/d/1uh2D6XqaGh2yjjXwfF4SrJqWl1MBhMPntlNBBsk6rbw/edit ) .
1134
- In case you're importing from specific paths other than ` @sentry/angular ` you will have to adjust these paths. As an
1142
+ [Angular Package Format v10](https://docs.google.com/document/d/1uh2D6XqaGh2yjjXwfF4SrJqWl1MBhMPntlNBBsk6rbw/edit). In
1143
+ case you're importing from specific paths other than ` @sentry / angular ` you will have to adjust these paths. As an
1135
1144
example, ` import ... from ' @sentry/angular/esm/injex.js' ` should be changed to
1136
1145
` import ... from ' @sentry/angular/esm2015/index.js' ` . Generally, we strongly recommend only importing from
1137
1146
` @sentry / angular ` .
0 commit comments