From 97f497f1d1171c84ea127ff3afb49a4e8fe62f8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Oct 2025 20:04:40 +0000 Subject: [PATCH] Bump the kotlin group with 4 updates Bumps the kotlin group with 4 updates: [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin), [org.jetbrains.kotlin.plugin.parcelize](https://github.com/JetBrains/kotlin), [com.google.devtools.ksp](https://github.com/google/ksp) and [org.jetbrains.kotlin:kotlin-reflect](https://github.com/JetBrains/kotlin). Updates `org.jetbrains.kotlin.android` from 2.2.20 to 2.2.21 - [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.20...v2.2.21) Updates `org.jetbrains.kotlin.plugin.parcelize` from 2.2.20 to 2.2.21 - [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.20...v2.2.21) Updates `com.google.devtools.ksp` from 2.2.20-2.0.4 to 2.3.0 - [Release notes](https://github.com/google/ksp/releases) - [Commits](https://github.com/google/ksp/compare/2.2.20-2.0.4...2.3.0) Updates `org.jetbrains.kotlin:kotlin-reflect` from 2.2.20 to 2.2.21 - [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.20...v2.2.21) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin.android dependency-version: 2.2.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kotlin - dependency-name: org.jetbrains.kotlin.plugin.parcelize dependency-version: 2.2.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kotlin - dependency-name: com.google.devtools.ksp dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kotlin - dependency-name: org.jetbrains.kotlin:kotlin-reflect dependency-version: 2.2.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kotlin ... Signed-off-by: dependabot[bot] --- FlowCrypt/build.gradle.kts | 2 +- build.gradle.kts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/FlowCrypt/build.gradle.kts b/FlowCrypt/build.gradle.kts index 457eccad4..d82f9bb3e 100644 --- a/FlowCrypt/build.gradle.kts +++ b/FlowCrypt/build.gradle.kts @@ -449,7 +449,7 @@ dependencies { testImplementation("com.shazam:shazamcrest:0.11") testImplementation("org.robolectric:robolectric:4.16") //we need it to test Parcelable implementation - testImplementation("org.jetbrains.kotlin:kotlin-reflect:2.2.20") + testImplementation("org.jetbrains.kotlin:kotlin-reflect:2.2.21") testImplementation("junit:junit:4.13.2") testImplementation("androidx.room:room-testing:2.8.1") testImplementation("io.github.classgraph:classgraph:4.8.184") diff --git a/build.gradle.kts b/build.gradle.kts index 4243fd367..78440aac1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,11 +7,11 @@ plugins { id("com.android.application") version "8.13.0" apply false - id("org.jetbrains.kotlin.android") version "2.2.20" apply false + id("org.jetbrains.kotlin.android") version "2.2.21" apply false id("androidx.navigation.safeargs.kotlin") version "2.9.5" apply false id("com.starter.easylauncher") version "6.4.1" apply false - id("org.jetbrains.kotlin.plugin.parcelize") version "2.2.20" apply false - id("com.google.devtools.ksp") version "2.2.20-2.0.4" apply false + id("org.jetbrains.kotlin.plugin.parcelize") version "2.2.21" apply false + id("com.google.devtools.ksp") version "2.3.0" apply false id("org.ajoberstar.grgit") version "5.3.3" apply false }