From dc6569b94d3cbdf5632840247edfc43179095ce1 Mon Sep 17 00:00:00 2001 From: leszekamz Date: Wed, 23 Jul 2025 08:08:29 -0700 Subject: [PATCH 1/3] updated org.testcontainers dependencies versions to match java wrapper --- tests/integration/host/build.gradle.kts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tests/integration/host/build.gradle.kts b/tests/integration/host/build.gradle.kts index 09c79a4d..93af22ab 100644 --- a/tests/integration/host/build.gradle.kts +++ b/tests/integration/host/build.gradle.kts @@ -30,11 +30,13 @@ dependencies { testImplementation("software.amazon.awssdk:rds:2.20.49") testImplementation("software.amazon.awssdk:ec2:2.20.61") testImplementation("software.amazon.awssdk:secretsmanager:2.20.49") - testImplementation("org.testcontainers:testcontainers:1.17.4") - testImplementation("org.testcontainers:mysql:1.18.0") - testImplementation("org.testcontainers:postgresql:1.17.5") - testImplementation("org.testcontainers:junit-jupiter:1.17.4") - testImplementation("org.testcontainers:toxiproxy:1.17.5") + // Note: all org.testcontainers dependencies should have the same version + testImplementation("org.testcontainers:testcontainers:1.20.4") + testImplementation("org.testcontainers:mysql:1.20.4") + testImplementation("org.testcontainers:postgresql:1.20.4") + testImplementation("org.testcontainers:mariadb:1.20.4") + testImplementation("org.testcontainers:junit-jupiter:1.20.4") + testImplementation("org.testcontainers:toxiproxy:1.20.4") testImplementation("org.apache.poi:poi-ooxml:5.2.2") testImplementation("org.slf4j:slf4j-simple:2.0.3") testImplementation("com.fasterxml.jackson.core:jackson-databind:2.14.2") From 3e05db34d73965fb5ab7399ba149bec1ad59ecc6 Mon Sep 17 00:00:00 2001 From: leszekamz Date: Wed, 23 Jul 2025 11:01:12 -0700 Subject: [PATCH 2/3] removed previously added unnecessary org.testcontainers:mariadb dependency --- tests/integration/host/build.gradle.kts | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration/host/build.gradle.kts b/tests/integration/host/build.gradle.kts index 93af22ab..25e924c6 100644 --- a/tests/integration/host/build.gradle.kts +++ b/tests/integration/host/build.gradle.kts @@ -34,7 +34,6 @@ dependencies { testImplementation("org.testcontainers:testcontainers:1.20.4") testImplementation("org.testcontainers:mysql:1.20.4") testImplementation("org.testcontainers:postgresql:1.20.4") - testImplementation("org.testcontainers:mariadb:1.20.4") testImplementation("org.testcontainers:junit-jupiter:1.20.4") testImplementation("org.testcontainers:toxiproxy:1.20.4") testImplementation("org.apache.poi:poi-ooxml:5.2.2") From 4db784c0594240d2c5290531cd6e41b87bfa40a5 Mon Sep 17 00:00:00 2001 From: leszekamz Date: Wed, 23 Jul 2025 17:55:02 -0700 Subject: [PATCH 3/3] updated org.testcontainers dependencies versions to 1.21.2 --- tests/integration/host/build.gradle.kts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/integration/host/build.gradle.kts b/tests/integration/host/build.gradle.kts index 25e924c6..7351d814 100644 --- a/tests/integration/host/build.gradle.kts +++ b/tests/integration/host/build.gradle.kts @@ -31,11 +31,11 @@ dependencies { testImplementation("software.amazon.awssdk:ec2:2.20.61") testImplementation("software.amazon.awssdk:secretsmanager:2.20.49") // Note: all org.testcontainers dependencies should have the same version - testImplementation("org.testcontainers:testcontainers:1.20.4") - testImplementation("org.testcontainers:mysql:1.20.4") - testImplementation("org.testcontainers:postgresql:1.20.4") - testImplementation("org.testcontainers:junit-jupiter:1.20.4") - testImplementation("org.testcontainers:toxiproxy:1.20.4") + testImplementation("org.testcontainers:testcontainers:1.21.2") + testImplementation("org.testcontainers:mysql:1.21.2") + testImplementation("org.testcontainers:postgresql:1.21.2") + testImplementation("org.testcontainers:junit-jupiter:1.21.2") + testImplementation("org.testcontainers:toxiproxy:1.21.2") testImplementation("org.apache.poi:poi-ooxml:5.2.2") testImplementation("org.slf4j:slf4j-simple:2.0.3") testImplementation("com.fasterxml.jackson.core:jackson-databind:2.14.2")