From 06259d7a5c9780c3cd5567c088c9cd25ed82ba85 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 19:22:10 +0000 Subject: [PATCH] chore(deps): update upgrade all non-major dependencies (gradle) --- build.gradle.kts | 8 ++++---- common/build.gradle.kts | 14 +++++++------- v16/build.gradle.kts | 12 ++++++------ v201/build.gradle.kts | 12 ++++++------ 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 8f6c27c..da6895b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,9 +1,9 @@ plugins { - kotlin("multiplatform") version "2.0.20" apply false - id("org.jetbrains.compose") version "1.6.11" apply false - id("org.jetbrains.kotlin.plugin.compose") version "2.0.20" apply false + kotlin("multiplatform") version "2.0.21" apply false + id("org.jetbrains.compose") version "1.7.1" apply false + id("org.jetbrains.kotlin.plugin.compose") version "2.0.21" apply false id("org.jlleitschuh.gradle.ktlint") version "12.1.1" apply false - id("com.google.devtools.ksp") version "2.0.20-1.0.25" apply false + id("com.google.devtools.ksp") version "2.0.21-1.0.27" apply false } allprojects { diff --git a/common/build.gradle.kts b/common/build.gradle.kts index 4533925..84fb6cc 100644 --- a/common/build.gradle.kts +++ b/common/build.gradle.kts @@ -38,7 +38,7 @@ kotlin { implementation("io.ktor:ktor-serialization-jackson") // Jackson - implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.18.0")) + implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.18.1")) implementation("com.fasterxml.jackson.core:jackson-core") implementation("com.fasterxml.jackson.core:jackson-annotations") implementation("com.fasterxml.jackson.core:jackson-databind") @@ -50,14 +50,14 @@ kotlin { implementation("io.nayuki:qrcodegen:1.8.0") // Bouncy Castle for Eichrecht signed data - implementation("org.bouncycastle:bcprov-jdk18on:1.78.1") + implementation("org.bouncycastle:bcprov-jdk18on:1.79") // Logging - implementation("ch.qos.logback:logback-classic:1.5.8") + implementation("ch.qos.logback:logback-classic:1.5.12") implementation("io.github.microutils:kotlin-logging-jvm:3.0.5") // Sentry (Crash reporting) - implementation(project.dependencies.platform("io.sentry:sentry-bom:7.14.0")) + implementation(project.dependencies.platform("io.sentry:sentry-bom:7.16.0")) implementation("io.sentry:sentry") implementation("io.sentry:sentry-logback") @@ -69,10 +69,10 @@ kotlin { implementation("io.insert-koin:koin-core") implementation("io.insert-koin:koin-ktor") implementation("io.insert-koin:koin-logger-slf4j") - implementation("io.insert-koin:koin-annotations:1.3.1") + implementation("io.insert-koin:koin-annotations:1.4.0") // SQL Database - implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.55.0")) + implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.56.0")) implementation("org.jetbrains.exposed:exposed-core") implementation("org.jetbrains.exposed:exposed-dao") implementation("org.jetbrains.exposed:exposed-jdbc") @@ -89,7 +89,7 @@ kotlin { } dependencies { - add("kspJvm", "io.insert-koin:koin-ksp-compiler:1.3.1") + add("kspJvm", "io.insert-koin:koin-ksp-compiler:1.4.0") } ktlint { diff --git a/v16/build.gradle.kts b/v16/build.gradle.kts index 0997e20..92ed691 100644 --- a/v16/build.gradle.kts +++ b/v16/build.gradle.kts @@ -50,7 +50,7 @@ kotlin { implementation("io.ktor:ktor-serialization-jackson") // Jackson - implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.18.0")) + implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.18.1")) implementation("com.fasterxml.jackson.core:jackson-core") implementation("com.fasterxml.jackson.core:jackson-annotations") implementation("com.fasterxml.jackson.core:jackson-databind") @@ -62,11 +62,11 @@ kotlin { implementation("io.nayuki:qrcodegen:1.8.0") // Logging - implementation("ch.qos.logback:logback-classic:1.5.8") + implementation("ch.qos.logback:logback-classic:1.5.12") implementation("io.github.microutils:kotlin-logging-jvm:3.0.5") // Sentry (Crash reporting) - implementation(project.dependencies.platform("io.sentry:sentry-bom:7.14.0")) + implementation(project.dependencies.platform("io.sentry:sentry-bom:7.16.0")) implementation("io.sentry:sentry") implementation("io.sentry:sentry-logback") @@ -78,10 +78,10 @@ kotlin { implementation("io.insert-koin:koin-core") implementation("io.insert-koin:koin-ktor") implementation("io.insert-koin:koin-logger-slf4j") - implementation("io.insert-koin:koin-annotations:1.3.1") + implementation("io.insert-koin:koin-annotations:1.4.0") // SQL Database - implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.55.0")) + implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.56.0")) implementation("org.jetbrains.exposed:exposed-core") implementation("org.jetbrains.exposed:exposed-dao") implementation("org.jetbrains.exposed:exposed-jdbc") @@ -92,7 +92,7 @@ kotlin { } dependencies { - add("kspJvm", "io.insert-koin:koin-ksp-compiler:1.3.1") + add("kspJvm", "io.insert-koin:koin-ksp-compiler:1.4.0") } ktlint { diff --git a/v201/build.gradle.kts b/v201/build.gradle.kts index b768106..b9b8651 100644 --- a/v201/build.gradle.kts +++ b/v201/build.gradle.kts @@ -51,7 +51,7 @@ kotlin { implementation("io.ktor:ktor-serialization-jackson") // Jackson - implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.18.0")) + implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.18.1")) implementation("com.fasterxml.jackson.core:jackson-core") implementation("com.fasterxml.jackson.core:jackson-annotations") implementation("com.fasterxml.jackson.core:jackson-databind") @@ -60,11 +60,11 @@ kotlin { implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml") // Logging - implementation("ch.qos.logback:logback-classic:1.5.8") + implementation("ch.qos.logback:logback-classic:1.5.12") implementation("io.github.microutils:kotlin-logging-jvm:3.0.5") // Sentry (Crash reporting) - implementation(project.dependencies.platform("io.sentry:sentry-bom:7.14.0")) + implementation(project.dependencies.platform("io.sentry:sentry-bom:7.16.0")) implementation("io.sentry:sentry") implementation("io.sentry:sentry-logback") @@ -76,10 +76,10 @@ kotlin { implementation("io.insert-koin:koin-core") implementation("io.insert-koin:koin-ktor") implementation("io.insert-koin:koin-logger-slf4j") - implementation("io.insert-koin:koin-annotations:1.3.1") + implementation("io.insert-koin:koin-annotations:1.4.0") // SQL Database - implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.55.0")) + implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.56.0")) implementation("org.jetbrains.exposed:exposed-core") implementation("org.jetbrains.exposed:exposed-dao") implementation("org.jetbrains.exposed:exposed-jdbc") @@ -90,7 +90,7 @@ kotlin { } dependencies { - add("kspJvm", "io.insert-koin:koin-ksp-compiler:1.3.1") + add("kspJvm", "io.insert-koin:koin-ksp-compiler:1.4.0") } ktlint {