From 7a883faa18f96b904d14567f412a26863ab05d7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2026 12:25:18 +0000 Subject: [PATCH] chore(deps): bump org.slf4j:slf4j-api from 2.0.17 to 2.0.18 Bumps org.slf4j:slf4j-api from 2.0.17 to 2.0.18. --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-version: 2.0.18 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- common/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/build.gradle.kts b/common/build.gradle.kts index 8bd1b18..2e79cb2 100644 --- a/common/build.gradle.kts +++ b/common/build.gradle.kts @@ -3,12 +3,12 @@ plugins { id("gg.grounds.kotlin-conventions") } repositories { mavenCentral() } dependencies { - compileOnly("org.slf4j:slf4j-api:2.0.17") + compileOnly("org.slf4j:slf4j-api:2.0.18") implementation("io.nats:jnats:2.25.2") // service-config answers REST; the client parses its JSON with the same // Jackson 3 line the snapshot applier already uses. implementation("tools.jackson.core:jackson-databind:3.1.2") implementation("tools.jackson.module:jackson-module-kotlin:3.1.2") - testImplementation("org.slf4j:slf4j-api:2.0.17") + testImplementation("org.slf4j:slf4j-api:2.0.18") testImplementation(kotlin("test")) }