File tree Expand file tree Collapse file tree 2 files changed +20
-8
lines changed Expand file tree Collapse file tree 2 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 9.2.0
3
+ ## Unreleased
4
+
5
+ ### Breaking Change (Tooling)
6
+
7
+ - Upgrade Kotlin ` languageVersion ` to ` 1.8 ` ([ #3032 ] ( https://github.com/getsentry/sentry-dart/pull/3032 ) )
8
+ - This allows usage of the Kotlin Android Plugin ` 2.2.0 ` which requires a ` languageVersion ` of ` 1.8 ` or higher
9
+ - If you are experiencing an issue we recommend upgrading to a toolchain compatible with Kotlin ` 1.8 ` or higher
4
10
5
11
### Features
6
12
7
- - Add os and device attributes to Flutter logs ([ #2978 ] ( https://github.com/getsentry/sentry-dart/pull/2978 ) )
8
- - String templating for structured logs ([ #3002 ] ( https://github.com/getsentry/sentry-dart/pull/3002 ) )
9
- - Add user attributes to Dart/Flutter logs ([ #3014 ] ( https://github.com/getsentry/sentry-dart/pull/3002 ) )
10
13
- SentryFeedbackWidget Improvements ([ #2964 ] ( https://github.com/getsentry/sentry-dart/pull/2964 ) )
11
- - Capture a device screenshot for feedback
12
- - Customize tests and required fields
13
- - Customization moved from the ` SentryFeedbackWidget ` constructor to ` SentryFlutterOptions ` :
14
+ - Capture a device screenshot for feedback
15
+ - Customize tests and required fields
16
+ - Customization moved from the ` SentryFeedbackWidget ` constructor to ` SentryFlutterOptions ` :
14
17
``` dart
18
+ // configure your feedback widget
15
19
options.feedback.showBranding = false;
16
20
```
17
21
22
+ ## 9.2.0
23
+
24
+ ### Features
25
+
26
+ - Add os and device attributes to Flutter logs ([ #2978 ] ( https://github.com/getsentry/sentry-dart/pull/2978 ) )
27
+ - String templating for structured logs ([ #3002 ] ( https://github.com/getsentry/sentry-dart/pull/3002 ) )
28
+ - Add user attributes to Dart/Flutter logs ([ #3014 ] ( https://github.com/getsentry/sentry-dart/pull/3002 ) )
29
+
18
30
### Fixes
19
31
20
32
- Fix context to native sync for sentry context types ([ #3012 ] ( https://github.com/getsentry/sentry-dart/pull/3012 ) )
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ android {
55
55
}
56
56
kotlinOptions {
57
57
jvmTarget = JavaVersion . VERSION_1_8
58
- languageVersion = " 1.6 "
58
+ languageVersion = " 1.8 "
59
59
}
60
60
}
61
61
You can’t perform that action at this time.
0 commit comments