diff --git a/README.adoc b/README.adoc index 7b97182295..dabd1f3e88 100644 --- a/README.adoc +++ b/README.adoc @@ -26,9 +26,11 @@ When installing GDS manually, please refer to the below compatibility matrix: .Compatibility matrix |=== |GDS version | Neo4j version | Java Version -.9+<.^|GDS 2.6.x +.11+<.^|GDS 2.6.x +|Neo4j 5.20.0 +.8+.^|Java 21 & Java 17 +|Neo4j 5.19.0 |Neo4j 5.18.0, 5.18.1 -.6+.^|Java 21 & Java 17 |Neo4j 5.17.0 |Neo4j 5.16.0 |Neo4j 5.15.0 @@ -82,7 +84,7 @@ For the most basic set of features, like graph loading and the graph representat org.neo4j.gds core - 2.6.6 + 2.6.7 ---- @@ -94,21 +96,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules org.neo4j.gds algo-common - 2.6.6 + 2.6.7 org.neo4j.gds algo - 2.6.6 + 2.6.7 org.neo4j.gds alpha-algo - 2.6.6 + 2.6.7 ---- @@ -120,28 +122,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules org.neo4j.gds proc-common - 2.6.6 + 2.6.7 org.neo4j.gds proc - 2.6.6 + 2.6.7 org.neo4j.gds alpha-proc - 2.6.6 + 2.6.7 org.neo4j.gds open-write-services - 2.6.6 + 2.6.7 ---- diff --git a/doc/modules/ROOT/pages/installation/supported-neo4j-versions.adoc b/doc/modules/ROOT/pages/installation/supported-neo4j-versions.adoc index 8c6d5bc38f..3c5217f3ee 100644 --- a/doc/modules/ROOT/pages/installation/supported-neo4j-versions.adoc +++ b/doc/modules/ROOT/pages/installation/supported-neo4j-versions.adoc @@ -10,6 +10,7 @@ If your version of GDS or Neo4j is not listed in the matrix, you should upgrade. [opts=header] |=== | Neo4j version | Neo4j Graph Data Science +| `5.20` | `2.7`, `2.6.7` or later | `5.19` | `2.7`, `2.6.5` or later | `5.18` | `2.7`, `2.6.2` or later | `5.17` | `2.7`, `2.6.1` or later diff --git a/examples/pregel-bootstrap/build.gradle b/examples/pregel-bootstrap/build.gradle index 688eb96c90..99e1fd626a 100644 --- a/examples/pregel-bootstrap/build.gradle +++ b/examples/pregel-bootstrap/build.gradle @@ -7,7 +7,7 @@ plugins { ext { // Make sure these are the same as your installation of GDS and Neo4j - gdsVersion = '2.6.6' + gdsVersion = '2.6.7' neo4jVersion = '5.19.0' // Necessary to generate value classes for Pregel configs diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index 7415fb1720..19ee6c9efc 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -28,6 +28,7 @@ ext { '5.18': '2.13.11', '5.19': '2.13.11', '5.20': '2.13.11', + '5.21': '2.13.11', ] log4js = [ @@ -42,6 +43,7 @@ ext { '5.18': '2.20.0', '5.19': '2.20.0', '5.20': '2.20.0', + '5.21': '2.20.0', ] shiros = [ @@ -56,6 +58,7 @@ ext { '5.18': '1.13.0', '5.19': '2.0.0', '5.20': '2.0.0', + '5.21': '2.0.0', ] ver = [ diff --git a/gradle/version.gradle b/gradle/version.gradle index e0a7f24a86..312197e541 100644 --- a/gradle/version.gradle +++ b/gradle/version.gradle @@ -1,5 +1,5 @@ ext { - gdsBaseVersion = '2.6.7' + gdsBaseVersion = '2.6.8' gdsAuraVersion = '61' gdsVersion = gdsBaseVersion + (rootProject.hasProperty('aurads') ? "+${gdsAuraVersion}" : "") }