diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index a143ed7f3..31c909d72 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -16,6 +16,30 @@ 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.17]] +== Neo4j 5.17 + +=== New features + +[cols="2", options="header"] +|=== +| Feature +| Details + +a| +label:functionality[] +label:new[] + +[source, cypher, role=noheader] +---- +RETURN normalize("string", NFC) +---- + +| Introduction of a xref::functions/string.adoc#functions-normalize[normalize()] function. +Normalize a `STRING` according to the specified normalization form, which can be of type `NFC`, `NFD`, `NFKC` or `NFKD`. + +|=== + [[cypher-deprecations-additions-removals-5.16]] == Neo4j 5.16 @@ -70,25 +94,6 @@ For more information, see the link:{neo4j-docs-base-uri}/operations-manual/{page |=== -[cols="2", options="header"] -|=== -| Feature -| Details - -a| -label:functionality[] -label:new[] - -[source, cypher, role=noheader] ----- -RETURN normalize("string", NFC) ----- - -| Introduction of a xref::functions/string.adoc#functions-normalize[normalize()] function. -Normalize a `STRING` according to the specified normalization form, which can be of type `NFC`, `NFD`, `NFKC` or `NFKD`. - -|=== - [[cypher-deprecations-additions-removals-5.15]] == Neo4j 5.15 diff --git a/modules/ROOT/pages/functions/index.adoc b/modules/ROOT/pages/functions/index.adoc index 3e6623186..cdfad66e7 100644 --- a/modules/ROOT/pages/functions/index.adoc +++ b/modules/ROOT/pages/functions/index.adoc @@ -498,7 +498,7 @@ These functions are used to manipulate strings or to create a string representat 1.2+| xref::functions/string.adoc#functions-normalize[`normalize()`] | `normalize(input :: STRING) :: STRING` -| Returns the given `STRING` normalized using the normal form 'NFC'. +| Returns the given `STRING` normalized using the normal form `NFC`. | `normalize(input :: STRING, normalForm = NFC :: [NFC, NFD, NFKC, NFKD]) :: STRING` | Returns the given `STRING` normalized according to the specified normalization form.