Skip to content

Commit

Permalink
chore(deps): update upgrade all non-major dependencies (gradle) (#15)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Aug 16, 2024
1 parent 7803990 commit e64573c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
kotlin("multiplatform") version "1.9.23" apply false
id("org.jetbrains.compose") version "1.6.2" apply false
id("org.jlleitschuh.gradle.ktlint") version "12.1.0" apply false
id("com.google.devtools.ksp") version "1.9.23-1.0.20" apply false
kotlin("multiplatform") version "1.9.25" apply false
id("org.jetbrains.compose") version "1.6.11" apply false
id("org.jlleitschuh.gradle.ktlint") version "12.1.1" apply false
id("com.google.devtools.ksp") version "1.9.25-1.0.20" apply false
}

allprojects {
Expand Down
12 changes: 6 additions & 6 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ kotlin {
implementation(compose.desktop.currentOs)

// Coroutines
implementation(project.dependencies.platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.0"))
implementation(project.dependencies.platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.1"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-slf4j")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive")

// Websocket Client
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.10"))
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.12"))
implementation("io.ktor:ktor-client-core")
implementation("io.ktor:ktor-client-cio")
implementation("io.ktor:ktor-client-websockets")
Expand All @@ -37,7 +37,7 @@ kotlin {
implementation("io.ktor:ktor-serialization-jackson")

// Jackson
implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.17.0"))
implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.17.2"))
implementation("com.fasterxml.jackson.core:jackson-core")
implementation("com.fasterxml.jackson.core:jackson-annotations")
implementation("com.fasterxml.jackson.core:jackson-databind")
Expand All @@ -52,11 +52,11 @@ kotlin {
implementation("org.bouncycastle:bcprov-jdk18on:1.78.1")

// Logging
implementation("ch.qos.logback:logback-classic:1.5.6")
implementation("ch.qos.logback:logback-classic:1.5.7")
implementation("io.github.microutils:kotlin-logging-jvm:3.0.5")

// Sentry (Crash reporting)
implementation(project.dependencies.platform("io.sentry:sentry-bom:7.8.0"))
implementation(project.dependencies.platform("io.sentry:sentry-bom:7.14.0"))
implementation("io.sentry:sentry")
implementation("io.sentry:sentry-logback")

Expand All @@ -71,7 +71,7 @@ kotlin {
implementation("io.insert-koin:koin-annotations:1.3.1")

// SQL Database
implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.49.0"))
implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.53.0"))
implementation("org.jetbrains.exposed:exposed-core")
implementation("org.jetbrains.exposed:exposed-dao")
implementation("org.jetbrains.exposed:exposed-jdbc")
Expand Down
12 changes: 6 additions & 6 deletions v16/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ kotlin {
implementation(files("libs/v16-0.8.7.jar"))

// Coroutines
implementation(project.dependencies.platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.0"))
implementation(project.dependencies.platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.1"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-slf4j")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive")

// Websocket Client
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.10"))
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.12"))
implementation("io.ktor:ktor-client-core")
implementation("io.ktor:ktor-client-cio")
implementation("io.ktor:ktor-client-websockets")
Expand All @@ -49,7 +49,7 @@ kotlin {
implementation("io.ktor:ktor-serialization-jackson")

// Jackson
implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.17.0"))
implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.17.2"))
implementation("com.fasterxml.jackson.core:jackson-core")
implementation("com.fasterxml.jackson.core:jackson-annotations")
implementation("com.fasterxml.jackson.core:jackson-databind")
Expand All @@ -61,11 +61,11 @@ kotlin {
implementation("io.nayuki:qrcodegen:1.8.0")

// Logging
implementation("ch.qos.logback:logback-classic:1.5.6")
implementation("ch.qos.logback:logback-classic:1.5.7")
implementation("io.github.microutils:kotlin-logging-jvm:3.0.5")

// Sentry (Crash reporting)
implementation(project.dependencies.platform("io.sentry:sentry-bom:7.8.0"))
implementation(project.dependencies.platform("io.sentry:sentry-bom:7.14.0"))
implementation("io.sentry:sentry")
implementation("io.sentry:sentry-logback")

Expand All @@ -80,7 +80,7 @@ kotlin {
implementation("io.insert-koin:koin-annotations:1.3.1")

// SQL Database
implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.49.0"))
implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.53.0"))
implementation("org.jetbrains.exposed:exposed-core")
implementation("org.jetbrains.exposed:exposed-dao")
implementation("org.jetbrains.exposed:exposed-jdbc")
Expand Down
12 changes: 6 additions & 6 deletions v201/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ kotlin {
implementation(files("libs/v201-0.8.7.jar"))

// Coroutines
implementation(project.dependencies.platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.0"))
implementation(project.dependencies.platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.1"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-slf4j")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive")

// Websocket Client
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.10"))
implementation(project.dependencies.platform("io.ktor:ktor-bom:2.3.12"))
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.17.0"))
implementation(project.dependencies.platform("com.fasterxml.jackson:jackson-bom:2.17.2"))
implementation("com.fasterxml.jackson.core:jackson-core")
implementation("com.fasterxml.jackson.core:jackson-annotations")
implementation("com.fasterxml.jackson.core:jackson-databind")
Expand All @@ -59,11 +59,11 @@ kotlin {
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")

// Logging
implementation("ch.qos.logback:logback-classic:1.5.6")
implementation("ch.qos.logback:logback-classic:1.5.7")
implementation("io.github.microutils:kotlin-logging-jvm:3.0.5")

// Sentry (Crash reporting)
implementation(project.dependencies.platform("io.sentry:sentry-bom:7.8.0"))
implementation(project.dependencies.platform("io.sentry:sentry-bom:7.14.0"))
implementation("io.sentry:sentry")
implementation("io.sentry:sentry-logback")

Expand All @@ -78,7 +78,7 @@ kotlin {
implementation("io.insert-koin:koin-annotations:1.3.1")

// SQL Database
implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.49.0"))
implementation(project.dependencies.platform("org.jetbrains.exposed:exposed-bom:0.53.0"))
implementation("org.jetbrains.exposed:exposed-core")
implementation("org.jetbrains.exposed:exposed-dao")
implementation("org.jetbrains.exposed:exposed-jdbc")
Expand Down

0 comments on commit e64573c

Please sign in to comment.