Skip to content

Commit 1528fb5

Browse files
Fix changelog
1 parent 61ef053 commit 1528fb5

File tree

1 file changed

+42
-42
lines changed

1 file changed

+42
-42
lines changed

CHANGELOG.md

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
### Upgrading from 6.x to 7.0
1212

13-
Version 7 of the Sentry React Native SDK primarily introduces API cleanup and version support changes. This update contains behavioral changes that will not be caught by type checkers, linters, or tests, so we recommend carefully reading through the entire migration guide instead of relying on automatic tooling.
13+
Version 7 of the Sentry React Native SDK primarily introduces API cleanup and version support changes based on the Sentry Javascript SDK version 9. This update contains behavioral changes that will not be caught by type checkers, linters, or tests, so we recommend carefully reading through the entire migration guide instead of relying on automatic tooling.
1414

1515
Version 7 of the SDK is compatible with Sentry self-hosted versions 24.4.2 or higher (unchanged from v6). Lower versions may continue to work, but may not support all features.
1616

@@ -19,8 +19,46 @@ Version 7 of the SDK is compatible with Sentry self-hosted versions 24.4.2 or hi
1919
- Expo Updates Context is passed to native after native init to be available for crashes ([#4808](https://github.com/getsentry/sentry-react-native/pull/4808))
2020
- Expo Updates Context values should all be lowercase ([#4809](https://github.com/getsentry/sentry-react-native/pull/4809))
2121

22+
### Major Changes
23+
24+
- Set `{{auto}}` if `user.ip_address` is `undefined` and `sendDefaultPii: true` ([#4466](https://github.com/getsentry/sentry-react-native/pull/4466))
25+
- Exceptions from `captureConsoleIntegration` are now marked as handled: true by default
26+
- `shutdownTimeout` moved from `core` to `@sentry/react-native`
27+
- `hasTracingEnabled` was renamed to `hasSpansEnabled`
28+
- You can no longer drop spans or return null on `beforeSendSpan` hook
29+
30+
### Removed types
31+
32+
- TransactionNamingScheme
33+
- Request
34+
- Scope (prefer using the Scope class)
35+
36+
### Other removed items.
37+
38+
- `autoSessionTracking` from options.
39+
To enable session tracking, ensure that `enableAutoSessionTracking` is enabled.
40+
- `enableTracing`. Instead, set `tracesSampleRate` to a value greater than `zero` to `enable tracing`, `0` to keep tracing integrations active without sampling, or `undefined` to disable the performance integration.
41+
- `getCurrentHub()`, `Hub`, and `getCurrentHubShim()`
42+
- `spanId` from propagation `context`
43+
- metrics API
44+
- `transactionContext` from `samplingContext`
45+
- `@sentry/utils` package, the exports were moved to `@sentry/core`
46+
- Standalone `Client` interface & deprecate `BaseClient`
47+
48+
## Other Changes
49+
50+
- Fork `scope` if custom scope is passed to `startSpanManual` or `startSpan`
51+
- On React Native Web, `browserSessionIntegration` is added when `enableAutoSessionTracking` is set to `True` ([#4732](https://github.com/getsentry/sentry-react-native/pull/4732))
52+
Change `Cold/Warm App Start` span description to `Cold/Warm Start` ([#4636](https://github.com/getsentry/sentry-react-native/pull/4636))
53+
2254
### Dependencies
2355

56+
- Bump JavaScript SDK from v8.54.0 to v9.12.0 ([#4568](https://github.com/getsentry/sentry-react-native/pull/4568), [#4752](https://github.com/getsentry/sentry-react-native/pull/4752))
57+
- [changelog](https://github.com/getsentry/sentry-javascript/blob/9.12.0/CHANGELOG.md)
58+
- [diff](https://github.com/getsentry/sentry-javascript/compare/8.54.0...9.12.0)
59+
- Bump Android SDK from v7.20.1 to v8.11.1 ([#4490](https://github.com/getsentry/sentry-react-native/pull/4490))
60+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8111)
61+
- [diff](https://github.com/getsentry/sentry-java/compare/7.20.1...8.11.1)
2462
- Bump CLI from v2.43.1 to v2.45.0 ([#4804](https://github.com/getsentry/sentry-react-native/pull/4804), [#4818](https://github.com/getsentry/sentry-react-native/pull/4818))
2563
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2450)
2664
- [diff](https://github.com/getsentry/sentry-cli/compare/2.43.1...2.45.0)
@@ -122,12 +160,6 @@ Version 7 of the SDK is compatible with Sentry self-hosted versions 24.4.2 or hi
122160

123161
### Dependencies
124162

125-
- Bump JavaScript SDK from v8.54.0 to v9.12.0 ([#4568](https://github.com/getsentry/sentry-react-native/pull/4568), [#4752](https://github.com/getsentry/sentry-react-native/pull/4752))
126-
- [changelog](https://github.com/getsentry/sentry-javascript/blob/9.12.0/CHANGELOG.md)
127-
- [diff](https://github.com/getsentry/sentry-javascript/compare/8.54.0...9.12.0)
128-
- Bump Android SDK from v7.20.1 to v8.11.1 ([#4490](https://github.com/getsentry/sentry-react-native/pull/4490))
129-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8111)
130-
- [diff](https://github.com/getsentry/sentry-java/compare/7.20.1...8.11.1)
131163
- Bump Bundler Plugins from v3.2.2 to v3.3.1 ([#4693](https://github.com/getsentry/sentry-react-native/pull/4693), [#4707](https://github.com/getsentry/sentry-react-native/pull/4707), [#4720](https://github.com/getsentry/sentry-react-native/pull/4720), [#4721](https://github.com/getsentry/sentry-react-native/pull/4721))
132164
- [changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md#331)
133165
- [diff](https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/3.2.2...3.3.1)
@@ -138,37 +170,6 @@ Version 7 of the SDK is compatible with Sentry self-hosted versions 24.4.2 or hi
138170
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8490)
139171
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.48.0...8.49.0)
140172

141-
### Major Changes
142-
143-
- Set `{{auto}}` if `user.ip_address` is `undefined` and `sendDefaultPii: true` ([#4466](https://github.com/getsentry/sentry-react-native/pull/4466))
144-
- Exceptions from `captureConsoleIntegration` are now marked as handled: true by default
145-
- `shutdownTimeout` moved from `core` to `@sentry/react-native`
146-
- `hasTracingEnabled` was renamed to `hasSpansEnabled`
147-
- You can no longer drop spans or return null on `beforeSendSpan` hook
148-
149-
### Removed types
150-
151-
- TransactionNamingScheme
152-
- Request
153-
- Scope (prefer using the Scope class)
154-
155-
### Other removed items.
156-
157-
- `autoSessionTracking` from options.
158-
To enable session tracking, ensure that `enableAutoSessionTracking` is enabled.
159-
- `enableTracing`. Instead, set `tracesSampleRate` to a value greater than `zero` to `enable tracing`, `0` to keep tracing integrations active without sampling, or `undefined` to disable the performance integration.
160-
- `getCurrentHub()`, `Hub`, and `getCurrentHubShim()`
161-
- `spanId` from propagation `context`
162-
- metrics API
163-
- `transactionContext` from `samplingContext`
164-
- `@sentry/utils` package, the exports were moved to `@sentry/core`
165-
- Standalone `Client` interface & deprecate `BaseClient`
166-
167-
## Other Changes
168-
169-
- Fork `scope` if custom scope is passed to `startSpanManual` or `startSpan`
170-
- On React Native Web, `browserSessionIntegration` is added when `enableAutoSessionTracking` is set to `True` ([#4732](https://github.com/getsentry/sentry-react-native/pull/4732))
171-
172173
## 6.11.0-beta.0
173174

174175
### Features
@@ -324,10 +325,6 @@ Version 7 of the SDK is compatible with Sentry self-hosted versions 24.4.2 or hi
324325

325326
To learn more about the available configuration options visit [the documentation](https://docs.sentry.io/platforms/react-native/manual-setup/expo/gradle).
326327

327-
### Changes
328-
329-
Change `Cold/Warm App Start` span description to `Cold/Warm Start` ([#4636](https://github.com/getsentry/sentry-react-native/pull/4636))
330-
331328
### Fixes
332329

333330
- Remove `error:` prefix from `collect-modules.sh` to avoid failing iOS builds ([#4570](https://github.com/getsentry/sentry-react-native/pull/4570))
@@ -338,6 +335,9 @@ Change `Cold/Warm App Start` span description to `Cold/Warm Start` ([#4636](http
338335

339336
### Dependencies
340337

338+
- Bump Android SDK from v7.20.1 to v7.22.0 ([#4529](https://github.com/getsentry/sentry-react-native/pull/4529))
339+
- [changelog](https://github.com/getsentry/sentry-java/blob/7.x.x/CHANGELOG.md#7220)
340+
- [diff](https://github.com/getsentry/sentry-java/compare/7.20.1...7.22.0)
341341
- Bump Cocoa SDK from v8.44.0 to v8.45.0 ([#4537](https://github.com/getsentry/sentry-react-native/pull/4537))
342342
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8450)
343343
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.44.0...8.45.0)

0 commit comments

Comments
 (0)