Skip to content

Commit 06002b7

Browse files
authored
Merge branch 'dev' into imgrefresh-batch3
2 parents 3a9a927 + 8012b25 commit 06002b7

File tree

9 files changed

+18
-17
lines changed

9 files changed

+18
-17
lines changed

antora.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: operations-manual
22
title: Operations Manual
3-
version: '2025.08'
3+
version: '2025.09'
44
current: true
55
start_page: ROOT:index.adoc
66
nav:
77
- modules/ROOT/content-nav.adoc
88
asciidoc:
99
attributes:
10-
neo4j-version: '2025.08'
11-
neo4j-version-minor: '2025.08'
12-
neo4j-version-exact: '2025.08.0'
13-
neo4j-buildnumber: '2025.08'
14-
neo4j-debian-package-version: '1:2025.08.0@'
10+
neo4j-version: '2025.09'
11+
neo4j-version-minor: '2025.09'
12+
neo4j-version-exact: '2025.09.0'
13+
neo4j-buildnumber: '2025.09'
14+
neo4j-debian-package-version: '1:2025.09.0@'

modules/ROOT/pages/configuration/neo4j-conf.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The _neo4j.conf_ file is the main source of configuration settings in Neo4j and
66
The location of the _neo4j.conf_ file in the different configurations of Neo4j is listed in xref:configuration/file-locations.adoc[Default file locations].
77

88
Most of the configuration settings in the _neo4j.conf_ file apply directly to Neo4j itself, but there are also other settings related to the Java Runtime (the JVM) on which Neo4j runs.
9-
For more information, see the <<neo4j-conf-JVM, JVM specific configuration settings>>.
9+
For more information, see the <<#neo4j-conf-JVM, JVM specific configuration settings>>.
1010
Many of the configuration settings are also used by `neo4j` launcher scripts.
1111

1212

modules/ROOT/pages/cypher-shell.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,8 +484,7 @@ Both explicit and implicit transactions run from Cypher Shell will have default
484484

485485
.Use fine-grained transaction control
486486
====
487-
The example uses the dataset from the built-in Neo4j Browser guide, called MovieGraph.
488-
For more information, see the link:https://neo4j.com/docs/browser-manual/current/visual-tour/#guides[Neo4j Browser documentation].
487+
The example uses a dataset called the Movie Graph, available in the built-in Neo4j Browser guide.
489488
490489
. Run a query that shows there is only one person in the database, who is born in 1964.
491490
+

modules/ROOT/pages/introduction.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ a| link:https://neo4j.com/docs/cdc/current/[Change Data Capture (CDC)]
130130
| {check-mark}
131131
| {check-mark}
132132

133-
| link:https://neo4j.com/docs/browser-manual/current/visual-tour/#editor[Neo4j Browser with syntax highlighting]
133+
| link:https://neo4j.com/docs/browser/visual-tour/#_cypher_editor[Neo4j Browser with syntax highlighting]
134134
| {check-mark}
135135
| {check-mark}
136136

modules/ROOT/pages/kubernetes/quickstart-cluster/create-value-file.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ neo4j:
117117
cpu: "0.5"
118118
memory: "2Gi"
119119
password: "my-password"
120+
edition: "enterprise"
120121
acceptLicenseAgreement: "yes"
121122
122123
volumes:
@@ -140,6 +141,7 @@ neo4j:
140141
cpu: "0.5"
141142
memory: "2Gi"
142143
password: "my-password"
144+
edition: "enterprise"
143145
acceptLicenseAgreement: "yes"
144146
145147
volumes:

modules/ROOT/pages/monitoring/logging.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ Every graph app should follow a convention for passing metadata with the queries
10791079
This is typically done programmatically but can also be used with the Neo4j dev tools. +
10801080
In general, you start a transaction on a user database and attach a list of metadata to it by calling `tx.setMetaData`.
10811081
You can also use the procedure xref:procedures.adoc#procedure_tx_getMetaData[`CALL tx.getMetaData()`] to show the metadata of the current transaction.
1082-
These examples use the MovieGraph dataset from the link:https://neo4j.com/docs/browser-manual/current/visual-tour/#guides[Neo4j Browser guide].
1082+
These examples use the Movie Graph dataset from the pre-installed Neo4j Browser guide.
10831083

10841084
.Using `cypher-shell`, attach metadata to a transaction
10851085
====

modules/ROOT/pages/procedures.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,12 +1140,12 @@ Starting with Neo4j 2025.04, the default database can also be set to a local or
11401140
| `quarantined` | `BOOLEAN` | Whether or not the database is quarantined.
11411141
| `result` | `STRING` | Details about the outcome of the procedure.
11421142
| *Mode* 3+| DBMS
1143-
| *Replaced by* 3+| <<procedure_dbms_unquarantineDatabase, `dbms.unquarantineDatabase()`>>
1143+
| *Replaced by* 3+| <<#procedure_dbms_unquarantineDatabase, `dbms.unquarantineDatabase()`>>
11441144
|===
11451145

11461146
[NOTE]
11471147
====
1148-
It is recommended to use <<procedure_dbms_unquarantineDatabase,`dbms.unquarantineDatabase()`>> over `dbms.quarantineDatabase()` due to its improvements and new features (see the `operation` option).
1148+
It is recommended to use <<#procedure_dbms_unquarantineDatabase,`dbms.unquarantineDatabase()`>> over `dbms.quarantineDatabase()` due to its improvements and new features (see the `operation` option).
11491149
// The deprecated `dbms.quarantineDatabase()` procedure is available in Cypher 5, but not in Cypher 25.
11501150
====
11511151

@@ -1296,7 +1296,7 @@ The types are still enforced as `LIST<INTEGER | FLOAT>`.
12961296
.2+| *Return arguments* | *Name* | *Type* | *Description*
12971297
| `node` | `NODE` | The node on which the vector property was set.
12981298
| *Mode* 3+| WRITE
1299-
| *Replaced by* 3+| <<procedure_db_create_setNodeVectorProperty, `db.create.setNodeVectorProperty()`>> and <<procedure_db_create_setRelationshipVectorProperty, `db.create.setRelationshipVectorProperty()`>>
1299+
| *Replaced by* 3+| <<#procedure_db_create_setNodeVectorProperty, `db.create.setNodeVectorProperty()`>> and <<#procedure_db_create_setRelationshipVectorProperty, `db.create.setRelationshipVectorProperty()`>>
13001300
|===
13011301

13021302
.Known issue

modules/ROOT/pages/security/browser.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ If the user issues a `:server disconnect` command then any existing session is t
2121

2222
[NOTE]
2323
====
24-
For more information on how to administer and use Neo4j Browser, see the link:https://neo4j.com/docs/browser-manual/current/operations/[Neo4j Browser manual -> Browser operations].
24+
For more information on how to administer and use Neo4j Browser, see the link:https://neo4j.com/docs/browser/operations/credentials-handling/[Neo4j Browser manual -> Browser operations].
2525
====

modules/ROOT/pages/tutorial/tutorial-composite-database.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The data includes customers, products, customer orders, warehouse stock, shippin
2828

2929
[NOTE]
3030
====
31-
For more information on how Northwind (a relational dataset) is modeled into a graph, run `:guide northwind-graph` in Neo4j Browser to play the built-in guide Northwind Graph.
32-
See the link:https://neo4j.com/docs/browser-manual/current/visual-tour/#guides[Neo4j Browser documentation].
31+
For more information on how Northwind (a relational dataset) is modeled into a graph, run `:play northwind` in Neo4j Browser to play the built-in guide Northwind Graph.
32+
3333
====
3434

3535
The Northwind graph model consists of the following data:

0 commit comments

Comments
 (0)