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
+8-7Lines changed: 8 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,14 @@ Older Typescript versions _may_ continue to be compatible, but no guarantees app
103
103
});
104
104
```
105
105
106
-
### `@sentry/node`
106
+
### `@sentry/browser` / All SDKs running in the browser
107
+
108
+
- The SDK no longer instructs the Sentry backend to automatically infer IP addresses by default.
109
+
Depending on the version of the Sentry backend (self-hosted), this may lead to IP addresses no longer showing up in Sentry, and events being grouped to "anonymous users".
110
+
At the time of writing, the Sentry SaaS solution will still continue to infer IP addresses, but this will change in the near future.
111
+
Set the `sendDefaultPii` option in `Sentry.init()` to true to instruct the Sentry backend to infer IP addresses.
112
+
113
+
### `@sentry/node` / All SDKs running in Node.js
107
114
108
115
- The `tracesSampler` hook will no longer be called for _every_ span.
109
116
Root spans may however have incoming trace data from a different service, for example when using distributed tracing.
@@ -150,12 +157,6 @@ Older Typescript versions _may_ continue to be compatible, but no guarantees app
150
157
You no longer have to specify this manually.
151
158
With this change, no spans are emitted once `skipOpenTelemetrySetup: true` is configured, without any further configuration being needed.
152
159
153
-
### `@sentry/browser`
154
-
155
-
- The SDK no longer instructs the Sentry backend to automatically infer IP addresses by default.
156
-
This means that places where you previously saw IP addresses in Sentry may now be grouped to anonymous users.
157
-
Set the `sendDefaultPii` option in`Sentry.init()` to true to instruct the Sentry backend to infer IP addresses.
158
-
159
160
### `@sentry/nextjs`
160
161
161
162
- By default, client-side source maps will now be automatically deleted after being uploaded to Sentry during the build.
0 commit comments