File tree 16 files changed +38
-15
lines changed
src/test/java/com/arangodb
16 files changed +38
-15
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,29 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 7.4.0] - 2023-12-20
10
+
11
+ ### Added
12
+
13
+ - added new methods to remove graph definitions and vertex collections, to align the naming with the documentation (DE-729)
14
+ - added support to Jackson 2.16 (DE-735)
15
+
16
+ ### Changed
17
+
18
+ - deprecated ArangoDB.Builder.asyncExecutor() (DE-726)
19
+ - retry requests on response code 503 (DE-55, #530 )
20
+ - changed ` ArangoCursor#close() ` and ` ArangoCursorAsync#close() ` to be idempotent (DE-727, #528 )
21
+ - changed default Jackson dependencies versions to 2.16 (DE-735)
22
+
23
+ ### Fixed
24
+
25
+ - fixed exception handling on sending HTTP requests
26
+ - fixed management of hosts marked for deletion (DE-723, #384 )
27
+ - fixed VST resilience (#529 , DE-725)
28
+ - fixed failover with round-robin load balancing (DE-724)
29
+ - fixed init cause of ` ArangoDBException `
30
+
31
+
9
32
## [ 7.3.0] - 2023-11-22
10
33
11
34
- changed types of documents and errors in ` com.arangodb.entity.MultiDocumentEntity ` to ` java.util.List `
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >com.arangodb</groupId >
8
8
<artifactId >arangodb-java-driver-parent</artifactId >
9
- <version >7.3 .0</version >
9
+ <version >7.4 .0</version >
10
10
</parent >
11
11
12
12
<name >core</name >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<artifactId >arangodb-java-driver-parent</artifactId >
9
9
<groupId >com.arangodb</groupId >
10
- <version >7.3 .0</version >
10
+ <version >7.4 .0</version >
11
11
</parent >
12
12
13
13
<name >arangodb-java-driver</name >
Original file line number Diff line number Diff line change 11
11
12
12
class UserAgentAsyncTest extends BaseJunit5 {
13
13
14
- private static final String EXPECTED_VERSION = "7.3 .0" ;
14
+ private static final String EXPECTED_VERSION = "7.4 .0" ;
15
15
16
16
@ Test
17
17
void packageVersion () {
Original file line number Diff line number Diff line change 9
9
10
10
class UserAgentTest extends BaseJunit5 {
11
11
12
- private static final String EXPECTED_VERSION = "7.3 .0" ;
12
+ private static final String EXPECTED_VERSION = "7.4 .0" ;
13
13
14
14
@ Test
15
15
void packageVersion () {
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >com.arangodb</groupId >
8
8
<artifactId >arangodb-java-driver-parent</artifactId >
9
- <version >7.3 .0</version >
9
+ <version >7.4 .0</version >
10
10
</parent >
11
11
12
12
<name >http-protocol</name >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >com.arangodb</groupId >
9
9
<artifactId >arangodb-java-driver-parent</artifactId >
10
- <version >7.3 .0</version >
10
+ <version >7.4 .0</version >
11
11
</parent >
12
12
13
13
<artifactId >integration-tests</artifactId >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >com.arangodb</groupId >
8
8
<artifactId >arangodb-java-driver-parent</artifactId >
9
- <version >7.3 .0</version >
9
+ <version >7.4 .0</version >
10
10
</parent >
11
11
12
12
<name >jackson-serde-json</name >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >com.arangodb</groupId >
9
9
<artifactId >arangodb-java-driver-parent</artifactId >
10
- <version >7.3 .0</version >
10
+ <version >7.4 .0</version >
11
11
</parent >
12
12
13
13
<name >jackson-serde-vpack</name >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >com.arangodb</groupId >
8
8
<artifactId >arangodb-java-driver-parent</artifactId >
9
- <version >7.3 .0</version >
9
+ <version >7.4 .0</version >
10
10
</parent >
11
11
12
12
<name >jsonb-serde</name >
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.arangodb</groupId >
7
7
<artifactId >arangodb-java-driver-parent</artifactId >
8
- <version >7.3 .0</version >
8
+ <version >7.4 .0</version >
9
9
<inceptionYear >2016</inceptionYear >
10
10
<modules >
11
11
<module >core</module >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >arangodb-java-driver-parent</artifactId >
7
7
<groupId >com.arangodb</groupId >
8
- <version >7.3 .0</version >
8
+ <version >7.4 .0</version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >com.arangodb</groupId >
9
9
<artifactId >arangodb-java-driver-parent</artifactId >
10
- <version >7.3 .0</version >
10
+ <version >7.4 .0</version >
11
11
</parent >
12
12
13
13
<name >arangodb-java-driver-shaded</name >
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ repositories {
10
10
}
11
11
12
12
dependencies {
13
- implementation ' com.arangodb:arangodb-java-driver:7.3 .0'
13
+ implementation ' com.arangodb:arangodb-java-driver:7.4 .0'
14
14
}
Original file line number Diff line number Diff line change 19
19
<dependency >
20
20
<groupId >com.arangodb</groupId >
21
21
<artifactId >arangodb-java-driver</artifactId >
22
- <version >7.3 .0</version >
22
+ <version >7.4 .0</version >
23
23
</dependency >
24
24
</dependencies >
25
25
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >com.arangodb</groupId >
8
8
<artifactId >arangodb-java-driver-parent</artifactId >
9
- <version >7.3 .0</version >
9
+ <version >7.4 .0</version >
10
10
</parent >
11
11
12
12
<name >vst-protocol</name >
You can’t perform that action at this time.
0 commit comments