From 1aa83256c22896f169555f388db5b4e747c94d2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 14:25:50 +0000 Subject: [PATCH 1/2] build(deps): bump com.bugsnag.gradle from 1.1.0 to 1.1.1 Bumps com.bugsnag.gradle from 1.1.0 to 1.1.1. --- updated-dependencies: - dependency-name: com.bugsnag.gradle dependency-version: 1.1.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 0bb048c29..4dd8ac5a6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -89,7 +89,7 @@ event-bus = "0.1.0" bugsnag = "6.26.1" bugsnag-agp = "8.2.0" -bugsnag-gradle-plugin = "1.1.0" +bugsnag-gradle-plugin = "1.1.1" rinku = "1.6.0" compose-unstyled = "2.8.0" haze = "2.0.0-alpha03" From eef6f1045ea5ae609ec442a62092c660ef7137ed Mon Sep 17 00:00:00 2001 From: Brandon McAnsh Date: Fri, 3 Jul 2026 18:16:44 -0400 Subject: [PATCH 2/2] chore(deps): remove unused com.bugsnag.android.gradle plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The classic Bugsnag AGP plugin (com.bugsnag.android.gradle 8.2.0) was declared in the version catalog and sat on the root plugins block with `apply false`, but no module applied it — mapping upload runs through the CLI-based com.bugsnag.gradle plugin instead. Drop the dead `bugsnag-agp` version, the `bugsnag-android` plugin alias, and the root `apply false` entry. This also stops Dependabot opening PRs for the unused 8.2.0 plugin. --- build.gradle.kts | 1 - gradle/libs.versions.toml | 2 -- 2 files changed, 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index b78dc0b06..f85139aee 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,6 @@ plugins { alias(libs.plugins.compose.compiler) apply false alias(libs.plugins.google.services) apply false alias(libs.plugins.firebase.perf) apply false - alias(libs.plugins.bugsnag.android) apply false alias(libs.plugins.bugsnag.gradle) apply false alias(libs.plugins.secrets) apply false alias(libs.plugins.navigation.safeargs) apply false diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 4dd8ac5a6..3f94f4ff5 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -88,7 +88,6 @@ desugaring = "2.1.5" event-bus = "0.1.0" bugsnag = "6.26.1" -bugsnag-agp = "8.2.0" bugsnag-gradle-plugin = "1.1.1" rinku = "1.6.0" compose-unstyled = "2.8.0" @@ -333,7 +332,6 @@ compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = " hilt = { id = "dagger.hilt.android.plugin", version.ref = "hilt" } google-services = { id = "com.google.gms.google-services", version.ref = "google-services" } firebase-perf = { id = "com.google.firebase.firebase-perf", version.ref = "firebase-perf-plugin" } -bugsnag-android = { id = "com.bugsnag.android.gradle", version.ref = "bugsnag-agp" } bugsnag-gradle = { id = "com.bugsnag.gradle", version.ref = "bugsnag-gradle-plugin" } secrets = { id = "com.google.android.libraries.mapsplatform.secrets-gradle-plugin", version.ref = "secrets-gradle-plugin" } navigation-safeargs = { id = "androidx.navigation.safeargs.kotlin", version.ref = "androidx-navigation" }