Skip to content

Commit

Permalink
Publicise 5.15 compatibility for 2.5.6
Browse files Browse the repository at this point in the history
Co-authored-by: Sören Reichardt <[email protected]>
  • Loading branch information
Mats-SX and soerenreichardt committed Dec 19, 2023
1 parent d401f4c commit 2cca706
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 6 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ When installing GDS manually, please refer to the below compatibility matrix:
.Compatibility matrix (italicized version is in development)
|===
|GDS version | Neo4j version | Java Version
.10+<.^|_GDS 2.5.x_
.11+<.^|_GDS 2.5.x_
|Neo4j 5.15.0
.2+.^|Java 21 & Java 17
|Neo4j 5.14.0
.9+.^|Java 17
|Neo4j 5.13.0
.8+.^|Java 17
|Neo4j 5.12.0
|Neo4j 5.11.0
|Neo4j 5.10.0
Expand All @@ -54,7 +56,7 @@ When installing GDS manually, please refer to the below compatibility matrix:
|Neo4j 5.2.0
|Neo4j 5.1.0
|Neo4j 4.4.9 - 4.4.26
.1+.^|Java 11
|Java 11
.9+<.^|GDS 2.3.x
|Neo4j 5.8.0
.8+.^|Java 17
Expand All @@ -66,7 +68,7 @@ When installing GDS manually, please refer to the below compatibility matrix:
|Neo4j 5.2.0
|Neo4j 5.1.0
|Neo4j 4.4.9 - 4.4.22
.1+.^|Java 11
|Java 11
|===

NOTE: Preview releases are not automatically made available in Neo4j Desktop. They need to be installed manually.
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ ext {
project(':neo4j-kernel-adapter-5.12'),
project(':neo4j-kernel-adapter-5.13'),
project(':neo4j-kernel-adapter-5.14'),
project(':neo4j-kernel-adapter-5.15'),
],
'storage-engine-adapter': [
project(':storage-engine-adapter-4.4'),
Expand All @@ -48,6 +49,7 @@ ext {
project(':storage-engine-adapter-5.12'),
project(':storage-engine-adapter-5.13'),
project(':storage-engine-adapter-5.14'),
project(':storage-engine-adapter-5.15'),
]
]
}
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.15` | `2.5.6` or later
| `5.14` | `2.5.5` or later
| `5.13` | `2.5.1` or later, `2.4.7` or later footnote:eol[2.4 version series is end-of-life and will not receive further patches. Please use a later version.]
| `5.12` | `2.5`, `2.4.6` or later footnote:eol[]
Expand Down
1 change: 0 additions & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ext {
'5.12': properties.getOrDefault('neo4jVersion512', '5.12.0'),
'5.13': properties.getOrDefault('neo4jVersion513', '5.13.0'),
'5.14': properties.getOrDefault('neo4jVersion514', '5.14.0'),
'5.15': properties.getOrDefault('neo4jVersion514', '5.15.0'),
'5.15': properties.getOrDefault('neo4jVersion515', '5.15.0'),
]

Expand Down
6 changes: 6 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@ project(':neo4j-kernel-adapter-5.13').projectDir = file('compatibility/5.13/neo4
include('neo4j-kernel-adapter-5.14')
project(':neo4j-kernel-adapter-5.14').projectDir = file('compatibility/5.14/neo4j-kernel-adapter')

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

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

Expand Down Expand Up @@ -287,6 +290,9 @@ project(':storage-engine-adapter-5.13').projectDir = file('compatibility/5.13/st
include('storage-engine-adapter-5.14')
project(':storage-engine-adapter-5.14').projectDir = file('compatibility/5.14/storage-engine-adapter')

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

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

Expand Down

0 comments on commit 2cca706

Please sign in to comment.