Skip to content

Commit

Permalink
Merge pull request #2144 from bugsnag/PLAT-13457/protobuf-dep-bump
Browse files Browse the repository at this point in the history
dep: protobuf bump
  • Loading branch information
lemnik authored Feb 11, 2025
2 parents f45ac13 + 15988a2 commit a6ed71d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

* Native crashes will now include their signal code (where applicable) in the error message
[#2135](https://github.com/bugsnag/bugsnag-android/pull/2135)
* Bumped the version of `protobuf-javalite` used by [bugsnag-plugin-android-exitinfo](bugsnag-plugin-android-exitinfo) to 3.25.5
[#2144](https://github.com/bugsnag/bugsnag-android/pull/2144)

## 6.11.0 (2025-01-22)

Expand Down
4 changes: 2 additions & 2 deletions bugsnag-plugin-android-exitinfo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ android {
dependencies {
addCommonModuleDependencies()
api(project(":bugsnag-android-core"))
implementation("com.google.protobuf:protobuf-javalite:3.24.2")
implementation("com.google.protobuf:protobuf-javalite:3.25.5")
}

protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.24.2"
artifact = "com.google.protobuf:protoc:3.25.5"
}
generateProtoTasks {
all().configureEach {
Expand Down
3 changes: 2 additions & 1 deletion features/full_tests/startup_anr.feature
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ Feature: onCreate ANR
# and then terminate the "misbehaving" app with a KILL (9) signal (almost like the ANR code doesn't
# fire at all). Since we can't cover a KILL signal in a test, we skip Android 10.
@skip_android_10
# Android 13 Note: we no longer have permission to inject BACK button events, which are used to
# Android 13+ Note: we no longer have permission to inject BACK button events, which are used to
# trigger the ANR - so the test is not valid on Android 13 either
@skip_android_13
@skip_android_14
Scenario: onCreate ANR is reported
When I clear any error dialogue
And I run "ConfigureStartupAnrScenario"
Expand Down

0 comments on commit a6ed71d

Please sign in to comment.