Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 19 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,32 @@
# Changelog

## 9.2.0
## Unreleased

### Breaking Change (Tooling)

- Upgrade Kotlin `languageVersion` to `1.8` ([#3032](https://github.com/getsentry/sentry-dart/pull/3032))
- This allows usage of the Kotlin Android Plugin `2.2.0` which requires a `languageVersion` of `1.8` or higher
- If you are experiencing an issue we recommend upgrading to a toolchain compatible with Kotlin `1.8` or higher

### Features

- Add os and device attributes to Flutter logs ([#2978](https://github.com/getsentry/sentry-dart/pull/2978))
- String templating for structured logs ([#3002](https://github.com/getsentry/sentry-dart/pull/3002))
- Add user attributes to Dart/Flutter logs ([#3014](https://github.com/getsentry/sentry-dart/pull/3002))
- SentryFeedbackWidget Improvements ([#2964](https://github.com/getsentry/sentry-dart/pull/2964))
- Capture a device screenshot for feedback
- Customize tests and required fields
- Customization moved from the `SentryFeedbackWidget` constructor to `SentryFlutterOptions`:
- Capture a device screenshot for feedback
- Customize tests and required fields
- Customization moved from the `SentryFeedbackWidget` constructor to `SentryFlutterOptions`:
```dart
// configure your feedback widget
options.feedback.showBranding = false;
```

## 9.2.0

### Features

- Add os and device attributes to Flutter logs ([#2978](https://github.com/getsentry/sentry-dart/pull/2978))
- String templating for structured logs ([#3002](https://github.com/getsentry/sentry-dart/pull/3002))
- Add user attributes to Dart/Flutter logs ([#3014](https://github.com/getsentry/sentry-dart/pull/3002))

### Fixes

- Fix context to native sync for sentry context types ([#3012](https://github.com/getsentry/sentry-dart/pull/3012))
Expand Down
2 changes: 1 addition & 1 deletion flutter/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ android {
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
languageVersion = "1.6"
languageVersion = "1.8"
}
}

Expand Down
Loading