Skip to content

Commit

Permalink
Update dependecies (#1439)
Browse files Browse the repository at this point in the history
* Update dependecies

* Update invalid bookmark tests (#1426)

* Update variable declarations

* Update Logback to 1.2.12
  • Loading branch information
injectives authored Jun 28, 2023
1 parent cbd9e63 commit 37c04b4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ void shouldFailBoBeginTxWithInvalidBookmark() {
.asyncSession(builder().withBookmarks(parse("InvalidBookmark")).build());

ClientException e = assertThrows(ClientException.class, () -> await(session.beginTransactionAsync()));
assertThat(e.getMessage(), containsString("InvalidBookmark"));
assertTrue(e.getMessage().contains("InvalidBookmark")
|| e.getMessage().contains("Parsing of supplied bookmarks failed"));
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ void shouldFailBoBeginTxWithInvalidBookmark() {
.rxSession(builder().withBookmarks(parse("InvalidBookmark")).build());

ClientException e = assertThrows(ClientException.class, () -> await(session.beginTransaction()));
assertThat(e.getMessage(), containsString("InvalidBookmark"));
assertTrue(e.getMessage().contains("InvalidBookmark")
|| e.getMessage().contains("Parsing of supplied bookmarks failed"));
}

@Test
Expand Down
22 changes: 11 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,26 +34,26 @@
<!-- Please note that when updating this dependency -->
<!-- (i.e. due to a security vulnerability or bug) that the -->
<!-- corresponding server dependency also needs updating.-->
<netty-bom.version>4.1.86.Final</netty-bom.version>
<netty-bom.version>4.1.94.Final</netty-bom.version>
<!-- Please note that when updating this dependency -->
<!-- (i.e. due to a security vulnerability or bug) that the -->
<!-- corresponding server dependency also needs updating.-->
<reactor-bom.version>2020.0.25</reactor-bom.version>
<reactor-bom.version>2020.0.33</reactor-bom.version>
<rxjava.version>2.2.21</rxjava.version>
<slf4j-api.version>1.7.36</slf4j-api.version>
<hamcrest-junit.version>2.0.0.0</hamcrest-junit.version>
<mockito-core.version>4.9.0</mockito-core.version>
<junit.version>5.9.1</junit.version>
<mockito-core.version>4.11.0</mockito-core.version>
<junit.version>5.9.3</junit.version>
<testng-engine.version>1.0.4</testng-engine.version>
<jarchivelib.version>1.2.0</jarchivelib.version>
<bouncycastle-jdk15on.version>1.70</bouncycastle-jdk15on.version>
<logback-classic.version>1.2.11</logback-classic.version>
<jackson.version>2.14.1</jackson.version>
<lombok.version>1.18.24</lombok.version>
<svm.version>21.3.4</svm.version>
<micrometer.version>1.10.2</micrometer.version>
<testcontainers.version>1.17.6</testcontainers.version>
<build-resources.version>4.4.15</build-resources.version>
<logback-classic.version>1.2.12</logback-classic.version>
<jackson.version>2.15.2</jackson.version>
<lombok.version>1.18.28</lombok.version>
<svm.version>21.3.6</svm.version>
<micrometer.version>1.11.1</micrometer.version>
<testcontainers.version>1.18.3</testcontainers.version>
<build-resources.version>4.4.22</build-resources.version>
<!-- To be overwritten by child projects -->
<moduleName/>
</properties>
Expand Down

0 comments on commit 37c04b4

Please sign in to comment.