Skip to content

Commit 9cba05d

Browse files
committed
Upgrade to Neo4j Java Driver 5.4.0
Closes gh-34099
1 parent 6d5c624 commit 9cba05d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/neo4j/Neo4jAutoConfigurationTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,7 @@ void connectionTimeout() {
113113
void maxTransactionRetryTime() {
114114
Neo4jProperties properties = new Neo4jProperties();
115115
properties.setMaxTransactionRetryTime(Duration.ofSeconds(2));
116-
assertThat(mapDriverConfig(properties)).extracting("retrySettings")
117-
.hasFieldOrPropertyWithValue("maxRetryTimeMs", 2000L);
116+
assertThat(mapDriverConfig(properties).maxTransactionRetryTimeMillis()).isEqualTo(2000L);
118117
}
119118

120119
@Test

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ bom {
10041004
]
10051005
}
10061006
}
1007-
library("Neo4j Java Driver", "5.2.0") {
1007+
library("Neo4j Java Driver", "5.4.0") {
10081008
group("org.neo4j.driver") {
10091009
modules = [
10101010
"neo4j-java-driver"

0 commit comments

Comments
 (0)