Skip to content

Commit a4fed4e

Browse files
prepared for release 4.1.0
1 parent c27d797 commit a4fed4e

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ You may add JCypher as a Maven dependency:
4747
<dependency>
4848
<groupId>net.iot-solutions.graphdb</groupId>
4949
<artifactId>jcypher</artifactId>
50-
<version>4.0.1</version>
50+
<version>4.1.0</version>
5151
</dependency>
5252
```
5353
## JCypher on Maven Central

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>net.iot-solutions.graphdb</groupId>
55
<artifactId>jcypher</artifactId>
6-
<version>4.1.0-SNAPSHOT</version>
6+
<version>4.1.0</version>
77

88
<name>${project.groupId}:${project.artifactId}</name>
99
<description> Provides seamlessly integrated Java access to graph databases (Neo4J)

release_notes.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Release Notes
22
=======
33

4+
## 4.1.0
5+
**New**
6+
- Collections in the Query API are now aware of their component type.
7+
- This allows expressions like: **WHERE.valueOf(path.relations().last().type()).EQUALS("Some_Type")**
8+
- or: **WHERE.has(path.nodes().head().label("Some_Label"))**
9+
410
## 4.0.1
511
**Fixed**
612
- minHops(0) now works correctly. Previously it was translated to cypher *.. or * respectively for specifying a link's min cardinality to be zero. However in practice this returns a min cardinality of one. Now minHops(0) is translated to cypher *0.. which works correctly. This also changes the behaviour of Domain Query expression DISTANCE(min, max) with a min of 0. This works correctly now but has changed it's behaviour, so you might need to adopt some of your queries.

src/test/resources/pom_snippets/pom_embedded.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<dependency>
33
<groupId>net.iot-solutions.graphdb</groupId>
44
<artifactId>jcypher</artifactId>
5-
<version>4.0.1</version>
5+
<version>4.1.0</version>
66
<exclusions>
77
<exclusion>
88
<groupId>org.neo4j</groupId>

src/test/resources/pom_snippets/pom_in_memory.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<dependency>
33
<groupId>net.iot-solutions.graphdb</groupId>
44
<artifactId>jcypher</artifactId>
5-
<version>4.0.1</version>
5+
<version>4.1.0</version>
66
<exclusions>
77
<exclusion>
88
<groupId>org.glassfish.jersey.core</groupId>

src/test/resources/pom_snippets/pom_remote.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<dependency>
33
<groupId>net.iot-solutions.graphdb</groupId>
44
<artifactId>jcypher</artifactId>
5-
<version>4.0.1</version>
5+
<version>4.1.0</version>
66
<exclusions>
77
<exclusion>
88
<groupId>org.neo4j</groupId>

0 commit comments

Comments
 (0)