From 987e972831d9f2e727713887a420a3ec852f7508 Mon Sep 17 00:00:00 2001 From: Mark Dixon <1756429+mnd999@users.noreply.github.com> Date: Thu, 19 Sep 2024 14:51:06 +0100 Subject: [PATCH 1/2] Deprecate `existingDataSeedInstance` option to CREATE DATABASE Replace with new option `existingDataSeedServer` --- ...ions-additions-removals-compatibility.adoc | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index 3c1e57942..a745cb329 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -16,6 +16,44 @@ 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.25]] +== Neo4j 5.25 + +=== New features + +[cols="2", options="header"] +|=== +| Feature +| Details + +a| +label:functionality[] +label:new[] +[source, cypher, role="noheader"] +---- +CREATE DATABASE db OPTIONS { existingDataSeedServer: ... } +---- +| The option `existingDataSeedServer` has beed added to `CREATE DATABASE`. The functionality is the same as the deprecated option `existingDataSeedServer` which this replaces. +|=== + +=== Deprecated features + +[cols="2", options="header"] +|=== +| Feature +| Details + +a| +label:functionality[] +label:deprecated[] +[source, cypher, role="noheader"] +---- +CREATE DATABASE db OPTIONS { existingDataSeedInstance: ... } +---- +| The `CREATE DATABASE` option `existingDataSeedInstance` has been deprecated and replaced with the option `existingDataSeedServer`. The functionality is unchanged. +|=== + + [[cypher-deprecations-additions-removals-5.24]] == Neo4j 5.24 From 51b482c696d2e00a1932162d27ed4b9bf9547ab1 Mon Sep 17 00:00:00 2001 From: Mark Dixon <1756429+mnd999@users.noreply.github.com> Date: Mon, 14 Oct 2024 16:26:35 +0100 Subject: [PATCH 2/2] Update modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jens Pryce-Ã…klundh <112686610+JPryce-Aklundh@users.noreply.github.com> --- ...ations-additions-removals-compatibility.adoc | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index a745cb329..bb9a3133e 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -19,7 +19,7 @@ Replacement syntax for deprecated and removed features are also indicated. [[cypher-deprecations-additions-removals-5.25]] == Neo4j 5.25 -=== New features +=== Deprecated features [cols="2", options="header"] |=== @@ -28,15 +28,15 @@ Replacement syntax for deprecated and removed features are also indicated. a| label:functionality[] -label:new[] +label:deprecated[] [source, cypher, role="noheader"] ---- -CREATE DATABASE db OPTIONS { existingDataSeedServer: ... } +CREATE DATABASE db OPTIONS { existingDataSeedInstance: ... } ---- -| The option `existingDataSeedServer` has beed added to `CREATE DATABASE`. The functionality is the same as the deprecated option `existingDataSeedServer` which this replaces. +| The `CREATE DATABASE` option `existingDataSeedInstance` has been deprecated and replaced with the option link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/standard-databases/create-database/#manage-databases-create-database-options[`existingDataSeedServer`]. The functionality is unchanged. |=== -=== Deprecated features +=== New features [cols="2", options="header"] |=== @@ -45,15 +45,16 @@ CREATE DATABASE db OPTIONS { existingDataSeedServer: ... } a| label:functionality[] -label:deprecated[] +label:new[] [source, cypher, role="noheader"] ---- -CREATE DATABASE db OPTIONS { existingDataSeedInstance: ... } +CREATE DATABASE db OPTIONS { existingDataSeedServer: ... } ---- -| The `CREATE DATABASE` option `existingDataSeedInstance` has been deprecated and replaced with the option `existingDataSeedServer`. The functionality is unchanged. +| The option link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/standard-databases/create-database/#manage-databases-create-database-options[`existingDataSeedServer`] has been added to `CREATE DATABASE`. The functionality is the same as the deprecated option `existingDataSeedServer`, which this replaces. |=== + [[cypher-deprecations-additions-removals-5.24]] == Neo4j 5.24