Skip to content

Commit 2dd532e

Browse files
authored
updated Java driver (#63)
1 parent c6ed726 commit 2dd532e

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

66
## [Unreleased]
77

8+
- updated Java Driver to version `7.9.0`
9+
- added support to load SSL Trust Store from file (DE-502, #61)
810
- dropped support for Spark 3.2
911

1012
## [1.7.0] - 2024-07-04

bin/test.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ set -e
66
mvn clean -Pspark-3.3 -Pscala-2.12
77
mvn test -Pspark-3.3 -Pscala-2.12
88

9-
mvn clean -Pspark-3.3 -Pscala-2.13
10-
mvn test -Pspark-3.3 -Pscala-2.13
11-
129
mvn clean -Pspark-3.4 -Pscala-2.12
1310
mvn test -Pspark-3.4 -Pscala-2.12
1411

15-
mvn clean -Pspark-3.4 -Pscala-2.13
16-
mvn test -Pspark-3.4 -Pscala-2.13
17-
1812
mvn clean -Pspark-3.5 -Pscala-2.12
1913
mvn test -Pspark-3.5 -Pscala-2.12
2014

15+
16+
mvn clean -Pspark-3.3 -Pscala-2.13
17+
mvn test -Pspark-3.3 -Pscala-2.13
18+
19+
mvn clean -Pspark-3.4 -Pscala-2.13
20+
mvn test -Pspark-3.4 -Pscala-2.13
21+
2122
mvn clean -Pspark-3.5 -Pscala-2.13
2223
mvn test -Pspark-3.5 -Pscala-2.13

integration-tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>com.arangodb</groupId>
3333
<artifactId>jackson-serde-json</artifactId>
34-
<version>7.1.0</version>
34+
<version>7.9.0</version>
3535
<scope>test</scope>
3636
<exclusions>
3737
<exclusion>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.arangodb</groupId>
5353
<artifactId>jackson-serde-vpack</artifactId>
54-
<version>7.1.0</version>
54+
<version>7.9.0</version>
5555
<scope>test</scope>
5656
<exclusions>
5757
<exclusion>

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,13 @@
180180
<dependency>
181181
<groupId>com.arangodb</groupId>
182182
<artifactId>arangodb-java-driver-shaded</artifactId>
183-
<version>7.7.1</version>
183+
<version>7.9.0</version>
184+
<scope>compile</scope>
185+
</dependency>
186+
<dependency>
187+
<groupId>com.arangodb</groupId>
188+
<artifactId>velocypack</artifactId>
189+
<version>3.1.0</version>
184190
<scope>compile</scope>
185191
</dependency>
186192
<dependency>

0 commit comments

Comments
 (0)