From 1b73874bb9883d19540577ba6ea471fd5896477d Mon Sep 17 00:00:00 2001 From: Maxence Cornaton Date: Tue, 29 Aug 2023 12:22:38 +0200 Subject: [PATCH] Upgrade testcontainers@1.19.0 --- CHANGELOG.md | 1 + build.gradle | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74dbde84..b89318d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file. - Upgrade to `eclipse-temurin` 11.0.20. (#98) - Upgrade to Spring Boot 2.7.14. (#99) - Upgrade to Spring Dependency Management Plugin 1.1.3. (#99) +- Upgrade to `testcontainers` 1.19.0. (#101) ## [[8.1.1]](https://github.com/iExecBlockchainComputing/iexec-blockchain-adapter-api/releases/tag/v8.1.1) 2023-06-23 diff --git a/build.gradle b/build.gradle index 8c0c7cfc..ee3d94a1 100644 --- a/build.gradle +++ b/build.gradle @@ -10,6 +10,7 @@ plugins { ext { openFeignVersion = '11.10' + testContainersVersion = '1.19.0' } if (!project.hasProperty('gitBranch')) { @@ -86,7 +87,7 @@ dependencies { testRuntimeOnly("org.junit.platform:junit-platform-launcher") testImplementation 'org.awaitility:awaitility' - itestImplementation 'org.testcontainers:junit-jupiter:1.18.1' + itestImplementation "org.testcontainers:junit-jupiter:$testContainersVersion" } springBoot {