Skip to content

Commit 8fd4afc

Browse files
committed
Updated version to 0.28.1 for bugfix/workaround for RelationshipTraversalCursor issue in Neo4j 4.3
1 parent bb13727 commit 8fd4afc

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ This has meant that the spatial library needed a major refactoring to work with
8181
0.28.0 solves this by using different indexes, and keeping all imports completely separate.
8282
The more complex problems of importing newer versions, and stitching together overlapping areas, are not
8383
yet solved.
84+
* Neo4j 4.3 has an issue with leaking RelationshipTraversalCursor, and we needed to do some workarounds to
85+
avoid this issue, usually by exhausting the iterator, which can have a higher performance cost in some cases.
86+
Version 0.28.1 includes this fix.
8487

8588
Consequences of the port to Neo4j 4.x:
8689

@@ -355,7 +358,7 @@ The Neo4j Spatial Plugin is available for inclusion in the server version of Neo
355358
* [v0.27.1 for Neo4j 4.1.7](https://github.com/neo4j-contrib/m2/blob/master/releases/org/neo4j/neo4j-spatial/0.27.1-neo4j-4.1.7/neo4j-spatial-0.27.1-neo4j-4.1.7-server-plugin.jar?raw=true)
356359
* [v0.27.2 for Neo4j 4.2.3](https://github.com/neo4j-contrib/m2/blob/master/releases/org/neo4j/neo4j-spatial/0.27.2-neo4j-4.2.3/neo4j-spatial-0.27.2-neo4j-4.2.3-server-plugin.jar?raw=true)
357360
* [v0.28.0 for Neo4j 4.2.3](https://github.com/neo4j-contrib/m2/blob/master/releases/org/neo4j/neo4j-spatial/0.28.0-neo4j-4.2.3/neo4j-spatial-0.28.0-neo4j-4.2.3-server-plugin.jar?raw=true)
358-
* [v0.28.0 for Neo4j 4.3.10](https://github.com/neo4j-contrib/m2/blob/master/releases/org/neo4j/neo4j-spatial/0.28.0-neo4j-4.3.10/neo4j-spatial-0.28.0-neo4j-4.3.10-server-plugin.jar?raw=true)
361+
* [v0.28.1 for Neo4j 4.3.10](https://github.com/neo4j-contrib/m2/blob/master/releases/org/neo4j/neo4j-spatial/0.28.1-neo4j-4.3.10/neo4j-spatial-0.28.1-neo4j-4.3.10-server-plugin.jar?raw=true)
359362

360363
For versions up to 0.15-neo4j-2.3.4:
361364

@@ -472,7 +475,7 @@ Add the following repositories and dependency to your project's pom.xml:
472475
<dependency>
473476
<groupId>org.neo4j</groupId>
474477
<artifactId>neo4j-spatial</artifactId>
475-
<version>0.28.0-neo4j-4.3.10</version>
478+
<version>0.28.1-neo4j-4.3.10</version>
476479
</dependency>
477480
~~~
478481

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<modelVersion>4.0.0</modelVersion>
2424
<artifactId>neo4j-spatial</artifactId>
2525
<groupId>org.neo4j</groupId>
26-
<version>0.28.0-neo4j-4.3.10</version>
26+
<version>0.28.1-neo4j-4.3.10</version>
2727
<name>Neo4j - Spatial Components</name>
2828
<description>Spatial utilities and components for Neo4j</description>
2929
<url>http://components.neo4j.org/${project.artifactId}/${project.version}</url>

0 commit comments

Comments
 (0)