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
* feat(session-replay): Adds replaysSessionQuality option
* Adds changelog
* Move RNSentryReplayQuality to the correct folder
* Update changelog
* Mention mobile in the changelog
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,22 @@
6
6
> make sure you follow our [migration guide](https://docs.sentry.io/platforms/react-native/migration/) first.
7
7
<!-- prettier-ignore-end -->
8
8
9
+
## Unreleased
10
+
11
+
### Features
12
+
13
+
- Adds `replaysSessionQuality` Session Replay option to control replay quality and performance overhead on mobile ([#5001](https://github.com/getsentry/sentry-react-native/pull/5001))
14
+
15
+
```js
16
+
import*asSentryfrom'@sentry/react-native';
17
+
18
+
Sentry.init({
19
+
replaysSessionSampleRate:1.0,
20
+
replaysSessionQuality:'low', // possible values: low, medium (default), high
0 commit comments