Skip to content

Commit a2cd855

Browse files
committed
v7.4.0
1 parent a278e5b commit a2cd855

File tree

16 files changed

+38
-15
lines changed

16 files changed

+38
-15
lines changed

ChangeLog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

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+
932
## [7.3.0] - 2023-11-22
1033

1134
- changed types of documents and errors in `com.arangodb.entity.MultiDocumentEntity` to `java.util.List`

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.arangodb</groupId>
88
<artifactId>arangodb-java-driver-parent</artifactId>
9-
<version>7.3.0</version>
9+
<version>7.4.0</version>
1010
</parent>
1111

1212
<name>core</name>

driver/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>arangodb-java-driver-parent</artifactId>
99
<groupId>com.arangodb</groupId>
10-
<version>7.3.0</version>
10+
<version>7.4.0</version>
1111
</parent>
1212

1313
<name>arangodb-java-driver</name>

driver/src/test/java/com/arangodb/UserAgentAsyncTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class UserAgentAsyncTest extends BaseJunit5 {
1313

14-
private static final String EXPECTED_VERSION = "7.3.0";
14+
private static final String EXPECTED_VERSION = "7.4.0";
1515

1616
@Test
1717
void packageVersion() {

driver/src/test/java/com/arangodb/UserAgentTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class UserAgentTest extends BaseJunit5 {
1111

12-
private static final String EXPECTED_VERSION = "7.3.0";
12+
private static final String EXPECTED_VERSION = "7.4.0";
1313

1414
@Test
1515
void packageVersion() {

http/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.arangodb</groupId>
88
<artifactId>arangodb-java-driver-parent</artifactId>
9-
<version>7.3.0</version>
9+
<version>7.4.0</version>
1010
</parent>
1111

1212
<name>http-protocol</name>

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.arangodb</groupId>
99
<artifactId>arangodb-java-driver-parent</artifactId>
10-
<version>7.3.0</version>
10+
<version>7.4.0</version>
1111
</parent>
1212

1313
<artifactId>integration-tests</artifactId>

jackson-serde-json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.arangodb</groupId>
88
<artifactId>arangodb-java-driver-parent</artifactId>
9-
<version>7.3.0</version>
9+
<version>7.4.0</version>
1010
</parent>
1111

1212
<name>jackson-serde-json</name>

jackson-serde-vpack/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.arangodb</groupId>
99
<artifactId>arangodb-java-driver-parent</artifactId>
10-
<version>7.3.0</version>
10+
<version>7.4.0</version>
1111
</parent>
1212

1313
<name>jackson-serde-vpack</name>

jsonb-serde/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.arangodb</groupId>
88
<artifactId>arangodb-java-driver-parent</artifactId>
9-
<version>7.3.0</version>
9+
<version>7.4.0</version>
1010
</parent>
1111

1212
<name>jsonb-serde</name>

0 commit comments

Comments
 (0)