From 1a4df14f02b5ee4be6fe06d252fa48ea569f6437 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Dec 2022 13:05:06 +0000 Subject: [PATCH 1/3] Bump slf4j-api from 2.0.5 to 2.0.6 Bumps [slf4j-api](https://github.com/qos-ch/slf4j) from 2.0.5 to 2.0.6. - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_2.0.5...v_2.0.6) --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- engine/build.gradle.kts | 2 +- integrationtest/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/build.gradle.kts b/engine/build.gradle.kts index 88255118..c1ff00d1 100644 --- a/engine/build.gradle.kts +++ b/engine/build.gradle.kts @@ -69,7 +69,7 @@ dependencies { implementation("com.squareup.moshi:moshi:1.14.0") - implementation("org.slf4j:slf4j-api:2.0.5") + implementation("org.slf4j:slf4j-api:2.0.6") testImplementation("ch.qos.logback:logback-classic:[1.2,2)!!1.3.3") implementation("com.squareup.okio:okio-jvm:3.2.0") diff --git a/integrationtest/build.gradle.kts b/integrationtest/build.gradle.kts index a2b845ff..4839978b 100644 --- a/integrationtest/build.gradle.kts +++ b/integrationtest/build.gradle.kts @@ -57,7 +57,7 @@ dependencies { implementation(project(":engine")) testImplementation("com.squareup.okhttp3:okhttp:4.10.0") - testImplementation("org.slf4j:slf4j-api:2.0.5") + testImplementation("org.slf4j:slf4j-api:2.0.6") testRuntimeOnly("ch.qos.logback:logback-classic:[1.2,2)!!1.3.3") testImplementation("org.spockframework:spock-core:2.3-groovy-4.0") From 552438ae37e92aadf11be09ac2fb6fb215d5527a Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Thu, 29 Dec 2022 20:34:13 +0100 Subject: [PATCH 2/3] Bump version constraints --- engine/build.gradle.kts | 4 ++-- integrationtest/build.gradle.kts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/engine/build.gradle.kts b/engine/build.gradle.kts index c1ff00d1..c9db5dbf 100644 --- a/engine/build.gradle.kts +++ b/engine/build.gradle.kts @@ -19,7 +19,7 @@ dependencies { implementation("org.slf4j:slf4j-api") { version { strictly("[1.7,3)") - prefer("2.0.5") + prefer("2.0.6") } } implementation("com.squareup.moshi:moshi") { @@ -70,7 +70,7 @@ dependencies { implementation("com.squareup.moshi:moshi:1.14.0") implementation("org.slf4j:slf4j-api:2.0.6") - testImplementation("ch.qos.logback:logback-classic:[1.2,2)!!1.3.3") + testImplementation("ch.qos.logback:logback-classic:[1.2,2)!!1.3.5") implementation("com.squareup.okio:okio-jvm:3.2.0") implementation("com.squareup.okhttp3:okhttp:4.10.0") diff --git a/integrationtest/build.gradle.kts b/integrationtest/build.gradle.kts index 4839978b..aac2605e 100644 --- a/integrationtest/build.gradle.kts +++ b/integrationtest/build.gradle.kts @@ -19,7 +19,7 @@ dependencies { implementation("org.slf4j:slf4j-api") { version { strictly("[1.7,3)") - prefer("2.0.5") + prefer("2.0.6") } } listOf( @@ -58,7 +58,7 @@ dependencies { testImplementation("com.squareup.okhttp3:okhttp:4.10.0") testImplementation("org.slf4j:slf4j-api:2.0.6") - testRuntimeOnly("ch.qos.logback:logback-classic:[1.2,2)!!1.3.3") + testRuntimeOnly("ch.qos.logback:logback-classic:[1.2,2)!!1.3.5") testImplementation("org.spockframework:spock-core:2.3-groovy-4.0") testRuntimeOnly("net.bytebuddy:byte-buddy:1.12.19") From 889936d196f979d38f799bdd715574e4d45f878c Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Thu, 29 Dec 2022 20:50:07 +0100 Subject: [PATCH 3/3] Bump test constants --- .../test/groovy/de/gesellix/docker/engine/TestConstants.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrationtest/src/test/groovy/de/gesellix/docker/engine/TestConstants.groovy b/integrationtest/src/test/groovy/de/gesellix/docker/engine/TestConstants.groovy index e60009d5..3c1e53b2 100644 --- a/integrationtest/src/test/groovy/de/gesellix/docker/engine/TestConstants.groovy +++ b/integrationtest/src/test/groovy/de/gesellix/docker/engine/TestConstants.groovy @@ -35,7 +35,7 @@ class TestConstants { Arch : { it in ["amd64", "arm64"] }, BuildTime : { it =~ "2022-\\d{2}-\\d{2}T\\w+" }, GitCommit : { it =~ "\\w{6,}" }, - GoVersion : { it == "go1.18.7" }, + GoVersion : { it == "go1.18.9" }, KernelVersion: { it =~ "\\d.\\d{1,2}.\\d{1,2}\\w*" }, MinAPIVersion: { it == "1.12" }, Os : { it == "linux" },