Skip to content

Commit c8596a6

Browse files
buenaflorkahest
andauthored
deps upgrade Kotlin languageVersion to 1.8 (#3032)
* Upgrade Kotlin languageVersion to 1.8 * Update CHANGELOG * UpdatE * Update CHANGELOG.md Co-authored-by: Karl Heinz Struggl <[email protected]> --------- Co-authored-by: Karl Heinz Struggl <[email protected]>
1 parent 827bf09 commit c8596a6

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,32 @@
11
# Changelog
22

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
410

511
### Features
612

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))
1013
- 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`:
1417
```dart
18+
// configure your feedback widget
1519
options.feedback.showBranding = false;
1620
```
1721

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+
1830
### Fixes
1931

2032
- Fix context to native sync for sentry context types ([#3012](https://github.com/getsentry/sentry-dart/pull/3012))

flutter/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ android {
5555
}
5656
kotlinOptions {
5757
jvmTarget = JavaVersion.VERSION_1_8
58-
languageVersion = "1.6"
58+
languageVersion = "1.8"
5959
}
6060
}
6161

0 commit comments

Comments
 (0)