From cf2427c65ac0073b054300cbc2f2b1a521c956f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 21:45:28 +0000 Subject: [PATCH] build(deps): bump the gradle-minor-dependencies group across 1 directory with 5 updates Bumps the gradle-minor-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | com.android.application | `8.13.1` | `8.13.2` | | [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin) | `2.2.21` | `2.3.0` | | com.android.library | `8.13.1` | `8.13.2` | | [jvm](https://github.com/JetBrains/kotlin) | `2.2.21` | `2.3.0` | | [plugin.serialization](https://github.com/JetBrains/kotlin) | `2.2.21` | `2.3.0` | Updates `com.android.application` from 8.13.1 to 8.13.2 Updates `org.jetbrains.kotlin.android` from 2.2.21 to 2.3.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.2.21...v2.3.0) Updates `com.android.library` from 8.13.1 to 8.13.2 Updates `jvm` from 2.2.21 to 2.3.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.2.21...v2.3.0) Updates `plugin.serialization` from 2.2.21 to 2.3.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.2.21...v2.3.0) --- updated-dependencies: - dependency-name: com.android.application dependency-version: 8.13.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-minor-dependencies - dependency-name: org.jetbrains.kotlin.android dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-minor-dependencies - dependency-name: com.android.library dependency-version: 8.13.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-minor-dependencies - dependency-name: jvm dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-minor-dependencies - dependency-name: plugin.serialization dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-minor-dependencies ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index c7b3912d..c5bec5f0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,15 +3,15 @@ import io.gitlab.arturbosch.detekt.report.ReportMergeTask // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "8.13.1" apply false - id("org.jetbrains.kotlin.android") version "2.2.21" apply false - id("com.android.library") version "8.13.1" apply false + id("com.android.application") version "8.13.2" apply false + id("org.jetbrains.kotlin.android") version "2.3.0" apply false + id("com.android.library") version "8.13.2" apply false id("io.gitlab.arturbosch.detekt") version "1.23.8" id("org.jetbrains.dokka") version "2.1.0" id("io.github.gradle-nexus.publish-plugin") version "2.0.0" - kotlin("jvm") version "2.2.21" - kotlin("plugin.serialization") version "2.2.21" + kotlin("jvm") version "2.3.0" + kotlin("plugin.serialization") version "2.3.0" } val detektReportMergeSarif by tasks.registering(ReportMergeTask::class) {