From 4035a0fe90b0d6e5991092c58b85736cf9153f90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Fri, 13 Jun 2025 15:04:12 +0200 Subject: [PATCH 1/3] add removed procedures to removed in Cypher 25 list --- .../pages/clauses/listing-procedures.adoc | 22 +++++-------------- ...ions-additions-removals-compatibility.adoc | 17 ++++++++++++++ .../semantic-indexes/vector-indexes.adoc | 11 +--------- .../runtimes/reference.adoc | 4 ---- 4 files changed, 24 insertions(+), 30 deletions(-) diff --git a/modules/ROOT/pages/clauses/listing-procedures.adoc b/modules/ROOT/pages/clauses/listing-procedures.adoc index c33d7c6bd..35c3dcda5 100644 --- a/modules/ROOT/pages/clauses/listing-procedures.adoc +++ b/modules/ROOT/pages/clauses/listing-procedures.adoc @@ -265,26 +265,16 @@ WHERE admin |=== | name | admin +| "cdc.query" | true +| "db.cdc.query" | true +| "db.cdc.translateId" | true | "db.clearQueryCaches" | true | "db.listLocks" | true -| "db.prepareForReplanning" | true -| "db.stats.clear" | true -| "db.stats.collect" | true -| "db.stats.retrieve" | true -| "db.stats.retrieveAllAnonymized" | true -| "db.stats.status" | true -| "db.stats.stop" | true -| "dbms.checkConfigValue" | true -| "dbms.cluster.checkConnectivity" | true -| "dbms.cluster.cordonServer" | true -| "dbms.cluster.readReplicaToggle" | true -| "dbms.cluster.uncordonServer" | true -| "dbms.listConfig" | true - -2+d|Rows: 15 + +2+d|Rows: 5 |=== -The above table only displays the first 15 results of the query. +The above table only displays the first 5 results of the query. For a full list of all procedures which require `admin` privileges in Neo4j, visit the link:{neo4j-docs-base-uri}/operations-manual/current/procedures[Operations Manual -> Procedures]. == Listing procedures with other filtering diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index 271c42b5e..8d9cceedb 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -119,6 +119,23 @@ CREATE ... CONSTRAINTS ... OPTIONS { indexProvider: ... } ---- | Specifying an index provider in the `OPTIONS` map when creating an index or constraint is no longer supported. +a| +label:functionality[] +label:removed[] +[source, cypher, role="noheader"] +---- +dbms.cluster.readReplicaToggle() +dbms.quarantineDatabase() +dbms.cluster.uncordonServer() +dbms.upgrade() +dbms.upgradeStatus() +db.create.setVectorProperty() +db.index.vector.createNodeIndex +---- + +a| These procedures have been removed from Cypher 25. +For more information, see the link:{neo4j-docs-base-uri}/operations-manual/current/procedures/[Operations Manual -> Procedures]. + |=== diff --git a/modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc b/modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc index 6ad32cc35..111bf433f 100644 --- a/modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc +++ b/modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc @@ -470,11 +470,6 @@ image::euclidean-similarity-equation.svg["The Euclidean of vector v and vector u |=== | Usage | Procedure | Description -| Create node vector index. -| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_index_vector_createnodeindex[`db.index.vector.createNodeIndex`] -| Create a vector index for the specified label and property with the given vector dimension using the given similarity function. -Replaced by the `CREATE VECTOR INDEX` command. - | Use node vector index. | link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_index_vector_querynodes[`db.index.vector.queryNodes`] | Query the given node vector index. @@ -487,11 +482,7 @@ Returns the requested number of approximate nearest neighbor relationships and t | Set node vector property. | link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setnodevectorproperty[`db.create.setNodeVectorProperty`] -| Update a given node property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`]. Replaces link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setvectorproperty[`db.create.setVectorProperty`]. label:beta[] - -| Set node vector property. -| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setvectorproperty[`db.create.setVectorProperty`] -| Replaced by link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setnodevectorproperty[`db.create.setNodeVectorProperty`]. label:deprecated[] label:beta[] +| Update a given node property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`]. label:beta[] | Set relationship vector property. | link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setrelationshipvectorproperty[`db.create.setRelationshipVectorProperty`] diff --git a/modules/ROOT/pages/planning-and-tuning/runtimes/reference.adoc b/modules/ROOT/pages/planning-and-tuning/runtimes/reference.adoc index f844dd884..f87838ce1 100644 --- a/modules/ROOT/pages/planning-and-tuning/runtimes/reference.adoc +++ b/modules/ROOT/pages/planning-and-tuning/runtimes/reference.adoc @@ -171,10 +171,6 @@ Instead the query will automatically run on the pipelined runtime. | link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_scheduler_jobs[dbms.scheduler.jobs] -| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_upgrade[dbms.upgrade] - -| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_upgradestatus[dbms.upgradeStatus] - |=== [[apoc]] From 5d755f216121d45477be1de85bdb41979c3e21e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Fri, 13 Jun 2025 15:06:09 +0200 Subject: [PATCH 2/3] remove beta labels --- .../ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc b/modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc index 111bf433f..7a3a8d364 100644 --- a/modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc +++ b/modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc @@ -482,11 +482,11 @@ Returns the requested number of approximate nearest neighbor relationships and t | Set node vector property. | link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setnodevectorproperty[`db.create.setNodeVectorProperty`] -| Update a given node property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`]. label:beta[] +| Update a given node property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`]. | Set relationship vector property. | link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setrelationshipvectorproperty[`db.create.setRelationshipVectorProperty`] -| Update a given relationship property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`]. label:beta[] +| Update a given relationship property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`]. |=== From 124bd66a6f17f5e22df110a125abe32b911b9b75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Mon, 16 Jun 2025 08:58:59 +0200 Subject: [PATCH 3/3] alphabet --- .../deprecations-additions-removals-compatibility.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index 8d9cceedb..770099348 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -124,13 +124,13 @@ label:functionality[] label:removed[] [source, cypher, role="noheader"] ---- +db.create.setVectorProperty() +db.index.vector.createNodeIndex() dbms.cluster.readReplicaToggle() -dbms.quarantineDatabase() dbms.cluster.uncordonServer() +dbms.quarantineDatabase() dbms.upgrade() dbms.upgradeStatus() -db.create.setVectorProperty() -db.index.vector.createNodeIndex ---- a| These procedures have been removed from Cypher 25.