Skip to content

Commit

Permalink
Publish 5.18 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Mats-SX committed Mar 15, 2024
1 parent 6d6ee79 commit 4cafae3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ When installing GDS manually, please refer to the below compatibility matrix:
.Compatibility matrix
|===
|GDS version | Neo4j version | Java Version
.8+<.^|GDS 2.6.x
.9+<.^|GDS 2.6.x
|Neo4j 5.18.0
.6+.^|Java 21 & Java 17
|Neo4j 5.17.0
.5+.^|Java 21 & Java 17
|Neo4j 5.16.0
|Neo4j 5.15.0
|Neo4j 5.14.0
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ ext {
project(':neo4j-kernel-adapter-5.15'),
project(':neo4j-kernel-adapter-5.16'),
project(':neo4j-kernel-adapter-5.17'),
project(':neo4j-kernel-adapter-5.18'),
],
'storage-engine-adapter': [
project(':storage-engine-adapter-4.4'),
Expand All @@ -40,6 +41,7 @@ ext {
project(':storage-engine-adapter-5.15'),
project(':storage-engine-adapter-5.16'),
project(':storage-engine-adapter-5.17'),
project(':storage-engine-adapter-5.18'),
]
]
}
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.18` | `2.7`, `2.6.2` or later
| `5.17` | `2.7`, `2.6.1` or later
| `5.16` | `2.7`, `2.6`, `2.5.7` footnote:eol[2.5 version series is end-of-life and will not receive further patches. Please use a later version.]
| `5.15` | `2.6`, `2.5.6` footnote:eol[] or later
Expand Down
2 changes: 2 additions & 0 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ ext {
'5.16': '2.13.11',
'5.17': '2.13.11',
'5.18': '2.13.11',
'5.19': '2.13.11',
]

log4js = [
Expand All @@ -36,6 +37,7 @@ ext {
'5.16': '2.20.0',
'5.17': '2.20.0',
'5.18': '2.20.0',
'5.19': '2.20.0',
]

ver = [
Expand Down
5 changes: 5 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -310,3 +310,8 @@ include('neo4j-kernel-adapter-5.17')
project(':neo4j-kernel-adapter-5.17').projectDir = file('compatibility/5.17/neo4j-kernel-adapter')
include('storage-engine-adapter-5.17')
project(':storage-engine-adapter-5.17').projectDir = file('compatibility/5.17/storage-engine-adapter')

include('neo4j-kernel-adapter-5.18')
project(':neo4j-kernel-adapter-5.18').projectDir = file('compatibility/5.18/neo4j-kernel-adapter')
include('storage-engine-adapter-5.18')
project(':storage-engine-adapter-5.18').projectDir = file('compatibility/5.18/storage-engine-adapter')

0 comments on commit 4cafae3

Please sign in to comment.