Skip to content

Commit 062dc3c

Browse files
committed
Upgrade to Neo4J OGM 2.1.3
Closes gh-9335
1 parent 544d516 commit 062dc3c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2016 the original author or authors.
2+
* Copyright 2012-2017 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.
@@ -104,7 +104,8 @@ public void credentialsAreSetFromUri() {
104104
"spring.data.neo4j.uri=http://user:secret@my-server:7474");
105105
Configuration configuration = properties.createConfiguration();
106106
assertDriver(configuration, Neo4jProperties.HTTP_DRIVER,
107-
"http://user:secret@my-server:7474");
107+
"http://my-server:7474");
108+
assertCredentials(configuration, "user", "secret");
108109
assertCredentials(configuration, "user", "secret");
109110
}
110111

spring-boot-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<mysql.version>5.1.42</mysql.version>
138138
<narayana.version>5.5.24.Final</narayana.version>
139139
<nekohtml.version>1.9.22</nekohtml.version>
140-
<neo4j-ogm.version>2.1.2</neo4j-ogm.version>
140+
<neo4j-ogm.version>2.1.3</neo4j-ogm.version>
141141
<postgresql.version>9.4.1212.jre7</postgresql.version>
142142
<querydsl.version>4.1.4</querydsl.version>
143143
<reactor.version>2.0.8.RELEASE</reactor.version>

0 commit comments

Comments
 (0)