File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
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
+
5
10
### Fixes
6
11
7
12
- Do not throw if exec operation fails ([ #360 ] ( https://github.com/getsentry/sentry-kotlin-multiplatform/pull/360 ) )
43
48
``` kotlin
44
49
Sentry .init { options ->
45
50
// 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
48
53
}
49
54
```
50
55
- Add ` Sentry.isEnabled() ` API to common code ([ #273 ] ( https://github.com/getsentry/sentry-kotlin-multiplatform/pull/273 ) )
You can’t perform that action at this time.
0 commit comments