From 878477e35a49aa664b3ff9286b1d739972ddd713 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2026 05:13:07 +0000 Subject: [PATCH] chore(deps): bump org.slf4j:slf4j-api from 2.0.18 to 2.0.19 Bumps org.slf4j:slf4j-api from 2.0.18 to 2.0.19. --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-version: 2.0.19 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 f85928e..123f551 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.18") + compileOnly("org.slf4j:slf4j-api:2.0.19") implementation("io.nats:jnats:2.26.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.2.2") implementation("tools.jackson.module:jackson-module-kotlin:3.2.2") - testImplementation("org.slf4j:slf4j-api:2.0.18") + testImplementation("org.slf4j:slf4j-api:2.0.19") testImplementation(kotlin("test")) }