Skip to content

Commit 7e0fcc3

Browse files
authored
Merge pull request #382 from JohT/renovate/neo4j-and-apoc-to-2025.04.0
Update Neo4j and APOC to 2025.04.0
2 parents 7eb02b7 + 01420d3 commit 7e0fcc3

7 files changed

+11
-11
lines changed

scripts/profiles/Neo4j-latest-continue-on-scan-errors.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# Sets all settings variables for an analysis with the latest version of Neo4j.
44
# The chosen settings are tested to be compatible and working.
55

6-
NEO4J_VERSION=${NEO4J_VERSION:-"2025.03.0"} # Neo4j Graph Database Version. Current versions: >= 2025.03.0. Version 4.4.42 and 5.26.5 are the previous LTS (long term support) versions as of April 2025.
6+
NEO4J_VERSION=${NEO4J_VERSION:-"2025.04.0"} # Neo4j Graph Database Version. Current versions: >= 2025.03.0. Version 4.4.42 and 5.26.5 are the previous LTS (long term support) versions as of April 2025.
77
NEO4J_HTTP_TRANSACTION_ENDPOINT=${NEO4J_HTTP_TRANSACTION_ENDPOINT:-"db/neo4j/tx/commit"}
88
NEO4J_CONFIG_TEMPLATE=${NEO4J_CONFIG_TEMPLATE:-"template-neo4j.conf"}
99

1010
# Awesome Procedures (APOC) Plugin for Neo4j
11-
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"2025.03.0"}
11+
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"2025.04.0"}
1212
NEO4J_APOC_PLUGIN_EDITION=${NEO4J_APOC_PLUGIN_EDITION:-"core"}
1313
NEO4J_APOC_PLUGIN_GITHUB=${NEO4J_APOC_PLUGIN_GITHUB:-"neo4j/apoc"}
1414

scripts/profiles/Neo4j-latest-low-memory.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
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:-"2025.03.0"} # Neo4j Graph Database Version. Current versions: >= 2025.03.0. Version 4.4.42 and 5.26.5 are the previous LTS (long term support) versions as of April 2025.
6+
NEO4J_VERSION=${NEO4J_VERSION:-"2025.04.0"} # Neo4j Graph Database Version. Current versions: >= 2025.03.0. Version 4.4.42 and 5.26.5 are the previous LTS (long term support) versions as of April 2025.
77
NEO4J_HTTP_TRANSACTION_ENDPOINT=${NEO4J_HTTP_TRANSACTION_ENDPOINT:-"db/neo4j/tx/commit"}
88
NEO4J_CONFIG_TEMPLATE=${NEO4J_CONFIG_TEMPLATE:-"template-neo4j-low-memory.conf"}
99

1010
# Awesome Procedures (APOC) Plugin for Neo4j
11-
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"2025.03.0"}
11+
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"2025.04.0"}
1212
NEO4J_APOC_PLUGIN_EDITION=${NEO4J_APOC_PLUGIN_EDITION:-"core"}
1313
NEO4J_APOC_PLUGIN_GITHUB=${NEO4J_APOC_PLUGIN_GITHUB:-"neo4j/apoc"}
1414

scripts/profiles/Neo4j-latest.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# Sets all settings variables for an analysis with the latest version of Neo4j.
44
# The chosen settings are tested to be compatible and working.
55

6-
NEO4J_VERSION=${NEO4J_VERSION:-"2025.03.0"} # Neo4j Graph Database Version. Current versions: >= 2025.03.0. Version 4.4.42 and 5.26.5 are the previous LTS (long term support) versions as of April 2025.
6+
NEO4J_VERSION=${NEO4J_VERSION:-"2025.04.0"} # Neo4j Graph Database Version. Current versions: >= 2025.03.0. Version 4.4.42 and 5.26.5 are the previous LTS (long term support) versions as of April 2025.
77
NEO4J_HTTP_TRANSACTION_ENDPOINT=${NEO4J_HTTP_TRANSACTION_ENDPOINT:-"db/neo4j/tx/commit"}
88
NEO4J_CONFIG_TEMPLATE=${NEO4J_CONFIG_TEMPLATE:-"template-neo4j.conf"}
99

1010
# Awesome Procedures (APOC) Plugin for Neo4j
11-
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"2025.03.0"}
11+
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"2025.04.0"}
1212
NEO4J_APOC_PLUGIN_EDITION=${NEO4J_APOC_PLUGIN_EDITION:-"core"}
1313
NEO4J_APOC_PLUGIN_GITHUB=${NEO4J_APOC_PLUGIN_GITHUB:-"neo4j/apoc"}
1414

scripts/setupNeo4j.sh

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

1212
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
13-
NEO4J_VERSION=${NEO4J_VERSION:-"2025.03.0"}
13+
NEO4J_VERSION=${NEO4J_VERSION:-"2025.04.0"}
1414

15-
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"2025.03.0"} # Awesome Procedures On Cypher (APOC) Plugin version number. Version needs to be compatible to Neo4j and usually matches its version number.
15+
NEO4J_APOC_PLUGIN_VERSION=${NEO4J_APOC_PLUGIN_VERSION:-"2025.04.0"} # Awesome Procedures On Cypher (APOC) Plugin version number. Version needs to be compatible to Neo4j and usually matches its version number.
1616
NEO4J_APOC_PLUGIN_EDITION=${NEO4J_APOC_PLUGIN_EDITION:-"core"} # Awesome Procedures On Cypher (APOC) for Neo4j Plugin Edition (Neo4j v4.4.x "all", Neo4j >= v5 "core")
1717
NEO4J_APOC_PLUGIN_GITHUB=${NEO4J_APOC_PLUGIN_GITHUB:-"neo4j/apoc"} # Awesome Procedures On Cypher (APOC) for Neo4j Plugin GitHub User/Repository (Neo4j v4.4.x "neo4j-contrib/neo4j-apoc-procedures", Neo4j >= v5 "neo4j/apoc")
1818

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:-"2025.03.0"}
11+
NEO4J_VERSION=${NEO4J_VERSION:-"2025.04.0"}
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:-"2025.03.0"}
15+
NEO4J_VERSION=${NEO4J_VERSION:-"2025.04.0"}
1616
TOOLS_DIRECTORY=${TOOLS_DIRECTORY:-"tools"} # Get the tools directory (defaults to "tools")
1717
NEO4J_HTTP_PORT=${NEO4J_HTTP_PORT:-"7474"}
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:-"2025.03.0"}
14+
NEO4J_VERSION=${NEO4J_VERSION:-"2025.04.0"}
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)