Skip to content

Commit 6a1db91

Browse files
committed
Release 2025.07
1 parent ef3c3f3 commit 6a1db91

File tree

5 files changed

+4
-36
lines changed

5 files changed

+4
-36
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ mvn jetty:run
262262
<dependency>
263263
<groupId>org.neo4j</groupId>
264264
<artifactId>neo4j-spatial</artifactId>
265-
<version>5.26.0</version>
265+
<version>2025.07</version>
266266
</dependency>
267267
</dependencies>
268268
</profile>

docs/docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ nav:
66

77
asciidoc:
88
attributes:
9-
docs-version: 5.26.0
9+
docs-version: 2025.07
1010
copyright: Neo4j Inc.
1111
page-product: Neo4j Spatial
1212
page-type: Neo4j Spatial Manual

docs/docs/modules/ROOT/partials/generated/api/spatial/spatial.decodeGeometry-examples.adoc

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -39,35 +39,3 @@ CREATE (n:Node {geom:'POINT(4.0 5.0)'}) RETURN spatial.decodeGeometry('geom',n)
3939
|point({x: 4.0, y: 5.0, crs: 'cartesian'})
4040
|===
4141

42-
=== Using both functions together
43-
44-
[source,cypher]
45-
----
46-
CALL spatial.addPointLayer('combined_layer') YIELD node
47-
WITH node
48-
CREATE (n:Point {longitude: 5.5, latitude: 45.5, city: 'TestCity', population: 50000})
49-
WITH n
50-
CALL spatial.addNode('combined_layer', n) YIELD node as added_node
51-
WITH n
52-
RETURN
53-
spatial.decodeGeometry('combined_layer', n) as geometry,
54-
spatial.extractAttributes('combined_layer', n) as attributes
55-
56-
----
57-
58-
.Result
59-
60-
[opts="header",cols="2"]
61-
|===
62-
|attributes|geometry
63-
a|
64-
[source]
65-
----
66-
{
67-
"city" : "TestCity",
68-
"population" : 50000
69-
}
70-
----
71-
|point({x: 5.5, y: 45.5, crs: 'cartesian'})
72-
|===
73-

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<modelVersion>4.0.0</modelVersion>
1818
<artifactId>neo4j-spatial</artifactId>
1919
<groupId>org.neo4j</groupId>
20-
<version>2025.07-SNAPSHOT</version>
20+
<version>2025.07</version>
2121
<name>Neo4j - Spatial Components</name>
2222
<description>Spatial utilities and components for Neo4j</description>
2323
<url>https://neo4j.com/labs/neo4j-spatial/5/</url>

server-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>org.neo4j</groupId>
2828
<artifactId>neo4j-spatial</artifactId>
29-
<version>2025.07-SNAPSHOT</version>
29+
<version>2025.07</version>
3030
</parent>
3131

3232
<artifactId>neo4j-spatial-server-plugin</artifactId>

0 commit comments

Comments
 (0)