Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dep: protobuf bump #2144

Merged
merged 2 commits into from
Feb 11, 2025
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
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
Loading