Skip to content

Commit

Permalink
Disable enableUserInteractionBreadcrumbs on Android when enableAutoNa…
Browse files Browse the repository at this point in the history
…tiveBreadcrumbs is disabled (#1131)
  • Loading branch information
marandaneto authored Nov 14, 2022
1 parent a45b9ed commit 48e79fd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# Changelog

## Unreleased

### Fixes

- Disable `enableUserInteractionBreadcrumbs` on Android when `enableAutoNativeBreadcrumbs` is disabled ([#1131](https://github.com/getsentry/sentry-dart/pull/1131))

## 6.15.1

### Various fixes & improvements
### Dependencies

- chore(deps): update Flutter SDK (metrics) to v3.3.8 (#1121) by @github-actions
- Bump Cocoa SDK from v7.30.1 to v7.30.2 ([#1113](https://github.com/getsentry/sentry-dart/pull/1113))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7302)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.30.1...7.30.2)

## 6.15.0

Expand All @@ -24,9 +32,9 @@
- Bump Android SDK from v6.6.0 to v6.7.0 ([#1105](https://github.com/getsentry/sentry-dart/pull/1105))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#670)
- [diff](https://github.com/getsentry/sentry-java/compare/6.6.0...6.7.0)
- Bump Cocoa SDK from v7.30.0 to v7.30.2 ([#1113](https://github.com/getsentry/sentry-dart/pull/1113))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7302)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.30.0...7.30.2)
- Bump Cocoa SDK from v7.30.0 to v7.30.1 ([#1104](https://github.com/getsentry/sentry-dart/pull/1104))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7301)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.30.0...7.30.1)

## 6.14.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ class SentryFlutterPlugin : FlutterPlugin, MethodCallHandler, ActivityAware {
options.isEnableAppLifecycleBreadcrumbs = it
options.isEnableSystemEventBreadcrumbs = it
options.isEnableAppComponentBreadcrumbs = it
options.isEnableUserInteractionBreadcrumbs = it
}
args.getIfNotNull<Int>("maxBreadcrumbs") { options.maxBreadcrumbs = it }
args.getIfNotNull<Int>("maxCacheItems") { options.maxCacheItems = it }
Expand Down

0 comments on commit 48e79fd

Please sign in to comment.