Skip to content

Commit

Permalink
[l8BgbZYY] bump neo4j version to 4.4.20 (#3554)
Browse files Browse the repository at this point in the history
Co-authored-by: Nacho Cordón <[email protected]>
  • Loading branch information
nadja-muller and ncordon authored May 9, 2023
1 parent f4e9770 commit dad2337
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ downloadLicenses {

allprojects {
group = 'org.neo4j.procedure'
version = '4.4.0.16'
version = '4.4.0.17'
archivesBaseName = 'apoc'
description = """neo4j-apoc-procedures"""
}
Expand Down Expand Up @@ -71,8 +71,8 @@ subprojects {
// neo4jDockerImage system property is used in TestContainerUtil
systemProperties 'user.language' : 'en' ,
'user.country ' : 'US',
'neo4jDockerImage' : System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") + '-enterprise' : 'neo4j:4.4.19-enterprise',
'neo4jCommunityDockerImage': System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") : 'neo4j:4.4.19'
'neo4jDockerImage' : System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") + '-enterprise' : 'neo4j:4.4.20-enterprise',
'neo4jCommunityDockerImage': System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") : 'neo4j:4.4.20'

maxHeapSize = "8G"
forkEvery = 50
Expand Down Expand Up @@ -123,7 +123,7 @@ apply from: "licenses-3rdparties.gradle"
ext {
publicDir = "${project.rootDir}"
// NB: due to version.json generation by parsing this file, the next line must not have any if/then/else logic
neo4jVersion = "4.4.19"
neo4jVersion = "4.4.20"
// instead we apply the override logic here
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion
testContainersVersion = '1.17.6'
Expand Down
2 changes: 1 addition & 1 deletion docs/asciidoc/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ asciidoc:
docs-version: "4.4"
branch: "4.4"
apoc-release-absolute: "4.4"
apoc-release: "4.4.0.16"
apoc-release: "4.4.0.17"
json-path-version: "2.8.0"
2 changes: 1 addition & 1 deletion docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ plugins {
id 'org.neo4j.doc.build.docbook' version '1.0-alpha12'
}

if (!project.hasProperty('apocVersion')) { ext.apocVersion = '4.4.0.16' }
if (!project.hasProperty('apocVersion')) { ext.apocVersion = '4.4.0.17' }

ext {
versionParts = apocVersion.split('-')
Expand Down
2 changes: 1 addition & 1 deletion extra-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ configure(subprojects) {


subprojects {
version = '4.4.0.16'
version = '4.4.0.17'
group = 'org.neo4j.contrib'
}

Expand Down
2 changes: 1 addition & 1 deletion test-utils/src/main/java/apoc/util/TestContainerUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static Neo4jContainerExtension createEnterpriseDB(File baseDir, boolean w
importFolder.mkdirs();

// read neo4j version from build.gradle and use this as default
String neo4jDockerImageVersion = System.getProperty("neo4jDockerImage", "neo4j:4.4.19-enterprise");
String neo4jDockerImageVersion = System.getProperty("neo4jDockerImage", "neo4j:4.4.20-enterprise");

// use a separate folder for mounting plugins jar - build/libs might contain other jars as well.
pluginsFolder = new File(baseDir, "build/plugins");
Expand Down

0 comments on commit dad2337

Please sign in to comment.