Skip to content

Commit bdf60af

Browse files
committed
Merge branch 'main' into enha/flutter-min-version-test
2 parents efb44c3 + 48e79fd commit bdf60af

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

CHANGELOG.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Fixes
6+
7+
- Disable `enableUserInteractionBreadcrumbs` on Android when `enableAutoNativeBreadcrumbs` is disabled ([#1131](https://github.com/getsentry/sentry-dart/pull/1131))
8+
39
## 6.15.1
410

5-
### Various fixes & improvements
11+
### Dependencies
612

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

917
## 6.15.0
1018

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

3139
## 6.14.0
3240

flutter/android/src/main/kotlin/io/sentry/flutter/SentryFlutterPlugin.kt

+1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ class SentryFlutterPlugin : FlutterPlugin, MethodCallHandler, ActivityAware {
131131
options.isEnableAppLifecycleBreadcrumbs = it
132132
options.isEnableSystemEventBreadcrumbs = it
133133
options.isEnableAppComponentBreadcrumbs = it
134+
options.isEnableUserInteractionBreadcrumbs = it
134135
}
135136
args.getIfNotNull<Int>("maxBreadcrumbs") { options.maxBreadcrumbs = it }
136137
args.getIfNotNull<Int>("maxCacheItems") { options.maxCacheItems = it }

flutter/ios/Classes/SentryFlutterPluginApple.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,15 +205,15 @@ public class SentryFlutterPluginApple: NSObject, FlutterPlugin {
205205

206206
if var sdk = event.sdk, self.isValidSdk(sdk: sdk) {
207207
if let packages = arguments["packages"] as? [[String: String]] {
208-
if var sdkPackages = sdk["packages"] as? [[String: String]] {
208+
if let sdkPackages = sdk["packages"] as? [[String: String]] {
209209
sdk["packages"] = sdkPackages + packages
210210
} else {
211211
sdk["packages"] = packages
212212
}
213213
}
214214

215215
if let integrations = arguments["integrations"] as? [String] {
216-
if var sdkIntegrations = sdk["integrations"] as? [String] {
216+
if let sdkIntegrations = sdk["integrations"] as? [String] {
217217
sdk["integrations"] = sdkIntegrations + integrations
218218
} else {
219219
sdk["integrations"] = integrations

0 commit comments

Comments
 (0)