Skip to content

Commit d09bd22

Browse files
Update dependency neo4j/neo4j to v5.13.0
1 parent 1928246 commit d09bd22

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.12.0"} # Version 5.9.0 is the current version of june 2023
6+
NEO4J_VERSION=${NEO4J_VERSION:-"5.13.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
@@ -14,7 +14,7 @@ JQASSISTANT_CLI_ARTIFACT=${JQASSISTANT_CLI_ARTIFACT:-"jqassistant-commandline-di
1414
JQASSISTANT_CONFIG_TEMPLATE=${JQASSISTANT_CONFIG_TEMPLATE:-"template-neo4jv5-jqassistant.yaml"} # Neo4j v5: "template-neo4jv5-jqassistant.yaml", Neo4j v4: "template-neo4jv4-jqassistant.yaml"
1515

1616
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
17-
NEO4J_VERSION=${NEO4J_VERSION:-"5.12.0"}
17+
NEO4J_VERSION=${NEO4J_VERSION:-"5.13.0"}
1818
NEO4J_BOLT_PORT=${NEO4J_BOLT_PORT:-"7687"} # Neo4j's own "Bolt Protocol" port
1919
NEO4J_BOLT_URI=${NEO4J_BOLT_URI:-"bolt://localhost:${NEO4J_BOLT_PORT}"} # Neo4j's own "Bolt Protocol" address
2020
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
@@ -10,7 +10,7 @@
1010
set -eo pipefail
1111

1212
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
13-
NEO4J_VERSION=${NEO4J_VERSION:-"5.12.0"}
13+
NEO4J_VERSION=${NEO4J_VERSION:-"5.13.0"}
1414
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"5.12.0"} #Awesome Procedures for Neo4j Plugin, Version needs to be compatible to Neo4j
1515
NEO4J_APOC_PLUGIN_EDITION=${NEO4J_APOC_PLUGIN_EDITION:-"core"} #Awesome Procedures for Neo4j Plugin Edition (Neo4j v4.4.x "all", Neo4j >= v5 "core")
1616
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
@@ -8,7 +8,7 @@
88
set -eo pipefail
99

1010
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
11-
NEO4J_VERSION=${NEO4J_VERSION:-"5.12.0"}
11+
NEO4J_VERSION=${NEO4J_VERSION:-"5.13.0"}
1212
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1313

1414
# Internal constants

scripts/startNeo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
set -eo pipefail
1212

1313
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
14-
NEO4J_VERSION=${NEO4J_VERSION:-"5.12.0"}
14+
NEO4J_VERSION=${NEO4J_VERSION:-"5.13.0"}
1515
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1616
NEO4J_HTTP_PORT=${NEO4J_HTTP_PORT:-"7474"} # Neo4j's own "Bolt Protocol" port
1717

scripts/stopNeo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
set -eo pipefail
1111

1212
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
13-
NEO4J_VERSION=${NEO4J_VERSION:-"5.12.0"}
13+
NEO4J_VERSION=${NEO4J_VERSION:-"5.13.0"}
1414
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1515
NEO4J_HTTP_PORT=${NEO4J_HTTP_PORT:-"7474"}
1616

0 commit comments

Comments
 (0)