Skip to content

Commit e0b6454

Browse files
committed
Updated to support Neo4j version 2025.01.0
updated pom to support Neo4j version 2025.01.0 built using Java 21
1 parent 689050e commit e0b6454

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# CHANGELOG - 2025.01.0 - 2025-02-12
2+
* [Updated] - Bumped Neo4j version to 2025.01.0 to match Neo4j versioning.
3+
* [Updated] - Built against Java 21 as Neo4j 2025.01.0 requires Java 21
4+
5+
16
# CHANGELOG - 5.26.2 - 2025-02-12
27
* [Updated] - Bumped Neo4j version to 5.26.2.
38

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
<groupId>com.neo4jh3</groupId>
88
<artifactId>neo4jh3</artifactId>
9-
<version>5.26.2</version>
9+
<version>2025.01</version>
1010

1111
<properties>
12-
<neo4j.version>5.26.0</neo4j.version>
12+
<neo4j.version>2025.01.0</neo4j.version>
1313
<lang3.version>3.13.0</lang3.version>
1414
<uber.version>4.1.1</uber.version>
1515
<commons.version>4.1</commons.version>
1616
<commons.math.version>3.6.1</commons.math.version>
17-
<java.version>17</java.version>
17+
<java.version>21</java.version>
1818
<maven.compiler.release>${java.version}</maven.compiler.release>
1919
<maven-shade-plugin.version>3.4.1</maven-shade-plugin.version>
2020
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>

src/main/java/com/neo4jh3/uber/Neo4jH3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class Neo4jH3 {
3333
public Transaction tx;
3434

3535
private final static int DEFAULT_H3_RESOLUTION = 9;
36-
private final static String NEO4J_H3_VERSION = "5.23.0";
36+
private final static String NEO4J_H3_VERSION = "2025.01.0";
3737

3838
private static H3Core h3 = null;
3939

src/test/java/com/neo4jh3/Neo4jH3Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public void should_return_hex_address() throws InterruptedException {
111111
}
112112

113113
result = session.run("RETURN neo4jh3.version() AS value");
114-
assertEquals("\"5.23.0\"", result.single().get("value").toString());
114+
assertEquals("\"2025.01.0\"", result.single().get("value").toString());
115115

116116
result = session.run("RETURN neo4jh3.cellToLatLngString('892830926cfffff') AS value");
117117
assertEquals("\"37.564248,-122.325306\"", result.single().get("value").toString());

0 commit comments

Comments
 (0)