Skip to content

Commit 987e972

Browse files
committed
Deprecate existingDataSeedInstance option to CREATE DATABASE
Replace with new option `existingDataSeedServer`
1 parent c151042 commit 987e972

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

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

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,44 @@ 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+
=== New features
23+
24+
[cols="2", options="header"]
25+
|===
26+
| Feature
27+
| Details
28+
29+
a|
30+
label:functionality[]
31+
label:new[]
32+
[source, cypher, role="noheader"]
33+
----
34+
CREATE DATABASE db OPTIONS { existingDataSeedServer: ... }
35+
----
36+
| The option `existingDataSeedServer` has beed added to `CREATE DATABASE`. The functionality is the same as the deprecated option `existingDataSeedServer` which this replaces.
37+
|===
38+
39+
=== Deprecated features
40+
41+
[cols="2", options="header"]
42+
|===
43+
| Feature
44+
| Details
45+
46+
a|
47+
label:functionality[]
48+
label:deprecated[]
49+
[source, cypher, role="noheader"]
50+
----
51+
CREATE DATABASE db OPTIONS { existingDataSeedInstance: ... }
52+
----
53+
| The `CREATE DATABASE` option `existingDataSeedInstance` has been deprecated and replaced with the option `existingDataSeedServer`. The functionality is unchanged.
54+
|===
55+
56+
1957
[[cypher-deprecations-additions-removals-5.24]]
2058
== Neo4j 5.24
2159

0 commit comments

Comments
 (0)