Skip to content

Commit 017ef7b

Browse files
Deprecate existingDataSeedInstance option to CREATE DATABASE (#1047)
Replace with new option `existingDataSeedServer` Documenting neo-technology/neo4j#27123 --------- Co-authored-by: Jens Pryce-Åklundh <[email protected]>
1 parent fa9e191 commit 017ef7b

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,45 @@ New features are added to the language continuously, and occasionally, some feat
1616
This section lists all of the features that have been removed, deprecated, added, or extended in different Cypher versions.
1717
Replacement syntax for deprecated and removed features are also indicated.
1818

19+
[[cypher-deprecations-additions-removals-5.25]]
20+
== Neo4j 5.25
21+
22+
=== Deprecated features
23+
24+
[cols="2", options="header"]
25+
|===
26+
| Feature
27+
| Details
28+
29+
a|
30+
label:functionality[]
31+
label:deprecated[]
32+
[source, cypher, role="noheader"]
33+
----
34+
CREATE DATABASE db OPTIONS { existingDataSeedInstance: ... }
35+
----
36+
| 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.
37+
|===
38+
39+
=== New features
40+
41+
[cols="2", options="header"]
42+
|===
43+
| Feature
44+
| Details
45+
46+
a|
47+
label:functionality[]
48+
label:new[]
49+
[source, cypher, role="noheader"]
50+
----
51+
CREATE DATABASE db OPTIONS { existingDataSeedServer: ... }
52+
----
53+
| 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.
54+
|===
55+
56+
57+
1958
[[cypher-deprecations-additions-removals-5.24]]
2059
== Neo4j 5.24
2160

0 commit comments

Comments
 (0)