Skip to content

Commit 9fb7077

Browse files
committed
Upgrade to Neo4j Java Driver 5.26.2
Closes gh-43132
1 parent 5b72231 commit 9fb7077

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 the original author or authors.
2+
* Copyright 2012-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -66,7 +66,7 @@ void driverSettingsHaveConsistentDefaults() {
6666
}
6767

6868
private static void assertDuration(Duration duration, long expectedValueInMillis) {
69-
if (expectedValueInMillis == org.neo4j.driver.internal.async.pool.PoolSettings.NOT_CONFIGURED) {
69+
if (expectedValueInMillis == -1) {
7070
assertThat(duration).isNull();
7171
}
7272
else {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1509,7 +1509,7 @@ bom {
15091509
]
15101510
}
15111511
}
1512-
library("Neo4j Java Driver", "5.26.0") {
1512+
library("Neo4j Java Driver", "5.26.2") {
15131513
alignWith {
15141514
version {
15151515
from "org.springframework.data:spring-data-neo4j"

0 commit comments

Comments
 (0)