Skip to content

Commit 8f3676a

Browse files
2025.06 release (neo4j#1244)
1 parent 410d3d1 commit 8f3676a

File tree

20 files changed

+37
-32
lines changed

20 files changed

+37
-32
lines changed

antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ nav:
66
- modules/ROOT/content-nav.adoc
77
asciidoc:
88
attributes:
9-
neo4j-version: '2025.04'
9+
neo4j-version: '2025.06'

modules/ROOT/pages/appendix/gql-conformance/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
= GQL conformance
33

44
*Last updated*: 4 March 2025 +
5-
*Neo4j version*: 2025.04
5+
*Neo4j version*: 2025.06
66

77
GQL is the new link:https://www.iso.org/home.html[ISO] International Standard query language for graph databases.
88

modules/ROOT/pages/clauses/filter.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= FILTER
22
:description: Information about Cypher's `FILTER` clause.
33
:table-caption!:
4-
:page-role: new-2025.04
4+
:page-role: new-2025.06
55

66
`FILTER` is used to add filters to queries, similar to Cypher's xref:clauses/where.adoc[`WHERE`].
77
Unlike `WHERE`, `FILTER` is not a subclause, which means it can be used independently of the xref:clauses/match.adoc[`MATCH`], xref:clauses/optional-match.adoc[`OPTIONAL MATCH`], and xref:clauses/with.adoc[`WITH`] clauses, but not within them.

modules/ROOT/pages/clauses/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This set is refined and augmented by subsequent parts of the query.
2020

2121
m| xref::clauses/filter.adoc[FILTER]
2222
| Adds filters to queries.
23-
label:new[Introduced in Neo4j 2025.04]
23+
label:new[Introduced in Neo4j 2025.06]
2424

2525
m| xref::clauses/match.adoc[MATCH]
2626
| Specify the patterns to search for in the database.
@@ -45,7 +45,7 @@ m| xref::clauses/finish.adoc[FINISH]
4545

4646
m| xref::clauses/let.adoc[LET]
4747
| Binds values to variables.
48-
label:new[Introduced in Neo4j 2025.04]
48+
label:new[Introduced in Neo4j 2025.06]
4949

5050
m| xref::clauses/return.adoc[RETURN ... [AS]]
5151
| Defines what to include in the query result set.

modules/ROOT/pages/clauses/let.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= LET
22
:description: Information about Cypher's `LET` clause.
33
:table-caption!:
4-
:page-role: new-2025.04
4+
:page-role: new-2025.06
55

66
`LET` binds expressions to variables.
77
For queries involving several chained expressions, it can be a more succinct and readable alternative to xref:clauses/with.adoc[`WITH`].

modules/ROOT/pages/clauses/load-csv.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ In the file `companies.csv`, some rows do not specify values for some columns.
552552
The examples show several options of how to handle `null` values.
553553
554554
[NOTE]
555-
The queries in this example use xref:clauses/filter.adoc#filter-with-where[`FILTER`] (introduced in Neo4j 2025.04) as a replacement for `WITH * WHERE <predicate>`.
555+
The queries in this example use xref:clauses/filter.adoc#filter-with-where[`FILTER`] (introduced in Neo4j 2025.06) as a replacement for `WITH * WHERE <predicate>`.
556556
557557
.companies.csv
558558
[source, csv, filename="companies.csv"]

modules/ROOT/pages/clauses/return.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ The `Movie` node `'Man of Tai Chi'` is returned by the query, but only once (wit
236236
d|Rows: 1
237237
|===
238238

239-
[role=label--new-2025.05]
239+
[role=label--new-2025.06]
240240
[[return-all-results]]
241241
== RETURN ALL
242242

modules/ROOT/pages/clauses/with.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ ORDER BY discountRates
321321
1+d|Rows: 5
322322
|===
323323

324-
[role=label--new-2025.05]
324+
[role=label--new-2025.06]
325325
[[with-all-results]]
326326
== Explicitly project values
327327

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,19 @@
1212

1313
Cypher is a language that is constantly evolving.
1414
New features are added to the language continuously, and occasionally, some features become deprecated and are subsequently removed.
15+
All changes to Cypher are introduced in Neo4j versions.
1516

16-
This section lists all of the features that have been removed, deprecated, added, or extended in different Cypher versions.
17+
This section lists all of the features that have been removed, deprecated, added, or extended in different versions of Neo4j.
1718
Replacement syntax for deprecated and removed features are also indicated.
1819

19-
[[cypher-deprecations-additions-removals-2025.04]]
20-
== Neo4j 2025.04
20+
[IMPORTANT]
21+
Cypher 25 was introduced in Neo4j 2025.06 and can only be used on Neo4j 2025.06+ databases.
22+
Features removed in Cypher 25 are still available on Neo4j 2025.06+ databases either by prepending a query with `CYPHER 5` or by having Cypher 5 as the default language for the database.
2123

22-
=== Removed features
24+
[[cypher-deprecations-additions-removals-2025.06]]
25+
== Neo4j 2025.06
26+
27+
=== Removed in Cypher 25
2328
[cols="2", options="header"]
2429
|===
2530
| Feature
@@ -97,7 +102,7 @@ Errors have replaced notifications for impossible link:{neo4j-docs-base-uri}/ope
97102
|===
98103

99104

100-
=== Updated features
105+
=== Updated in Cypher 25
101106

102107
[cols="2", options="header"]
103108
|===
@@ -198,7 +203,7 @@ RETURN count(p) AS count
198203

199204
|===
200205

201-
=== New features
206+
=== New in Cypher 25
202207

203208
[cols="2", options="header"]
204209
|===

modules/ROOT/pages/functions/index.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ All trigonometric functions operate on radians, unless otherwise specified.
313313
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-cosh[`cosh()`]
314314
| `cosh(input :: FLOAT) :: FLOAT`
315315
| Returns the hyperbolic cosine of a `FLOAT`.
316-
label:new[Introduced in 2025.04]
316+
label:new[Introduced in 2025.06]
317317

318318
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-cot[`cot()`]
319319
| `cot(input :: FLOAT) :: FLOAT`
@@ -322,7 +322,7 @@ label:new[Introduced in 2025.04]
322322
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-coth[`coth()`]
323323
| `coth(input :: FLOAT) :: FLOAT`
324324
| Returns the hyperbolic cotangent of a `FLOAT`.
325-
label:new[Introduced in 2025.04]
325+
label:new[Introduced in 2025.06]
326326

327327
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-degrees[`degrees()`]
328328
| `degrees(input :: FLOAT) :: FLOAT`
@@ -347,7 +347,7 @@ label:new[Introduced in 2025.04]
347347
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-sinh[`sinh()`]
348348
| `sinh(input :: FLOAT) :: FLOAT`
349349
| Returns the hyperbolic sine of a `FLOAT`.
350-
label:new[Introduced in 2025.04]
350+
label:new[Introduced in 2025.06]
351351

352352
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-tan[`tan()`]
353353
| `tan(input :: FLOAT) :: FLOAT`
@@ -356,7 +356,7 @@ label:new[Introduced in 2025.04]
356356
1.1+| xref::functions/mathematical-trigonometric.adoc#functions-tanh[`tanh()`]
357357
| `tanh(input :: FLOAT) :: FLOAT`
358358
| Returns the hyperbolic tangent of a `FLOAT`.
359-
label:new[Introduced in 2025.04]
359+
label:new[Introduced in 2025.06]
360360

361361
|===
362362

0 commit comments

Comments
 (0)