Skip to content

Commit 4c2b395

Browse files
committed
chore: update changelog
1 parent c853fda commit 4c2b395

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,29 @@
44

55
### Features
66

7-
- Support allowUrls and denyUrls for Flutter Web ([#2227](https://github.com/getsentry/sentry-dart/pull/2227))
7+
- Session replay Alpha for Android and iOS ([#2208](https://github.com/getsentry/sentry-dart/pull/2208), [#2269](https://github.com/getsentry/sentry-dart/pull/2269)).
8+
9+
To try out replay, you can set following options (access is limited to early access orgs on Sentry. If you're interested, [sign up for the waitlist](https://sentry.io/lp/mobile-replay-beta/)):
810

911
```dart
1012
await SentryFlutter.init(
1113
(options) {
1214
...
13-
options.allowUrls = ["^https://sentry.com.*\$", "my-custom-domain"];
14-
options.denyUrls = ["^.*ends-with-this\$", "denied-url"];
15+
options.experimental.replay.sessionSampleRate = 1.0;
16+
options.experimental.replay.errorSampleRate = 1.0;
1517
},
1618
appRunner: () => runApp(MyApp()),
1719
);
1820
```
1921

20-
- Session replay Alpha for Android and iOS ([#2208](https://github.com/getsentry/sentry-dart/pull/2208)).
21-
22-
To try out replay, you can set following options (access is limited to early access orgs on Sentry. If you're interested, [sign up for the waitlist](https://sentry.io/lp/mobile-replay-beta/)):
22+
- Support allowUrls and denyUrls for Flutter Web ([#2227](https://github.com/getsentry/sentry-dart/pull/2227))
2323

2424
```dart
2525
await SentryFlutter.init(
2626
(options) {
2727
...
28-
options.experimental.replay.sessionSampleRate = 1.0;
29-
options.experimental.replay.errorSampleRate = 1.0;
28+
options.allowUrls = ["^https://sentry.com.*\$", "my-custom-domain"];
29+
options.denyUrls = ["^.*ends-with-this\$", "denied-url"];
3030
},
3131
appRunner: () => runApp(MyApp()),
3232
);

0 commit comments

Comments
 (0)