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
* bump SDKs
* bump SDKs
* fix build
* fix tests
* fix tests
* fix lint errors
* test ts 5.0
* rollback
* fix merge conflict with yarn
* fix new lint issue
* sync yarn.lock with V7 branch and install new packages
* ensure we are using the JS version from the default node resolution
* update changelog with javascript version bump
* fix check type (#4587)
* add major changes to the SDK
* fix lint
* review check: fix changelog PR number / Fix wrapper incorrect null check / removed comment from rnerror handler / removed comment from span / fix test from userInteraction
* fix incorrect cli version
* fix lint
* remove shutdowntimeout from android / use newer wizard version
* rollback feedback test change, rollback jest version, fix safe test
* return shutdowntimeout
* explain tracing sample rate
* fix tracing extension test
* lint fix
* update changelog
* fix yarn lock merge/ fix ts-jest version no longer exists / fix core version on samples and e2e
* fix lint on addTimeToInitialDisplay
* fix issue with UIManager test
* moved major changes to the correct spot
Copy file name to clipboardExpand all lines: CHANGELOG.md
+42
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,12 @@
8
8
9
9
## Unreleased
10
10
11
+
### Upgrading from 6.x to 7.0
12
+
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.
14
+
15
+
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.
16
+
11
17
### Dependencies
12
18
13
19
- Bump Bundler Plugins from v3.2.2 to v3.2.4 ([#4693](https://github.com/getsentry/sentry-react-native/pull/4693), [#4707](https://github.com/getsentry/sentry-react-native/pull/4707))
-`ip addresses` is only collected when `sendDefaultPii`: `true`
29
+
- Exceptions from `captureConsoleIntegration` are now marked as handled: true by default
30
+
-`shutdownTimeout` moved from `core` to `@sentry/react-native`
31
+
-`hasTracingEnabled` was renamed to `hasSpansEnabled`
32
+
- You can no longer drop spans or return null on `beforeSendSpan` hook
33
+
34
+
### Removed types
35
+
36
+
- TransactionNamingScheme
37
+
- Request
38
+
- Scope (prefer using the Scope class)
39
+
40
+
### Other removed items.
41
+
42
+
-`autoSessionTracking` from options.
43
+
To enable session tracking, ensure that `enableAutoSessionTracking` is enabled.
44
+
45
+
-`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.
46
+
47
+
-`getCurrentHub()`, `Hub`, and `getCurrentHubShim()`
48
+
-`spanId` from propagation `context`
49
+
- metrics API
50
+
-`transactionContext` from `samplingContext`
51
+
-`@sentry/utils` package, the exports were moved to `@sentry/core`
0 commit comments