From 23c854c1f216a121d29b8fcaf29639dbbc63f2e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 14:08:26 +0000 Subject: [PATCH] chore(deps): bump org.testcontainers:testcontainers-bom in /backend Bumps [org.testcontainers:testcontainers-bom](https://github.com/testcontainers/testcontainers-java) from 1.21.4 to 2.0.5. - [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.4...2.0.5) --- updated-dependencies: - dependency-name: org.testcontainers:testcontainers-bom dependency-version: 2.0.5 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- backend/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/build.gradle b/backend/build.gradle index 5d66840..806d22a 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -33,9 +33,9 @@ dependencies { testImplementation 'io.projectreactor:reactor-test' // Add this for StepVerifier // Test containers - testImplementation platform('org.testcontainers:testcontainers-bom:1.21.4') - testImplementation 'org.testcontainers:junit-jupiter:1.21.4' - testImplementation 'org.testcontainers:mongodb:1.21.4' + testImplementation platform('org.testcontainers:testcontainers-bom:2.0.5') + testImplementation 'org.testcontainers:junit-jupiter:2.0.5' + testImplementation 'org.testcontainers:mongodb:2.0.5' // end::tests[] testRuntimeOnly 'org.junit.platform:junit-platform-launcher'