Skip to content

Commit

Permalink
Merge branch 'feat/replay' into feat/ios-replay
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed Aug 5, 2024
2 parents e610e26 + b92d907 commit d496e49
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 21 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
path: metrics/flutter.properties
name: Flutter SDK (metrics)
changelog-entry: false
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}

Expand All @@ -42,5 +43,6 @@ jobs:
path: scripts/update-symbol-collector.sh
name: Symbol collector CLI
changelog-entry: false
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
42 changes: 21 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,5 @@
# Changelog

## 8.6.0-alpha.2

### Features

- Android Session Replay Alpha ([#2032](https://github.com/getsentry/sentry-dart/pull/2032))

To try out replay, you can set following options:

```dart
await SentryFlutter.init(
(options) {
...
options.experimental.replay.sessionSampleRate = 1.0;
options.experimental.replay.errorSampleRate = 1.0;
},
appRunner: () => runApp(MyApp()),
);
```

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/)

## 8.6.0

### Improvements
Expand Down Expand Up @@ -63,6 +42,27 @@ SentryFlutter.init((options) =>
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7130)
- [diff](https://github.com/getsentry/sentry-java/compare/7.12.0...7.13.0)

## 8.6.0-alpha.2

### Features

- Android Session Replay Alpha ([#2032](https://github.com/getsentry/sentry-dart/pull/2032))

To try out replay, you can set following options:

```dart
await SentryFlutter.init(
(options) {
...
options.experimental.replay.sessionSampleRate = 1.0;
options.experimental.replay.errorSampleRate = 1.0;
},
appRunner: () => runApp(MyApp()),
);
```

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/)

## 8.5.0

### Features
Expand Down

0 comments on commit d496e49

Please sign in to comment.