From 86e0dd9b709ab559385557576262278547e3121a Mon Sep 17 00:00:00 2001 From: Belonogov Nikolay Date: Fri, 17 Nov 2023 16:22:26 +0300 Subject: [PATCH] Bump dependencies - Bump testcontainers-java-tarantool to 1.0.1 - Bump cartridge-driver to 0.13.0 - CHANGELOG.md Closes #133 --- CHANGELOG.md | 3 ++- pom.xml | 4 ++-- .../repository/support/SampleUserIntegrationTest.java | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bc088c..63b698f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog ## [Unreleased] - +- Bump cartridge-driver version to 0.13.0 +- Bump testcontainers-java-tarantool version to 1.0.1 ## [0.6.0] - 2023-06-14 - Bump cartridge-java version to 0.12.0 ([#123](https://github.com/tarantool/cartridge-springdata/issues/123)) diff --git a/pom.xml b/pom.xml index 4e7881f..f7b4828 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ io.tarantool cartridge-driver - 0.12.0 + 0.13.0 org.slf4j @@ -158,7 +158,7 @@ io.tarantool testcontainers-java-tarantool - 0.5.3 + 1.0.1 test diff --git a/src/test/java/org/springframework/data/tarantool/repository/support/SampleUserIntegrationTest.java b/src/test/java/org/springframework/data/tarantool/repository/support/SampleUserIntegrationTest.java index b875967..ea80a2f 100644 --- a/src/test/java/org/springframework/data/tarantool/repository/support/SampleUserIntegrationTest.java +++ b/src/test/java/org/springframework/data/tarantool/repository/support/SampleUserIntegrationTest.java @@ -31,19 +31,19 @@ public class SampleUserIntegrationTest extends BaseIntegrationTest { @BeforeAll public static void setUp() throws Exception { - tarantoolContainer.executeScript("test_setup.lua").get(); + tarantoolContainer.executeScript("test_setup.lua"); } @BeforeEach @SneakyThrows void setUpTest() { - tarantoolContainer.executeScript("test_teardown.lua").join(); + tarantoolContainer.executeScript("test_teardown.lua"); } @AfterAll @SneakyThrows public static void tearDown() { - tarantoolContainer.executeScript("test_teardown.lua").join(); + tarantoolContainer.executeScript("test_teardown.lua"); } @Test