From dce45841f76011844916bbe54b2e856c8a5ac852 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 02:45:27 +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 ee63623..734268e 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -18,7 +18,7 @@ junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api" } junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine" } junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher" } -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 e532dcb130f990cec5a5a1f7e0c72f67a220c4c5 Mon Sep 17 00:00:00 2001 From: Toshihiro Nakamura Date: Tue, 28 Oct 2025 11:29:57 +0900 Subject: [PATCH 2/2] Fix testcontainers module names for v2 compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update module references to use the correct fully-qualified names: - testcontainers:mysql → testcontainers:testcontainers-mysql - testcontainers:postgresql → testcontainers:testcontainers-postgresql This change ensures compatibility with testcontainers-bom v2. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- 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 734268e..e2f0be4 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -19,8 +19,8 @@ junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine" } junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher" } 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" } google-java-format = { module = "com.google.googlejavaformat:google-java-format", version = "1.28.0" } ktlint = { module = "com.pinterest.ktlint:ktlint-cli", version = "1.7.1" }