Skip to content

Commit b74c7f3

Browse files
Merge branch 'dev' into rewrite-disaster-recovery-based-on-recreate-2
2 parents 0f0bb9b + 5a69402 commit b74c7f3

File tree

73 files changed

+3834
-3169
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+3834
-3169
lines changed

antora.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ nav:
77
asciidoc:
88
attributes:
99
neo4j-version: '5'
10-
neo4j-version-minor: '5.25'
11-
neo4j-version-exact: '5.25.0'
12-
neo4j-buildnumber: '5.25'
10+
neo4j-version-minor: '5.26'
11+
neo4j-version-exact: '5.26.0'
12+
neo4j-buildnumber: '5.26'
1313
neo4j-debian-package-version: '1:5.22.0@'

modules/ROOT/content-nav.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
*** xref:database-administration/composite-databases/querying-composite-databases.adoc[]
126126
*** xref:database-administration/composite-databases/sharding-with-copy.adoc[]
127127
** xref:database-administration/syntax.adoc[]
128+
** xref:database-administration/routing-decisions.adoc[]
128129
129130
* xref:database-internals/index.adoc[]
130131
** xref:database-internals/transaction-management.adoc[]
@@ -164,6 +165,7 @@
164165
** xref:backup-restore/modes.adoc[]
165166
** xref:backup-restore/online-backup.adoc[]
166167
** xref:backup-restore/aggregate.adoc[]
168+
** xref:backup-restore/inspect.adoc[]
167169
** xref:backup-restore/restore-backup.adoc[]
168170
** xref:backup-restore/offline-backup.adoc[]
169171
** xref:backup-restore/restore-dump.adoc[]
@@ -235,6 +237,8 @@
235237
*** xref:tools/neo4j-admin/validate-config.adoc[]
236238
** xref:tools/cypher-shell.adoc[]
237239
240+
* xref:procedures.adoc[]
241+
238242
* xref:tutorial/index.adoc[]
239243
//** xref:tutorial/local-causal-cluster.adoc[]
240244
//** xref:tutorial/causal-backup-restore-db.adoc[]
@@ -245,10 +249,6 @@
245249
** xref:tutorial/tutorial-immutable-privileges.adoc[]
246250
** xref:tutorial/tutorial-clustering-docker.adoc[]
247251
248-
* Appendix
249-
** xref:reference/procedures.adoc[]
250-
** xref:routing-decisions.adoc[]
251-
252252
// ** xref:clustering-advanced/index.adoc[]
253253
// *** xref:clustering-advanced/lifecycle.adoc[]
254254
// *** xref:clustering-advanced/multi-data-center/index.adoc[]

modules/ROOT/pages/authentication-authorization/built-in-roles.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[role=enterprise-edition aura-db-enterprise]
21
[[auth-built-in-roles]]
32
= Built-in roles and privileges
43
:description: The default privileges of the built-in roles in Neo4j and how to recreate them if needed.
4+
:page-role: enterprise-edition aura-db-business-critical aura-db-dedicated
55

66
//Check Mark
77
:check-mark: icon:check[]

modules/ROOT/pages/authentication-authorization/database-administration.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
:description: How to use Cypher to manage Neo4j database administrative privileges.
2+
:page-role: enterprise-edition aura-db-business-critical aura-db-dedicated
23

34
////
45
[source, cypher, role=test-setup]
@@ -10,7 +11,7 @@ CREATE USER jake SET PASSWORD 'abcd1234' CHANGE NOT REQUIRED;
1011
----
1112
////
1213

13-
[role=enterprise-edition aura-db-enterprise]
14+
1415
[[access-control-database-administration]]
1516
= Database privileges
1617

modules/ROOT/pages/authentication-authorization/dbms-administration.adoc

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:description: How to use Cypher to manage Neo4j DBMS administrative privileges.
2-
2+
:page-role: enterprise-edition aura-db-business-critical aura-db-dedicated
33
////
44
[source, cypher, role=test-setup]
55
----
@@ -60,7 +60,6 @@ CREATE ROLE deniedConfigurationViewer IF NOT EXISTS;
6060
----
6161
////
6262

63-
[role=enterprise-edition aura-db-enterprise]
6463
[[access-control-dbms-administration]]
6564
= DBMS privileges
6665

@@ -1290,13 +1289,13 @@ For more details about the syntax descriptions, see xref:database-administration
12901289
| Command | Description
12911290

12921291
| [source, syntax, role=noheader]
1293-
GRANT SERVER MANAGEMENT
1292+
GRANT [IMMUTABLE] SERVER MANAGEMENT
12941293
ON DBMS
12951294
TO role[, ...]
12961295
| Enables the specified roles to show, enable, rename, alter, reallocate, deallocate, and drop servers.
12971296

12981297
| [source, syntax, role=noheader]
1299-
GRANT SHOW SERVERS
1298+
GRANT [IMMUTABLE] SHOW SERVERS
13001299
ON DBMS
13011300
TO role[, ...]
13021301
| Enables the specified roles to show servers.
@@ -2070,9 +2069,9 @@ In this case, `+*+` means 0 or more characters, and `?` matches exactly one char
20702069
====
20712070
The name-globbing is subject to the link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/syntax/naming/[Cypher Manual -> Naming rules and recommendations], with the exception that it may include dots, stars, and question marks without the need for escaping using backticks.
20722071
2073-
Each part of the name-globbing separated by dots may be individually escaped.
2072+
Each part of the name-globbing separated by dots may be individually quoted.
20742073
For example, `++mine.`procedureWith%`++` is allowed, but not `++mine.procedure`With%`++`.
2075-
Also, note that wildcard characters behave as wildcards even when escaped.
2074+
Also, note that wildcard characters behave as wildcards even when quoted.
20762075
For example, using `++`*`++` is equivalent to using `+*+`, and thus allows executing all functions or procedures and not only the procedure or function named `+*+`.
20772076
====
20782077

@@ -2135,7 +2134,7 @@ Users with the role `globbing6` can run procedures `mine.public.with#Special§Ch
21352134

21362135
[NOTE]
21372136
====
2138-
The name-globbing may be fully or partially escaped.
2137+
The name-globbing may be fully or partially quoted.
21392138
Both `+*+` and `+?+` are interpreted as wildcards in both cases.
21402139
====
21412140

modules/ROOT/pages/authentication-authorization/ldap-integration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ this LDAP group will fail authentication, even if their credentials are correct.
6565
|===
6666

6767
All settings are defined at server startup time in the default configuration file _xref:configuration/neo4j-conf.adoc[neo4j.conf]_ or can be modified at
68-
runtime using xref:reference/procedures.adoc#procedure_dbms_setconfigvalue[`dbms.setConfigValue()`].
68+
runtime using xref:procedures.adoc#procedure_dbms_setconfigvalue[`dbms.setConfigValue()`].
6969

7070

7171
[[auth-ldap-configure-provider]]

modules/ROOT/pages/authentication-authorization/limitations.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
:description: Known limitations and implications of Neo4js role-based access control security.
2+
:page-role: enterprise-edition aura-db-business-critical aura-db-dedicated
23

34
////
45
[source, cypher, role=test-setup]
@@ -10,7 +11,6 @@ CREATE ROLE unrestricted;
1011
----
1112
////
1213

13-
[role=enterprise-edition aura-db-enterprise]
1414
[[access-control-limitations]]
1515
= Limitations
1616

modules/ROOT/pages/authentication-authorization/load-privileges.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:description: How to use Cypher to manage load privileges.
2-
2+
:page-role: enterprise-edition aura-db-business-critical aura-db-dedicated
33
////
44
[source, cypher, role=test-setup]
55
----
@@ -8,7 +8,6 @@ CREATE ROLE roleLoadCidr
88
----
99
////
1010

11-
[role=enterprise-edition aura-db-enterprise]
1211
[[access-control-load-privileges]]
1312
= Load privileges
1413

modules/ROOT/pages/authentication-authorization/manage-privileges.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:description: This section explains how to use Cypher to manage privileges for Neo4j role-based access control and fine-grained security.
2-
[role=enterprise-edition aura-db-enterprise]
2+
:page-role: enterprise-edition aura-db-business-critical aura-db-dedicated
33
[[access-control-manage-privileges]]
44

55
= Role-based access control

modules/ROOT/pages/authentication-authorization/manage-roles.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:description: This section explains how to use Cypher to manage roles in Neo4j.
2+
:page-role: enterprise-edition aura-db-business-critical aura-db-dedicated
23

3-
[role=enterprise-edition aura-db-enterprise]
44
[[access-control-manage-roles]]
55
= Manage roles
66

0 commit comments

Comments
 (0)