From da96be0ce3d80af4e3ed45f072939dbb8f6892aa Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 10:37:01 +0000 Subject: [PATCH] fix(deps): update ktor monorepo to v3.5.1 --- action-binding-generator/build.gradle.kts | 6 +++--- jit-binding-server/build.gradle.kts | 4 ++-- maven-binding-builder/build.gradle.kts | 4 ++-- shared-internal/build.gradle.kts | 10 +++++----- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/action-binding-generator/build.gradle.kts b/action-binding-generator/build.gradle.kts index da31feaf7..450fc0e99 100644 --- a/action-binding-generator/build.gradle.kts +++ b/action-binding-generator/build.gradle.kts @@ -16,12 +16,12 @@ version = rootProject.version dependencies { implementation("com.squareup:kotlinpoet:2.3.0") implementation("com.charleskorn.kaml:kaml:0.104.0") - implementation("io.ktor:ktor-client-core:3.5.0") - implementation("io.ktor:ktor-client-cio:3.5.0") + implementation("io.ktor:ktor-client-core:3.5.1") + implementation("io.ktor:ktor-client-cio:3.5.1") implementation("io.github.oshai:kotlin-logging:8.0.4") implementation(projects.sharedInternal) - testImplementation("io.ktor:ktor-client-mock:3.5.0") + testImplementation("io.ktor:ktor-client-mock:3.5.1") testImplementation(projects.githubWorkflowsKt) } diff --git a/jit-binding-server/build.gradle.kts b/jit-binding-server/build.gradle.kts index 946bb3527..338d1232e 100644 --- a/jit-binding-server/build.gradle.kts +++ b/jit-binding-server/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } dependencies { - implementation(platform("io.ktor:ktor-bom:3.5.0")) + implementation(platform("io.ktor:ktor-bom:3.5.1")) implementation("io.ktor:ktor-server-core") implementation("io.ktor:ktor-server-netty") implementation("io.ktor:ktor-server-call-logging") @@ -30,7 +30,7 @@ dependencies { implementation(projects.sharedInternal) testImplementation("io.ktor:ktor-server-test-host") - testImplementation("io.ktor:ktor-client-mock:3.5.0") + testImplementation("io.ktor:ktor-client-mock:3.5.1") testImplementation("io.mockk:mockk:1.14.11") } diff --git a/maven-binding-builder/build.gradle.kts b/maven-binding-builder/build.gradle.kts index 52c16708e..becef2193 100644 --- a/maven-binding-builder/build.gradle.kts +++ b/maven-binding-builder/build.gradle.kts @@ -5,13 +5,13 @@ plugins { dependencies { implementation("org.jetbrains.kotlin:kotlin-compiler") api("io.arrow-kt:arrow-core:2.2.3") - api("io.ktor:ktor-client-core:3.5.0") + api("io.ktor:ktor-client-core:3.5.1") api(projects.actionBindingGenerator) implementation(projects.sharedInternal) implementation("io.github.oshai:kotlin-logging:8.0.4") runtimeOnly(projects.githubWorkflowsKt) - testImplementation("io.ktor:ktor-client-cio:3.5.0") + testImplementation("io.ktor:ktor-client-cio:3.5.1") testImplementation(projects.testUtils) } diff --git a/shared-internal/build.gradle.kts b/shared-internal/build.gradle.kts index f73034df9..a461bed43 100644 --- a/shared-internal/build.gradle.kts +++ b/shared-internal/build.gradle.kts @@ -13,12 +13,12 @@ dependencies { api("io.arrow-kt:arrow-core:2.2.3") // we cannot use a BOM due to limitation in kotlin scripting when resolving the transitive KMM variant dependencies // note: see https://youtrack.jetbrains.com/issue/KT-67618 - api("io.ktor:ktor-client-core:3.5.0") + api("io.ktor:ktor-client-core:3.5.1") api("io.micrometer:micrometer-core:1.17.0") - implementation("io.ktor:ktor-client-cio:3.5.0") - implementation("io.ktor:ktor-client-content-negotiation:3.5.0") - implementation("io.ktor:ktor-client-logging:3.5.0") - implementation("io.ktor:ktor-serialization-kotlinx-json:3.5.0") + implementation("io.ktor:ktor-client-cio:3.5.1") + implementation("io.ktor:ktor-client-content-negotiation:3.5.1") + implementation("io.ktor:ktor-client-logging:3.5.1") + implementation("io.ktor:ktor-serialization-kotlinx-json:3.5.1") implementation("io.github.oshai:kotlin-logging:8.0.4") implementation("com.auth0:java-jwt:4.5.2") implementation("org.kohsuke:github-api:1.330")