Skip to content

Commit

Permalink
chore(deps): update upgrade all non-major dependencies (gradle)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 21, 2024
1 parent 3ec9445 commit dad2d59
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 26 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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.28" apply false
}

allprojects {
Expand Down
16 changes: 8 additions & 8 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ kotlin {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive")

// Websocket Client
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.12"))
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.13"))
implementation("io.ktor:ktor-client-core")
implementation("io.ktor:ktor-client-cio")
implementation("io.ktor:ktor-client-websockets")
Expand All @@ -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")
Expand All @@ -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.18.0"))
implementation("io.sentry:sentry")
implementation("io.sentry:sentry-logback")

Expand All @@ -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")
Expand All @@ -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 {
Expand Down
14 changes: 7 additions & 7 deletions v16/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ kotlin {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive")

// Websocket Client
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.12"))
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.13"))
implementation("io.ktor:ktor-client-core")
implementation("io.ktor:ktor-client-cio")
implementation("io.ktor:ktor-client-websockets")
Expand All @@ -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")
Expand All @@ -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.18.0"))
implementation("io.sentry:sentry")
implementation("io.sentry:sentry-logback")

Expand All @@ -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")
Expand All @@ -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 {
Expand Down
14 changes: 7 additions & 7 deletions v201/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ kotlin {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive")

// Websocket Client
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.12"))
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.13"))
implementation("io.ktor:ktor-client-core")
implementation("io.ktor:ktor-client-cio")
implementation("io.ktor:ktor-client-websockets")
Expand All @@ -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")
Expand All @@ -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.18.0"))
implementation("io.sentry:sentry")
implementation("io.sentry:sentry-logback")

Expand All @@ -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")
Expand All @@ -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 {
Expand Down

0 comments on commit dad2d59

Please sign in to comment.