Skip to content

Commit 993200a

Browse files
Merge branch 'neo4j-master'
2 parents 5920abc + 1e88c3b commit 993200a

File tree

112 files changed

+6467
-4366
lines changed

Some content is hidden

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

112 files changed

+6467
-4366
lines changed

LICENSES.txt

Lines changed: 2469 additions & 1751 deletions
Large diffs are not rendered by default.

NOTICE.txt

Lines changed: 494 additions & 139 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Keep in mind that you will need to connect to an instance of Neo4j (the database
2222

2323
Found a bug or some other problem with Neo4j Browser? Please [**open an issue**](https://github.com/neo4j/neo4j-browser/issues).
2424

25-
Have an idea for a new feature? You're welcome to leave suggestions and ideas [here](https://neo4j-browser.canny.io/feature-requests).
25+
Have an idea for a new feature? You're welcome to leave suggestions and ideas [here](https://feedback.neo4j.com/browser).
2626

2727
Contributions welcome! More information in our [CONTRIBUTING.md](CONTRIBUTING.md).
2828

build_scripts/webpack.config.js

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -69,26 +69,20 @@ module.exports = {
6969
splitChunks: {
7070
cacheGroups: {
7171
vendor: {
72-
test: /[\\/]node_modules[\\/](react|react-dom|@firebase|d3)[\\/]/,
72+
test: /[\\/]node_modules[\\/](@firebase|react-markdown|@apollo)[\\/]/,
7373
name: 'vendor',
7474
chunks: 'all',
7575
enforce: true
7676
},
7777
'cypher-editor': {
78-
test: /[\\/]node_modules[\\/](antlr4|cypher-editor-support|monaco-editor)[\\/]/,
78+
test: /[\\/]node_modules[\\/](antlr4|cypher-editor-support|monaco-editor-core|@neo4j-cypher)[\\/]/,
7979
name: 'cypher-editor',
8080
chunks: 'all',
8181
enforce: true
8282
},
83-
'semantic-ui': {
84-
test: /[\\/]node_modules[\\/](semantic-ui-react)[\\/]/,
85-
name: 'semantic-ui',
86-
chunks: 'all',
87-
enforce: true
88-
},
89-
'neo4j-driver': {
90-
test: /[\\/]node_modules[\\/](text-encoding|neo4j-driver)[\\/]/,
91-
name: 'neo4j-driver',
83+
'neo4j-ndl': {
84+
test: /[\\/]node_modules[\\/](semantic-ui-react|@neo4j-ndl|refractor|@heroicons)[\\/]/,
85+
name: 'ui-libs',
9286
chunks: 'all',
9387
enforce: true
9488
}

docs/antora.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: browser-manual
22
title: Neo4j Browser
3-
version: '4.4'
3+
version: '5'
44
start_page: ROOT:index.adoc
55
nav:
66
- modules/ROOT/content-nav.adoc
77
asciidoc:
88
attributes:
9-
neo4j-version: '4.4'
10-
neo4j-version-exact: '4.4.4'
11-
neo4j-buildnumber: '4.4'
12-
neo4j-browser-version: '4.4.6'
13-
docs-version: '4.4'
9+
neo4j-version: '5'
10+
neo4j-version-exact: '5.6.0'
11+
neo4j-buildnumber: '5.6'
12+
neo4j-browser-version: '5.6.0'
13+
docs-version: '5'

docs/modules/ROOT/content-nav.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
** xref:operations/query-parameters.adoc[]
2424
** xref:operations/browser-url-parameters.adoc[]
2525
** xref:operations/rest-requests.adoc[]
26+
** xref:operations/browser-rbac-count.adoc[]
2627
** xref:operations/product-analytics.adoc[]
2728
2829
* xref:reference-commands.adoc[Command reference]
100 KB
Loading

docs/modules/ROOT/pages/deployment-modes/dedicated-web-server.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This allows you to run a modified version of Neo4j Browser.
2929
[TIP]
3030
====
3131
If you have installed Neo4j on your system, then disable the browser module (`BROWSER`) from running. +
32-
For more information, see link:https://neo4j.com/docs/operations-manual/current/reference/configuration-settings/#config_dbms.http_enabled_modules[dbms.http_enabled_modules^] configuration setting.
32+
For more information, see link:https://neo4j.com/docs/operations-manual/current/configuration/configuration-settings/#config_dbms.http_enabled_modules[dbms.http_enabled_modules^] configuration setting.
3333
====
3434

3535

docs/modules/ROOT/pages/deployment-modes/neo4j-server.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The `BROWSER` module is avaialable in Community Edition and Enterprise Edition.
1515

1616
[NOTE]
1717
====
18-
If you do not want to host Neo4j Browser when you start Neo4j, remove `BROWSER` from the comma-separated list of the configuration setting https://neo4j.com/docs/operations-manual/current/reference/configuration-settings/#config_dbms.http_enabled_modules[dbms.http_enabled_modules^].
18+
If you do not want to host Neo4j Browser when you start Neo4j, remove `BROWSER` from the comma-separated list of the configuration setting https://neo4j.com/docs/operations-manual/current/configuration/configuration-settings/#config_dbms.http_enabled_modules[dbms.http_enabled_modules^].
1919
====
2020

2121
.Start Neo4j
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[[rbac-node-rel-count]]
2+
= Node and relationship counts with role-based access control
3+
4+
Normally Neo4j Browser can look up node and relationship counts quickly, as they are cached in the database.
5+
However, if role-based access control is configured (see link:https://neo4j.com/docs/operations-manual/current/authentication-authorization/access-control/[Operations Manual -> Fine-grained access control^] for more information), Neo4j counts the nodes and relationships the current user has access to on-demand, which is computationally expensive and thus potentially time-consuming.
6+
If Neo4j Browser detects that the counts are slow, it automatically stops polling counts and instead show a button for manual refresh.
7+
8+
image:rbac-count.png[width=300]

0 commit comments

Comments
 (0)