Skip to content

Commit 8b6b61a

Browse files
committed
Further deprecations to options in CREATE DATABASE
* Deprecate seedCredentials and seedConfig options without a (language) replacement. * Deprecate standard and high_limit store formats.
1 parent ea86dc9 commit 8b6b61a

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,39 @@ 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.26]]
20+
== Neo4j 5.26
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 { seedCredentials: ..., seedConfig: ... }
35+
----
36+
| The `CREATE DATABASE` options `seedCredentials` and `seedConfig` have been deprecated. S3 credentials and configuration are now read by the S3 client
37+
from one of the normal locations, for example the executing users credentials in `$HOME/.aws/credentials`. For further infomation see ....
38+
39+
a|
40+
label:functionality[]
41+
label:deprecated[]
42+
[source, cypher, role="noheader"]
43+
----
44+
CREATE DATABASE db OPTIONS { storeFormat: 'standard' }
45+
46+
CREATE DATABASE db OPTIONS { storeFormat: 'high_limit' }
47+
----
48+
| The standard and high_limit store formats have been deprecated. Creating databases with these formats is therefore also deprecated.
49+
For more information on the deprecation of these formats, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-internals/store-formats/#format-deprecations[Format deprecations]
50+
|===
51+
1952
[[cypher-deprecations-additions-removals-5.25]]
2053
== Neo4j 5.25
2154

0 commit comments

Comments
 (0)