Skip to content

Commit

Permalink
Merge pull request #9081 from yuvalr1neo/post-2.6.7
Browse files Browse the repository at this point in the history
Post 2.6.7
  • Loading branch information
yuvalr1neo authored May 28, 2024
2 parents a9cc6ac + e040c24 commit 868224f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
22 changes: 12 additions & 10 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -82,7 +84,7 @@ For the most basic set of features, like graph loading and the graph representat
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>core</artifactId>
<version>2.6.6</version>
<version>2.6.7</version>
</dependency>
----

Expand All @@ -94,21 +96,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>algo-common</artifactId>
<version>2.6.6</version>
<version>2.6.7</version>
</dependency>
<!-- Contains the productized algorithms -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>algo</artifactId>
<version>2.6.6</version>
<version>2.6.7</version>
</dependency>
<!-- Contains some alpha algorithms -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>alpha-algo</artifactId>
<version>2.6.6</version>
<version>2.6.7</version>
</dependency>
----

Expand All @@ -120,28 +122,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>proc-common</artifactId>
<version>2.6.6</version>
<version>2.6.7</version>
</dependency>
<!-- Contains the productized algorithm procedures -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>proc</artifactId>
<version>2.6.6</version>
<version>2.6.7</version>
</dependency>
<!-- Contains some alpha algorithm procedures-->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>alpha-proc</artifactId>
<version>2.6.6</version>
<version>2.6.7</version>
</dependency>
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
<dependency>
<groupId>org.neo4j.gds</groupId>
<artifactId>open-write-services</artifactId>
<version>2.6.6</version>
<version>2.6.7</version>
</dependency>
----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/pregel-bootstrap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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 = [
Expand All @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion gradle/version.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
gdsBaseVersion = '2.6.7'
gdsBaseVersion = '2.6.8'
gdsAuraVersion = '61'
gdsVersion = gdsBaseVersion + (rootProject.hasProperty('aurads') ? "+${gdsAuraVersion}" : "")
}

0 comments on commit 868224f

Please sign in to comment.