Skip to content

Commit 0d805e6

Browse files
Update dependency neo4j/neo4j to v5.10.0
1 parent bf6d908 commit 0d805e6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

scripts/profiles/Neo4jv5.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Sets all settings variables for an analysis with Neo4j v5.x (newest version as of june 2023).
44
# The chosen settings are tested to be compatible and working.
55

6-
NEO4J_VERSION=${NEO4J_VERSION:-"5.9.0"} # Version 5.9.0 is the current version of june 2023
6+
NEO4J_VERSION=${NEO4J_VERSION:-"5.10.0"} # Version 5.9.0 is the current version of june 2023
77
NEO4J_HTTP_TRANSACTION_ENDPOINT=${NEO4J_HTTP_TRANSACTION_ENDPOINT:-"db/neo4j/tx/commit"} # Since Neo4j v5 it is "db/<name>/tx/commit"
88

99
# Overrideable settings variables for ports (optional, defaults also defined in sub scripts where needed)

scripts/resetAndScan.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ JQASSISTANT_CLI_ARTIFACT=${JQASSISTANT_CLI_ARTIFACT:-"jqassistant-commandline-di
1010
JQASSISTANT_CONFIG_TEMPLATE=${JQASSISTANT_CONFIG_TEMPLATE:-"template-neo4jv5-jqassistant.yaml"} # Neo4j v5: "template-neo4jv5-jqassistant.yaml", Neo4j v4: "template-neo4jv4-jqassistant.yaml"
1111

1212
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
13-
NEO4J_VERSION=${NEO4J_VERSION:-"5.9.0"}
13+
NEO4J_VERSION=${NEO4J_VERSION:-"5.10.0"}
1414
NEO4J_BOLT_PORT=${NEO4J_BOLT_PORT:-"7687"}
1515
NEO4J_BOLT_URI=${NEO4J_BOLT_URI:-"bolt://localhost:${NEO4J_BOLT_PORT}"}
1616
NEO4J_USER=${NEO4J_USER:-"neo4j"}

scripts/setupNeo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Note: The environment variable NEO4J_INITIAL_PASSWORD needs to be set.
66

77
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
8-
NEO4J_VERSION=${NEO4J_VERSION:-"5.9.0"}
8+
NEO4J_VERSION=${NEO4J_VERSION:-"5.10.0"}
99
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"5.10.1"} #Awesome Procedures for Neo4j Plugin, Version needs to be compatible to Neo4j
1010
NEO4J_APOC_PLUGIN_EDITION=${NEO4J_APOC_PLUGIN_EDITION:-"core"} #Awesome Procedures for Neo4j Plugin Edition (Neo4j v4.4.x "all", Neo4j >= v5 "core")
1111
NEO4J_APOC_PLUGIN_GITHUB=${NEO4J_APOC_PLUGIN_GITHUB:-"neo4j/apoc"} #Awesome Procedures for Neo4j Plugin GitHub User/Repository (Neo4j v4.4.x "neo4j-contrib/neo4j-apoc-procedures", Neo4j >= v5 "neo4j/apoc")

scripts/setupNeo4jInitialPassword.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Note: The environment variable NEO4J_INITIAL_PASSWORD needs to be set.
66

77
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
8-
NEO4J_VERSION=${NEO4J_VERSION:-"5.9.0"}
8+
NEO4J_VERSION=${NEO4J_VERSION:-"5.10.0"}
99
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1010

1111
# Internal constants

scripts/startNeo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Note: It requires Neo4j to be installed in the TOOLS_DIRECTORY.
77

88
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
9-
NEO4J_VERSION=${NEO4J_VERSION:-"5.9.0"}
9+
NEO4J_VERSION=${NEO4J_VERSION:-"5.10.0"}
1010
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1111
NEO4J_HTTP_PORT=${NEO4J_HTTP_PORT:-"7474"}
1212

scripts/stopNeo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Note: Does nothing if the database is already stopped.
66

77
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
8-
NEO4J_VERSION=${NEO4J_VERSION:-"5.9.0"}
8+
NEO4J_VERSION=${NEO4J_VERSION:-"5.10.0"}
99
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1010
NEO4J_HTTP_PORT=${NEO4J_HTTP_PORT:-"7474"}
1111

0 commit comments

Comments
 (0)