Skip to content

Commit 11b09df

Browse files
remove inexplicable underscores
1 parent 40e019d commit 11b09df

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

modules/ROOT/pages/queries/select-version.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The Cypher version can be set for individual queries or as the default language
99
== Cypher 5, Cypher 25, and Neo4j explained
1010

1111
Starting in 2025, the Neo4j server transitioned to a calendar-based versioning system.
12-
This means Neo4j will no longer use its previous semantic versioning and release pattern (e.g., 5_25, 5.26).
12+
This means Neo4j will no longer use its previous semantic versioning and release pattern (e.g., 5.25, 5.26).
1313
Instead, releases from 2025 onwards will follow a *YYYY.MM* format, beginning with version 2025.01 released in January 2025, followed by 2025.02 released in February 2025, and so on.
1414

1515
Cypher 25 is introduced alongside Neo4j 2025.06.
@@ -115,7 +115,7 @@ For example, if a database is created with Cypher 5 as its default language, pre
115115
=== Procedures and functions
116116

117117
link:{neo4j-docs-base-uri}/operations-manual/current/procedures[Procedures] and xref:functions/index.adoc[functions] (including built-in and link:{neo4j-docs-base-uri}/apoc/current/[APOC]) are tied to a specific Cypher language version.
118-
Therefore, procedures and functions in Neo4j 2025.06+ and APOC 2025.06+ (both of which have Cypher 25 as their default language) may behave differently depending on what version of Cypher is used.
118+
Therefore, procedures and functions in Neo4j 2025.06+ and APOC 2025.06+ (both of which have Cypher 5 as their default language) may behave differently depending on what version of Cypher is used.
119119

120120
For example, APOC 2025.06 removed Cypher 25 support of the procedure `apoc.create.uuids()`, meaning it is not available to queries running Cypher 25.
121121
However, it can still be used on APOC 2025.06 if queries are prepended with `CYPHER 5`, or if the database’s default version is set to `CYPHER 5`.
@@ -232,20 +232,20 @@ The table below outlines which Cypher version is assigned to databases in differ
232232

233233
| *Standard DBMS upgrade to Neo4j 2025.06+*
234234
| Unset
235-
| *Existing system database:* `CYPHER_5` +
236-
*Existing user databases:* `CYPHER_5` +
237-
*New user databases default:* `CYPHER_5`
235+
| *Existing system database:* `CYPHER 5` +
236+
*Existing user databases:* `CYPHER 5` +
237+
*New user databases default:* `CYPHER 5`
238238

239239
| *Custom DBMS upgrade to Neo4j 2025.06+*
240-
| Manually set to `CYPHER_25` by administrator
241-
| *Existing system database:* `CYPHER_5` +
242-
*Existing user databases:* `CYPHER_5` +
243-
*New user databases default:* `CYPHER_25`
240+
| Manually set to `CYPHER 25` by administrator
241+
| *Existing system database:* `CYPHER 5` +
242+
*Existing user databases:* `CYPHER 5` +
243+
*New user databases default:* `CYPHER 25`
244244

245245
| *New installation of Neo4j 2025.06+*
246-
| Set to `CYPHER_5`
247-
| *New system database:* `CYPHER_5` +
248-
*New user databases default:* `CYPHER_5`
246+
| Set to `CYPHER 5`
247+
| *New system database:* `CYPHER 5` +
248+
*New user databases default:* `CYPHER 5`
249249

250250
|===
251251

0 commit comments

Comments
 (0)