From f40300f7fdba91547094a4c19a0d831728eb9d49 Mon Sep 17 00:00:00 2001 From: Hannes Sandberg Date: Mon, 21 Oct 2024 09:39:00 +0200 Subject: [PATCH 1/3] Adding the new funtctionality of property-based access control to list of new features --- ...ions-additions-removals-compatibility.adoc | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index a61b1f14b..c2c794b76 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -16,6 +16,36 @@ 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.26]] +== Neo4j 5.26 + +=== Deprecated features + +[cols="2", options="header"] +|=== +| Feature +| Details +|=== + +=== New features + +[cols="2", options="header"] +|=== +| Feature +| Details + +a| +label:functionality[] +label:new[] +[source, cypher, role="noheader"] +---- +GRANT READ {*} ON GRAPH * FOR (n) WHERE n.createdAt > date() TO regularUsers +---- +| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/property-based-access-control/[Property-based access control] does now support temporal and point values. +|=== + + + [[cypher-deprecations-additions-removals-5.25]] == Neo4j 5.25 From 00e6ed472ac3f8ccbdf803543dc869fbcdb3f291 Mon Sep 17 00:00:00 2001 From: Hannes Sandberg Date: Fri, 25 Oct 2024 12:50:18 +0200 Subject: [PATCH 2/3] review fixes --- ...recations-additions-removals-compatibility.adoc | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index c2c794b76..9dbe304af 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -19,15 +19,7 @@ Replacement syntax for deprecated and removed features are also indicated. [[cypher-deprecations-additions-removals-5.26]] == Neo4j 5.26 -=== Deprecated features - -[cols="2", options="header"] -|=== -| Feature -| Details -|=== - -=== New features +=== Updated features [cols="2", options="header"] |=== @@ -36,10 +28,10 @@ Replacement syntax for deprecated and removed features are also indicated. a| label:functionality[] -label:new[] +label:updated[] [source, cypher, role="noheader"] ---- -GRANT READ {*} ON GRAPH * FOR (n) WHERE n.createdAt > date() TO regularUsers +GRANT READ {*} ON GRAPH * FOR (n) WHERE n.createdAt > date('2024-10-25') TO regularUsers ---- | link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/property-based-access-control/[Property-based access control] does now support temporal and point values. |=== From 9fdd7fb9f58dee729430ed6f3dbaa9e5a8d19d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Thu, 31 Oct 2024 13:32:00 +0100 Subject: [PATCH 3/3] fix --- .../pages/deprecations-additions-removals-compatibility.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index 35651a14e..c58331a99 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -19,6 +19,8 @@ Replacement syntax for deprecated and removed features are also indicated. [[cypher-deprecations-additions-removals-5.26]] == Neo4j 5.26 +=== Deprecated features + [cols="2", options="header"] |=== | Feature @@ -27,7 +29,6 @@ Replacement syntax for deprecated and removed features are also indicated. a| label:functionality[] label:deprecated[] -label:deprecated[] [source, cypher, role="noheader"] ---- CALL db.schema.nodeTypeProperties() YIELD propertyTypes RETURN propertyTypes;