Skip to content

Commit

Permalink
Merge branch 'main' into release/8.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
buenaflor committed Aug 1, 2024
2 parents d0b710a + 72eeb80 commit 6bd7139
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ SentryFlutter.init((options) =>

### Dependencies

- Bump Android SDK from v7.12.0 to v7.12.1 ([#2198](https://github.com/getsentry/sentry-dart/pull/2198))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7121)
- [diff](https://github.com/getsentry/sentry-java/compare/7.12.0...7.12.1)
- Bump Android SDK from v7.12.0 to v7.13.0 ([#2198](https://github.com/getsentry/sentry-dart/pull/2198), [#2206](https://github.com/getsentry/sentry-dart/pull/2206))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7130)
- [diff](https://github.com/getsentry/sentry-java/compare/7.12.0...7.13.0)

## 8.5.0

Expand Down
1 change: 1 addition & 0 deletions dart/lib/src/client_reports/discard_reason.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ enum DiscardReason {
queueOverflow,
cacheOverflow,
rateLimitBackoff,
ignored,
}
2 changes: 2 additions & 0 deletions dart/lib/src/client_reports/discarded_event.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ extension _OutcomeExtension on DiscardReason {
return 'cache_overflow';
case DiscardReason.rateLimitBackoff:
return 'ratelimit_backoff';
case DiscardReason.ignored:
return 'ignored';
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion flutter/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ android {
}

dependencies {
api 'io.sentry:sentry-android:7.12.1'
api 'io.sentry:sentry-android:7.13.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"

// Required -- JUnit 4 framework
Expand Down

0 comments on commit 6bd7139

Please sign in to comment.