Skip to content

Commit

Permalink
document new unicode deprecation notification for the future 5.15 rel…
Browse files Browse the repository at this point in the history
…ease
  • Loading branch information
nadja-muller committed Nov 16, 2023
1 parent d1bc032 commit 41c19da
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,29 @@ New features are added to the language continuously, and occasionally, some feat
This section lists all of the features that have been removed, deprecated, added, or extended in different Cypher versions.
Replacement syntax for deprecated and removed features are also indicated.


[[cypher-deprecations-additions-removals-5.15]]
== Neo4j 5.15

=== Deprecated features
[cols="2", options="header"]
|===
| Feature
| Details

a|
label:functionality[]
label:deprecated[]
[source, cypher, role="noheader"]
----
RETURN 1 as my\u0085identifier
----
a|
The Unicode character \`\u0085` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. To continue using it, escape the identifier by adding backticks around the identifier.
This applies to all unescaped identifiers in Cypher, such as label expressions, properties, variable names or parameters. In the given example, the quoted identifier would be \`my…identifier`.

|===

[[cypher-deprecations-additions-removals-5.14]]
== Version 5.14

Expand Down

0 comments on commit 41c19da

Please sign in to comment.