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..770099348 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"] +---- +db.create.setVectorProperty() +db.index.vector.createNodeIndex() +dbms.cluster.readReplicaToggle() +dbms.cluster.uncordonServer() +dbms.quarantineDatabase() +dbms.upgrade() +dbms.upgradeStatus() +---- + +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..7a3a8d364 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,15 +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`]. 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`]. | 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`]. |=== 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]]