Skip to content

Commit

Permalink
Remove mentions of Neo4j 6.0 (#1086)
Browse files Browse the repository at this point in the history
  • Loading branch information
JPryce-Aklundh committed Oct 30, 2024
1 parent 1db3ff2 commit bda88ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions modules/ROOT/pages/functions/scalar.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1205,12 +1205,12 @@ Future releases of Cypher may include updates to the current type system.
This can include the introduction of new types and subtypes of already supported types.
If a new type is introduced, it will be returned by the `valueType()` function as soon as it is released.
However, if a more precise subtype of a previously supported type is introduced, it would be considered a breaking change.
As a result, any new subtypes introduced after the release of Neo4j 5.13 will not be returned by the `valueType()` function until the following major release (Neo4j 6.0).
As a result, any new subtypes introduced after the release of Neo4j 5.13 will not be returned by the `valueType()` function until the next major release of Neo4j.

For example, the function currently returns `"FLOAT"`, but if a more specific `FLOAT` type was added, e.g. `FLOAT32`, this would be considered more specific and not be returned until Neo4j 6.0.
As a result,`"FLOAT"` would continue to be returned for any `FLOAT32` values until the release of Neo4j 6.0.
For example, the function currently returns `"FLOAT"`, but if a more specific `FLOAT` type was added, e.g. `FLOAT32`, this would be considered more specific and not be returned until the next major release of Neo4j.
As a result,`"FLOAT"` would continue to be returned for any `FLOAT32` values until the next major release.

With this in mind, the below list contains all supported types (as of Neo4j 5.13) displayed by the `valueType()` function until the release of Neo4j 6.0:
With this in mind, the below list contains all supported types (as of Neo4j 5.13) displayed by the `valueType()` function until the next major release of Neo4j:

* Predefined types
** `NOTHING`
Expand Down
3 changes: 2 additions & 1 deletion modules/ROOT/pages/syntax/naming.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ Some techniques to mitigate this are:

[NOTE]
====
Several special characters have been deprecated and will require escaping in Neo4j 6.0, see xref::deprecations-additions-removals-compatibility.adoc#cypher-deprecations-additions-removals-5.15[here] for the comprehensive list of deprecated characters.
Several special characters have been deprecated and will require escaping in the next major release of Neo4j.
For the comprehensive list of deprecated characters, see the xref::deprecations-additions-removals-compatibility.adoc#cypher-deprecations-additions-removals-5.15[deprecations page].
====

== Scoping and namespace rules
Expand Down

0 comments on commit bda88ea

Please sign in to comment.