Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
- Bump testcontainers-java-tarantool to 1.0.1
- Bump cartridge-driver to 0.13.0
- CHANGELOG.md

Closes #133
  • Loading branch information
nickkkccc authored and dkasimovskiy committed Nov 17, 2023
1 parent 1425d13 commit 86e0dd9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<dependency>
<groupId>io.tarantool</groupId>
<artifactId>cartridge-driver</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -158,7 +158,7 @@
<dependency>
<groupId>io.tarantool</groupId>
<artifactId>testcontainers-java-tarantool</artifactId>
<version>0.5.3</version>
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 86e0dd9

Please sign in to comment.