Skip to content

Commit 6bd7139

Browse files
committed
Merge branch 'main' into release/8.6.0
2 parents d0b710a + 72eeb80 commit 6bd7139

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ SentryFlutter.init((options) =>
3838

3939
### Dependencies
4040

41-
- Bump Android SDK from v7.12.0 to v7.12.1 ([#2198](https://github.com/getsentry/sentry-dart/pull/2198))
42-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7121)
43-
- [diff](https://github.com/getsentry/sentry-java/compare/7.12.0...7.12.1)
41+
- 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))
42+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7130)
43+
- [diff](https://github.com/getsentry/sentry-java/compare/7.12.0...7.13.0)
4444

4545
## 8.5.0
4646

dart/lib/src/client_reports/discard_reason.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ enum DiscardReason {
1111
queueOverflow,
1212
cacheOverflow,
1313
rateLimitBackoff,
14+
ignored,
1415
}

dart/lib/src/client_reports/discarded_event.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ extension _OutcomeExtension on DiscardReason {
3737
return 'cache_overflow';
3838
case DiscardReason.rateLimitBackoff:
3939
return 'ratelimit_backoff';
40+
case DiscardReason.ignored:
41+
return 'ignored';
4042
}
4143
}
4244
}

flutter/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ android {
6060
}
6161

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

6666
// Required -- JUnit 4 framework

0 commit comments

Comments
 (0)