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
+27-6
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,26 @@
10
10
11
11
### Features
12
12
13
+
- Mobile Session Replay is now generally available and ready for production use ([#4384](https://github.com/getsentry/sentry-react-native/pull/4384))
14
+
15
+
To learn about privacy, custom masking or performance overhead visit [the documentation](https://docs.sentry.io/platforms/react-native/session-replay/).
16
+
17
+
```js
18
+
import*asSentryfrom'@sentry/react-native';
19
+
20
+
Sentry.init({
21
+
replaysSessionSampleRate:1.0,
22
+
replaysOnErrorSampleRate:1.0,
23
+
integrations: [
24
+
Sentry.mobileReplayIntegration({
25
+
maskAllImages:true,
26
+
maskAllVectors:true,
27
+
maskAllText:true,
28
+
}),
29
+
],
30
+
});
31
+
```
32
+
13
33
- Adds new `captureFeedback` and deprecates the `captureUserFeedback` API ([#4320](https://github.com/getsentry/sentry-react-native/pull/4320))
14
34
15
35
```jsx
@@ -40,21 +60,22 @@
40
60
### Changes
41
61
42
62
- Falsy values of `options.environment` (empty string, undefined...) default to `production`
63
+
- Deprecated `_experiments.replaysSessionSampleRate` and `_experiments.replaysOnErrorSampleRate` use `replaysSessionSampleRate` and `replaysOnErrorSampleRate` ([#4384](https://github.com/getsentry/sentry-react-native/pull/4384))
43
64
44
65
### Dependencies
45
66
46
67
- 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