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: CHANGELOG.md
+42-6Lines changed: 42 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,43 @@
8
8
9
9
## Unreleased
10
10
11
+
### Changes
12
+
13
+
- Rename `navigation.processing` span to more expressive `Navigation dispatch to screen A mounted/navigation cancelled` ([#4423](https://github.com/getsentry/sentry-react-native/pull/4423))
14
+
15
+
### Dependencies
16
+
17
+
- Bump CLI from v2.39.1 to v2.40.0 ([#4412](https://github.com/getsentry/sentry-react-native/pull/4412))
- Mobile Session Replay is now generally available and ready for production use ([#4384](https://github.com/getsentry/sentry-react-native/pull/4384))
29
+
30
+
To learn about privacy, custom masking or performance overhead visit [the documentation](https://docs.sentry.io/platforms/react-native/session-replay/).
31
+
32
+
```js
33
+
import*asSentryfrom'@sentry/react-native';
34
+
35
+
Sentry.init({
36
+
replaysSessionSampleRate:1.0,
37
+
replaysOnErrorSampleRate:1.0,
38
+
integrations: [
39
+
Sentry.mobileReplayIntegration({
40
+
maskAllImages:true,
41
+
maskAllVectors:true,
42
+
maskAllText:true,
43
+
}),
44
+
],
45
+
});
46
+
```
47
+
13
48
- Adds new `captureFeedback` and deprecates the `captureUserFeedback` API ([#4320](https://github.com/getsentry/sentry-react-native/pull/4320))
14
49
15
50
```jsx
@@ -61,21 +96,22 @@
61
96
### Changes
62
97
63
98
- Falsy values of `options.environment` (empty string, undefined...) default to `production`
99
+
- Deprecated `_experiments.replaysSessionSampleRate` and `_experiments.replaysOnErrorSampleRate` use `replaysSessionSampleRate` and `replaysOnErrorSampleRate` ([#4384](https://github.com/getsentry/sentry-react-native/pull/4384))
64
100
65
101
### Dependencies
66
102
67
103
- Bump CLI from v2.38.2 to v2.39.1 ([#4305](https://github.com/getsentry/sentry-react-native/pull/4305), [#4316](https://github.com/getsentry/sentry-react-native/pull/4316))
- Bump Cocoa SDK from v8.41.0 to v8.42.1 ([#4387](https://github.com/getsentry/sentry-react-native/pull/4387), [#4399](https://github.com/getsentry/sentry-react-native/pull/4399))
0 commit comments