From 30e30fa05ac0a1d74b46bfe0d3282f705da6bc42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Fri, 13 Jun 2025 09:48:04 +0200 Subject: [PATCH 1/4] update dbms.components for cypher 25 --- modules/ROOT/pages/procedures.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/ROOT/pages/procedures.adoc b/modules/ROOT/pages/procedures.adoc index 6cbdb1b3b..639ccdd01 100644 --- a/modules/ROOT/pages/procedures.adoc +++ b/modules/ROOT/pages/procedures.adoc @@ -826,6 +826,11 @@ For more information, see the link:{neo4j-docs-base-uri}/cypher-manual/current/p | *Mode* 3+| DBMS |=== +[NOTE] +As of Neo4j 2025.06, `dbms.components()` will return the supported Cypher versions in a row where the `name` column has the value `'Cypher'`. +If this row is returned, it will have the value `["5", "25"]`, indicating that both Cypher 5 and Cypher 25 are supported. +If this row is not returned, Cypher 25 is not supported. +For more information about Cypher versions, see the link:{neo4j-docs-base-uri}/cypher-manual/queries/select-version/[Cypher Manual -> Select Cypher version]. [[procedure_dbms_info]] === dbms.info() From e7645eb8e1a9e4d6631c88187192947380a8dcfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Fri, 13 Jun 2025 09:54:09 +0200 Subject: [PATCH 2/4] quotes --- modules/ROOT/pages/procedures.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/procedures.adoc b/modules/ROOT/pages/procedures.adoc index 639ccdd01..27137c25b 100644 --- a/modules/ROOT/pages/procedures.adoc +++ b/modules/ROOT/pages/procedures.adoc @@ -827,7 +827,7 @@ For more information, see the link:{neo4j-docs-base-uri}/cypher-manual/current/p |=== [NOTE] -As of Neo4j 2025.06, `dbms.components()` will return the supported Cypher versions in a row where the `name` column has the value `'Cypher'`. +As of Neo4j 2025.06, `dbms.components()` will return the supported Cypher versions in a row where the `name` column has the value `"Cypher"`. If this row is returned, it will have the value `["5", "25"]`, indicating that both Cypher 5 and Cypher 25 are supported. If this row is not returned, Cypher 25 is not supported. For more information about Cypher versions, see the link:{neo4j-docs-base-uri}/cypher-manual/queries/select-version/[Cypher Manual -> Select Cypher version]. From 5b1e8f2a50e18508d776ee016eee07171ee09d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Fri, 13 Jun 2025 10:08:33 +0200 Subject: [PATCH 3/4] post-review update --- modules/ROOT/pages/procedures.adoc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/ROOT/pages/procedures.adoc b/modules/ROOT/pages/procedures.adoc index 27137c25b..ad7b44a95 100644 --- a/modules/ROOT/pages/procedures.adoc +++ b/modules/ROOT/pages/procedures.adoc @@ -827,10 +827,12 @@ For more information, see the link:{neo4j-docs-base-uri}/cypher-manual/current/p |=== [NOTE] -As of Neo4j 2025.06, `dbms.components()` will return the supported Cypher versions in a row where the `name` column has the value `"Cypher"`. -If this row is returned, it will have the value `["5", "25"]`, indicating that both Cypher 5 and Cypher 25 are supported. -If this row is not returned, Cypher 25 is not supported. +==== +As of Neo4j 2025.06, `dbms.components()` returns the supported Cypher versions in a row where the `name` column has the value `"Cypher"`. +If returned, the row has the value `["5", "25"]`, indicating that both Cypher 5 and Cypher 25 are supported. +Otherwise, Cypher 25 is not supported. For more information about Cypher versions, see the link:{neo4j-docs-base-uri}/cypher-manual/queries/select-version/[Cypher Manual -> Select Cypher version]. +==== [[procedure_dbms_info]] === dbms.info() From 605ebb85335a37c153a8da3171ac042966e635a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Fri, 13 Jun 2025 13:49:26 +0200 Subject: [PATCH 4/4] version nuance --- modules/ROOT/pages/procedures.adoc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/ROOT/pages/procedures.adoc b/modules/ROOT/pages/procedures.adoc index ad7b44a95..a120e8889 100644 --- a/modules/ROOT/pages/procedures.adoc +++ b/modules/ROOT/pages/procedures.adoc @@ -828,9 +828,8 @@ For more information, see the link:{neo4j-docs-base-uri}/cypher-manual/current/p [NOTE] ==== -As of Neo4j 2025.06, `dbms.components()` returns the supported Cypher versions in a row where the `name` column has the value `"Cypher"`. -If returned, the row has the value `["5", "25"]`, indicating that both Cypher 5 and Cypher 25 are supported. -Otherwise, Cypher 25 is not supported. +As of Neo4j 2025.05, `dbms.components()` returns the supported Cypher versions in a row where the `name` column has the value `"Cypher"`. +As of Neo4j 2025.06, the row has the value `["5", "25"]`, indicating that both Cypher 5 and Cypher 25 are supported from this release onward. For more information about Cypher versions, see the link:{neo4j-docs-base-uri}/cypher-manual/queries/select-version/[Cypher Manual -> Select Cypher version]. ====