Skip to content

Commit 868224f

Browse files
authored
Merge pull request #9081 from yuvalr1neo/post-2.6.7
Post 2.6.7
2 parents a9cc6ac + e040c24 commit 868224f

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

README.adoc

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ When installing GDS manually, please refer to the below compatibility matrix:
2626
.Compatibility matrix
2727
|===
2828
|GDS version | Neo4j version | Java Version
29-
.9+<.^|GDS 2.6.x
29+
.11+<.^|GDS 2.6.x
30+
|Neo4j 5.20.0
31+
.8+.^|Java 21 & Java 17
32+
|Neo4j 5.19.0
3033
|Neo4j 5.18.0, 5.18.1
31-
.6+.^|Java 21 & Java 17
3234
|Neo4j 5.17.0
3335
|Neo4j 5.16.0
3436
|Neo4j 5.15.0
@@ -82,7 +84,7 @@ For the most basic set of features, like graph loading and the graph representat
8284
<dependency>
8385
<groupId>org.neo4j.gds</groupId>
8486
<artifactId>core</artifactId>
85-
<version>2.6.6</version>
87+
<version>2.6.7</version>
8688
</dependency>
8789
----
8890

@@ -94,21 +96,21 @@ The algorithms are located in the `algo-common`, `algo` and `alpha-algo` modules
9496
<dependency>
9597
<groupId>org.neo4j.gds</groupId>
9698
<artifactId>algo-common</artifactId>
97-
<version>2.6.6</version>
99+
<version>2.6.7</version>
98100
</dependency>
99101
100102
<!-- Contains the productized algorithms -->
101103
<dependency>
102104
<groupId>org.neo4j.gds</groupId>
103105
<artifactId>algo</artifactId>
104-
<version>2.6.6</version>
106+
<version>2.6.7</version>
105107
</dependency>
106108
107109
<!-- Contains some alpha algorithms -->
108110
<dependency>
109111
<groupId>org.neo4j.gds</groupId>
110112
<artifactId>alpha-algo</artifactId>
111-
<version>2.6.6</version>
113+
<version>2.6.7</version>
112114
</dependency>
113115
----
114116

@@ -120,28 +122,28 @@ The procedures are located in the `proc-common`, `proc` and `alpha-proc` modules
120122
<dependency>
121123
<groupId>org.neo4j.gds</groupId>
122124
<artifactId>proc-common</artifactId>
123-
<version>2.6.6</version>
125+
<version>2.6.7</version>
124126
</dependency>
125127
126128
<!-- Contains the productized algorithm procedures -->
127129
<dependency>
128130
<groupId>org.neo4j.gds</groupId>
129131
<artifactId>proc</artifactId>
130-
<version>2.6.6</version>
132+
<version>2.6.7</version>
131133
</dependency>
132134
133135
<!-- Contains some alpha algorithm procedures-->
134136
<dependency>
135137
<groupId>org.neo4j.gds</groupId>
136138
<artifactId>alpha-proc</artifactId>
137-
<version>2.6.6</version>
139+
<version>2.6.7</version>
138140
</dependency>
139141
140142
<!-- Required by the write execution modes, this artifact is responsible for providing the various exporters -->
141143
<dependency>
142144
<groupId>org.neo4j.gds</groupId>
143145
<artifactId>open-write-services</artifactId>
144-
<version>2.6.6</version>
146+
<version>2.6.7</version>
145147
</dependency>
146148
----
147149

doc/modules/ROOT/pages/installation/supported-neo4j-versions.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ If your version of GDS or Neo4j is not listed in the matrix, you should upgrade.
1010
[opts=header]
1111
|===
1212
| Neo4j version | Neo4j Graph Data Science
13+
| `5.20` | `2.7`, `2.6.7` or later
1314
| `5.19` | `2.7`, `2.6.5` or later
1415
| `5.18` | `2.7`, `2.6.2` or later
1516
| `5.17` | `2.7`, `2.6.1` or later

examples/pregel-bootstrap/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
ext {
99
// Make sure these are the same as your installation of GDS and Neo4j
10-
gdsVersion = '2.6.6'
10+
gdsVersion = '2.6.7'
1111
neo4jVersion = '5.19.0'
1212

1313
// Necessary to generate value classes for Pregel configs

gradle/dependencies.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ ext {
2828
'5.18': '2.13.11',
2929
'5.19': '2.13.11',
3030
'5.20': '2.13.11',
31+
'5.21': '2.13.11',
3132
]
3233

3334
log4js = [
@@ -42,6 +43,7 @@ ext {
4243
'5.18': '2.20.0',
4344
'5.19': '2.20.0',
4445
'5.20': '2.20.0',
46+
'5.21': '2.20.0',
4547
]
4648

4749
shiros = [
@@ -56,6 +58,7 @@ ext {
5658
'5.18': '1.13.0',
5759
'5.19': '2.0.0',
5860
'5.20': '2.0.0',
61+
'5.21': '2.0.0',
5962
]
6063

6164
ver = [

gradle/version.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext {
2-
gdsBaseVersion = '2.6.7'
2+
gdsBaseVersion = '2.6.8'
33
gdsAuraVersion = '61'
44
gdsVersion = gdsBaseVersion + (rootProject.hasProperty('aurads') ? "+${gdsAuraVersion}" : "")
55
}

0 commit comments

Comments
 (0)