Skip to content

Commit d2ff44a

Browse files
authored
Merge pull request #346 from JohT/renovate/neo4j-neo4j-5.x
Update dependency neo4j/neo4j to v5.26.4
2 parents 2e32ee2 + fca46d5 commit d2ff44a

7 files changed

+7
-7
lines changed

scripts/profiles/Neo4jv5-continue-on-scan-errors.sh

+1-1
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.26.2"} # Version 5.9.0 is the current version of june 2023
6+
NEO4J_VERSION=${NEO4J_VERSION:-"5.26.4"} # 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
NEO4J_CONFIG_TEMPLATE=${NEO4J_CONFIG_TEMPLATE:-"template-neo4j.conf"} # Name of the template file ("configuration" folder) for the Neo4j configuration
99

scripts/profiles/Neo4jv5-low-memory.sh

+1-1
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.26.2"} # Version 5.9.0 is the current version of june 2023
6+
NEO4J_VERSION=${NEO4J_VERSION:-"5.26.4"} # 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
NEO4J_CONFIG_TEMPLATE=${NEO4J_CONFIG_TEMPLATE:-"template-neo4j-low-memory.conf"} # Name of the template file ("configuration" folder) for the Neo4j configuration
99

scripts/profiles/Neo4jv5.sh

+1-1
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.26.2"} # Version 5.9.0 is the current version of june 2023
6+
NEO4J_VERSION=${NEO4J_VERSION:-"5.26.4"} # 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
NEO4J_CONFIG_TEMPLATE=${NEO4J_CONFIG_TEMPLATE:-"template-neo4j.conf"} # Name of the template file ("configuration" folder) for the Neo4j configuration
99

scripts/setupNeo4j.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
set -o errexit -o pipefail
1111

1212
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
13-
NEO4J_VERSION=${NEO4J_VERSION:-"5.26.2"}
13+
NEO4J_VERSION=${NEO4J_VERSION:-"5.26.4"}
1414
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"5.26.4"} #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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
set -o errexit -o pipefail
99

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

1414
# Internal constants

scripts/startNeo4j.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ set -o errexit -o pipefail
1212

1313
# Overrideable Defaults
1414
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
15-
NEO4J_VERSION=${NEO4J_VERSION:-"5.26.2"}
15+
NEO4J_VERSION=${NEO4J_VERSION:-"5.26.4"}
1616
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1717
NEO4J_HTTP_PORT=${NEO4J_HTTP_PORT:-"7474"} # Neo4j's own "Bolt Protocol" port
1818

scripts/stopNeo4j.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set -o errexit -o pipefail
1111

1212
# Overrideable Defaults
1313
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
14-
NEO4J_VERSION=${NEO4J_VERSION:-"5.26.2"}
14+
NEO4J_VERSION=${NEO4J_VERSION:-"5.26.4"}
1515
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1616
NEO4J_HTTP_PORT=${NEO4J_HTTP_PORT:-"7474"}
1717

0 commit comments

Comments
 (0)