From 1efb548f7aaee6bf31b01367affab661c260d3c2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 23:15:29 +0000 Subject: [PATCH] chore(deps): update upgrade all non-major gradle dependencies --- server/build.gradle.kts | 2 +- settings.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/build.gradle.kts b/server/build.gradle.kts index ecd2906..9c5f43e 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -22,7 +22,7 @@ dependencies { implementation(coroutines.bundles.implementation) // Core - implementation(platform("io.ktor:ktor-bom:3.0.2")) + implementation(platform("io.ktor:ktor-bom:3.0.3")) implementation("io.ktor:ktor-server-core-jvm") implementation("io.ktor:ktor-server-netty-jvm") implementation("io.ktor:ktor-server-host-common-jvm") diff --git a/settings.gradle.kts b/settings.gradle.kts index 471faa8..3563f0a 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -21,7 +21,7 @@ dependencyResolutionManagement { // Kotlin coroutines create("coroutines") { - version("coroutines", "1.9.0") + version("coroutines", "1.10.0") library("platform", "org.jetbrains.kotlinx", "kotlinx-coroutines-bom").versionRef("coroutines") library("core", "org.jetbrains.kotlinx", "kotlinx-coroutines-core").withoutVersion() library("jdk8", "org.jetbrains.kotlinx", "kotlinx-coroutines-jdk8").withoutVersion() @@ -60,7 +60,7 @@ dependencyResolutionManagement { // Logback create("logback") { - version("logback", "1.5.12") + version("logback", "1.5.14") library("logback", "ch.qos.logback", "logback-classic").versionRef("logback") bundle("implementation", listOf("logback")) }