From 01808e53eeca80e633d2d6da8058d9833840b50d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 16 Oct 2025 18:09:24 +0000 Subject: [PATCH 1/2] Update dependency org.testcontainers:testcontainers-bom to v2 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f5b2ed5..cf7f69b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -48,7 +48,7 @@ quarkus-kotlin = { module = "io.quarkus:quarkus-kotlin" } quarkus-resteasy = { module = "io.quarkus:quarkus-resteasy" } quarkus-resteasy-jsonb = { module = "io.quarkus:quarkus-resteasy-jsonb" } -testcontainers-bom = { module = "org.testcontainers:testcontainers-bom", version = "1.21.3" } +testcontainers-bom = { module = "org.testcontainers:testcontainers-bom", version = "2.0.1" } testcontainers-mysql = { module = "org.testcontainers:mysql" } testcontainers-postgresql = { module = "org.testcontainers:postgresql" } From dd1fd9c6f803292822d3621386d845a2f0d0f75f Mon Sep 17 00:00:00 2001 From: Toshihiro Nakamura Date: Sat, 18 Oct 2025 11:18:45 +0900 Subject: [PATCH 2/2] Fix incorrect Testcontainers module identifiers in `libs.versions.toml`. --- gradle/libs.versions.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index cf7f69b..43e63c0 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -49,8 +49,8 @@ quarkus-resteasy = { module = "io.quarkus:quarkus-resteasy" } quarkus-resteasy-jsonb = { module = "io.quarkus:quarkus-resteasy-jsonb" } testcontainers-bom = { module = "org.testcontainers:testcontainers-bom", version = "2.0.1" } -testcontainers-mysql = { module = "org.testcontainers:mysql" } -testcontainers-postgresql = { module = "org.testcontainers:postgresql" } +testcontainers-mysql = { module = "org.testcontainers:testcontainers-mysql" } +testcontainers-postgresql = { module = "org.testcontainers:testcontainers-postgresql" } freemarker = { module = "org.freemarker:freemarker", version = "2.3.34" } freemarker-java8 = { module = "no.api.freemarker:freemarker-java8", version = "3.0.3" }