Skip to content

Commit 400c779

Browse files
committed
Update CHANGELOG
1 parent c9aa143 commit 400c779

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
### Feature
6+
7+
- Move replay options out of experimental ([#367](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/367))
8+
- You can now access the replay options via `options.sessionReplay`
9+
510
### Fixes
611

712
- Do not throw if exec operation fails ([#360](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/360))
@@ -43,8 +48,8 @@
4348
```kotlin
4449
Sentry.init { options ->
4550
// Adjust these values for production
46-
options.experimental.sessionReplay.onErrorSampleRate = 1.0
47-
options.experimental.sessionReplay.sessionSampleRate = 1.0
51+
options.sessionReplay.onErrorSampleRate = 1.0
52+
options.sessionReplay.sessionSampleRate = 1.0
4853
}
4954
```
5055
- Add `Sentry.isEnabled()` API to common code ([#273](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/273))

0 commit comments

Comments
 (0)