Skip to content

Commit 525cba1

Browse files
committed
Upgrade to Neo4j Java Driver 5.4.0
Closes gh-34344
1 parent f92b6ae commit 525cba1

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,7 @@ void connectionTimeout() {
114114
void maxTransactionRetryTime() {
115115
Neo4jProperties properties = new Neo4jProperties();
116116
properties.setMaxTransactionRetryTime(Duration.ofSeconds(2));
117-
assertThat(mapDriverConfig(properties)).extracting("retrySettings")
118-
.hasFieldOrPropertyWithValue("maxRetryTimeMs", 2000L);
117+
assertThat(mapDriverConfig(properties).maxTransactionRetryTimeMillis()).isEqualTo(2000L);
119118
}
120119

121120
@Test

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ bom {
10181018
]
10191019
}
10201020
}
1021-
library("Neo4j Java Driver", "5.2.0") {
1021+
library("Neo4j Java Driver", "5.4.0") {
10221022
group("org.neo4j.driver") {
10231023
modules = [
10241024
"neo4j-java-driver"

0 commit comments

Comments
 (0)