From 7f0922b109c2e6f59cdaf6ad836700dd0603afd2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 12:39:17 +0000 Subject: [PATCH 1/2] chore(deps): bump org.testcontainers:testcontainers-bom Bumps [org.testcontainers:testcontainers-bom](https://github.com/testcontainers/testcontainers-java) from 1.21.3 to 2.0.3. - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.21.3...2.0.3) --- updated-dependencies: - dependency-name: org.testcontainers:testcontainers-bom dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- lib/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index db7ff61..b7bb257 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -46,7 +46,7 @@ dependencies { testImplementation("org.mockito:mockito-core:5.8.0") // Integration and Performance Testing - testImplementation(platform("org.testcontainers:testcontainers-bom:1.21.3")) + testImplementation(platform("org.testcontainers:testcontainers-bom:2.0.3")) testImplementation("org.testcontainers:junit-jupiter") testImplementation("org.testcontainers:postgresql") // For general container support testImplementation("org.awaitility:awaitility:4.3.0") From 2a630b1bf36f272cd0b084b5865609555d7811d8 Mon Sep 17 00:00:00 2001 From: Sebastian Veit Date: Mon, 26 Jan 2026 13:43:56 +0100 Subject: [PATCH 2/2] fix: update testcontainers artifact names for v2 --- lib/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index b7bb257..c096490 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -47,8 +47,8 @@ dependencies { // Integration and Performance Testing testImplementation(platform("org.testcontainers:testcontainers-bom:2.0.3")) - testImplementation("org.testcontainers:junit-jupiter") - testImplementation("org.testcontainers:postgresql") // For general container support + testImplementation("org.testcontainers:testcontainers-junit-jupiter") + testImplementation("org.testcontainers:testcontainers-postgresql") // For general container support testImplementation("org.awaitility:awaitility:4.3.0") }