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: MIGRATION.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Below we will outline all the breaking changes you should consider when upgradin
9
9
- Distributed CommonJS files will be ES6. Use a transpiler if you need to support old node versions.
10
10
- We bumped the TypeScript version we generate our types with to 3.8.3. Please check if your TypeScript projects using TypeScript version 3.7 or lower still compile. Otherwise, upgrade your TypeScript version.
11
11
-`whitelistUrls` and `blacklistUrls` have been renamed to `allowUrls` and `denyUrls` in the `Sentry.init()` options.
12
-
- The `UserAgent` integration is now called `HttpContext`.#
12
+
- The `UserAgent` integration is now called `HttpContext`.
13
13
- If you are using Performance Monitoring and with tracing enabled, you might have to [make adjustments to
14
14
your server's CORS settings](#-propagation-of-baggage-header)
15
15
@@ -325,7 +325,8 @@ session.close('ok');
325
325
326
326
We introduced a new way of propagating tracing and transaction-related information between services. This
327
327
change adds the [`baggage` HTTP header](https://www.w3.org/TR/baggage/) to outgoing requests if the instrumentation of requests is enabled. Since this adds a header to your HTTP requests, you might need
328
-
to adjust your Server's CORS settings to allow this additional header.
328
+
to adjust your Server's CORS settings to allow this additional header. Take a look at the [Sentry docs](https://docs.sentry.io/platforms/javascript/performance/connect-services/#navigation-and-other-xhr-requests)
329
+
for more in-depth instructions what to change.
329
330
## General API Changes
330
331
331
332
For our efforts to reduce bundle size of the SDK we had to remove and refactor parts of the package which introduced a few changes to the API:
0 commit comments