File tree Expand file tree Collapse file tree 4 files changed +15
-0
lines changed
main/java/org/neo4j/gds/compat
test/java/org/neo4j/gds/compat
catalog/src/test/java/org/neo4j/gds/catalog
sysinfo/src/test/java/org/neo4j/gds Expand file tree Collapse file tree 4 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ public enum Neo4jVersion {
30
30
V_4_4 ,
31
31
V_4_4_8_drop10 ,
32
32
V_4_4_9_drop10 ,
33
+ V_4_4_10_drop10 ,
33
34
V_5_0_drop60 ,
34
35
V_5_0_drop80 ;
35
36
@@ -44,6 +45,8 @@ public String toString() {
44
45
return "4.4.8-drop01.0" ;
45
46
case V_4_4_9_drop10 :
46
47
return "4.4.9-drop01.0" ;
48
+ case V_4_4_10_drop10 :
49
+ return "4.4.10-drop01.0" ;
47
50
case V_5_0_drop60 :
48
51
return "5.0.0-drop06.0" ;
49
52
case V_5_0_drop80 :
@@ -90,6 +93,10 @@ static Neo4jVersion parse(String version) {
90
93
return Neo4jVersion .V_4_4_9_drop10 ;
91
94
}
92
95
96
+ if ("4.4.10-drop01.0" .equals (version )) {
97
+ return Neo4jVersion .V_4_4_10_drop10 ;
98
+ }
99
+
93
100
if ("5.0.0-drop06.0" .equals (version )) {
94
101
return Neo4jVersion .V_5_0_drop60 ;
95
102
}
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ class Neo4jVersionTest {
39
39
"4.4.12, V_4_4" ,
40
40
"4.4.8-drop01.0, V_4_4_8_drop10" ,
41
41
"4.4.9-drop01.0, V_4_4_9_drop10" ,
42
+ "4.4.10-drop01.0, V_4_4_10_drop10" ,
42
43
"5.0.0-drop06.0, V_5_0_drop60" ,
43
44
"5.0.0-drop08.0, V_5_0_drop80" ,
44
45
})
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ void teardown() {
94
94
@ DisableForNeo4jVersion (Neo4jVersion .V_4_3 )
95
95
@ DisableForNeo4jVersion (Neo4jVersion .V_4_4_8_drop10 )
96
96
@ DisableForNeo4jVersion (Neo4jVersion .V_4_4_9_drop10 )
97
+ @ DisableForNeo4jVersion (Neo4jVersion .V_4_4_10_drop10 )
97
98
@ Test
98
99
void exportGraph () {
99
100
projectGraph ();
@@ -114,6 +115,7 @@ void exportGraph() {
114
115
@ DisableForNeo4jVersion (Neo4jVersion .V_4_3 )
115
116
@ DisableForNeo4jVersion (Neo4jVersion .V_4_4_8_drop10 )
116
117
@ DisableForNeo4jVersion (Neo4jVersion .V_4_4_9_drop10 )
118
+ @ DisableForNeo4jVersion (Neo4jVersion .V_4_4_10_drop10 )
117
119
@ Test
118
120
void exportGraphWithAdditionalNodeProperties () {
119
121
projectGraph ();
@@ -142,6 +144,7 @@ void exportGraphWithAdditionalNodeProperties() {
142
144
@ DisableForNeo4jVersion (Neo4jVersion .V_4_3 )
143
145
@ DisableForNeo4jVersion (Neo4jVersion .V_4_4_8_drop10 )
144
146
@ DisableForNeo4jVersion (Neo4jVersion .V_4_4_9_drop10 )
147
+ @ DisableForNeo4jVersion (Neo4jVersion .V_4_4_10_drop10 )
145
148
@ Test
146
149
void exportGraphWithAdditionalNodePropertiesShortHandSyntax () {
147
150
projectGraph ();
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ class SysInfoProcTest extends BaseProcTest {
57
57
"Neo4j 4.4" ,
58
58
"Neo4j 4.4.8-drop01.0" ,
59
59
"Neo4j 4.4.9-drop01.0" ,
60
+ "Neo4j 4.4.10-drop01.0" ,
60
61
"Neo4j 5.0.0-drop06.0 (placeholder)" ,
61
62
"Neo4j 5.0.0-drop08.0 (placeholder)" ,
62
63
"Neo4j 5.0.0-drop06.0" ,
@@ -121,6 +122,9 @@ void testSysInfoProc() throws IOException {
121
122
case V_4_4_9_drop10 :
122
123
expectedCompatibilities = Set .of ("Neo4j 4.4.9-drop01.0" , "Neo4j Settings 4.x" );
123
124
break ;
125
+ case V_4_4_10_drop10 :
126
+ expectedCompatibilities = Set .of ("Neo4j 4.4.10-drop01.0" , "Neo4j Settings 4.x" );
127
+ break ;
124
128
case V_5_0_drop60 :
125
129
expectedCompatibilities = Set .of (
126
130
"Neo4j Settings 5.0.0-drop06.0 (placeholder)" ,
You can’t perform that action at this time.
0 commit comments