Skip to content

Commit 602e54b

Browse files
Update dependency neo4j/neo4j to v5.11.0
1 parent 6158f4f commit 602e54b

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.10.0"} # Version 5.9.0 is the current version of june 2023
6+
NEO4J_VERSION=${NEO4J_VERSION:-"5.11.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.10.0"}
13+
NEO4J_VERSION=${NEO4J_VERSION:-"5.11.0"}
1414
NEO4J_BOLT_PORT=${NEO4J_BOLT_PORT:-"7687"} # Neo4j's own "Bolt Protocol" port
1515
NEO4J_BOLT_URI=${NEO4J_BOLT_URI:-"bolt://localhost:${NEO4J_BOLT_PORT}"} # Neo4j's own "Bolt Protocol" address
1616
NEO4J_USER=${NEO4J_USER:-"neo4j"} # Neo4j login user

scripts/setupNeo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Requires download.sh,setupNeo4jInitialPassword.sh
88

99
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
10-
NEO4J_VERSION=${NEO4J_VERSION:-"5.10.0"}
10+
NEO4J_VERSION=${NEO4J_VERSION:-"5.11.0"}
1111
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"5.10.1"} #Awesome Procedures for Neo4j Plugin, Version needs to be compatible to Neo4j
1212
NEO4J_APOC_PLUGIN_EDITION=${NEO4J_APOC_PLUGIN_EDITION:-"core"} #Awesome Procedures for Neo4j Plugin Edition (Neo4j v4.4.x "all", Neo4j >= v5 "core")
1313
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.10.0"}
8+
NEO4J_VERSION=${NEO4J_VERSION:-"5.11.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
@@ -8,7 +8,7 @@
88
# Requires waitForNeo4jHttp.sh
99

1010
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
11-
NEO4J_VERSION=${NEO4J_VERSION:-"5.10.0"}
11+
NEO4J_VERSION=${NEO4J_VERSION:-"5.11.0"}
1212
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1313
NEO4J_HTTP_PORT=${NEO4J_HTTP_PORT:-"7474"} # Neo4j's own "Bolt Protocol" port
1414

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.10.0"}
8+
NEO4J_VERSION=${NEO4J_VERSION:-"5.11.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)