Skip to content

Commit 1169c6d

Browse files
committed
Upgrade to Neo4j Java Driver 4.4.5
Closes gh-30326
1 parent 26719a2 commit 1169c6d

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/Neo4jAutoConfigurationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2021 the original author or authors.
2+
* Copyright 2012-2022 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.
@@ -292,7 +292,7 @@ void securityWithCustomCertificates(@TempDir File directory) throws IOException
292292
Config.TrustStrategy trustStrategy = mapDriverConfig(properties).trustStrategy();
293293
assertThat(trustStrategy.strategy())
294294
.isEqualTo(Config.TrustStrategy.Strategy.TRUST_CUSTOM_CA_SIGNED_CERTIFICATES);
295-
assertThat(trustStrategy.certFile()).isEqualTo(certFile);
295+
assertThat(trustStrategy.certFiles()).containsOnly(certFile);
296296
}
297297

298298
@Test

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1310,7 +1310,7 @@ bom {
13101310
]
13111311
}
13121312
}
1313-
library("Neo4j Java Driver", "4.4.3") {
1313+
library("Neo4j Java Driver", "4.4.5") {
13141314
group("org.neo4j.driver") {
13151315
modules = [
13161316
"neo4j-java-driver"

0 commit comments

Comments
 (0)