From 5e164dc68b9a35bff5ce7f345f34875fdc3ec794 Mon Sep 17 00:00:00 2001 From: Michele Rastelli Date: Tue, 22 Oct 2024 22:40:59 +0200 Subject: [PATCH] v7.10.0 --- ChangeLog.md | 6 ++++++ core/pom.xml | 2 +- driver/pom.xml | 2 +- http-protocol/pom.xml | 2 +- jackson-serde-json/pom.xml | 2 +- jackson-serde-vpack/pom.xml | 2 +- jsonb-serde/pom.xml | 2 +- pom.xml | 2 +- release-parent/pom.xml | 2 +- shaded/pom.xml | 2 +- test-functional/pom.xml | 2 +- .../src/test/java/com/arangodb/UserAgentTest.java | 2 +- test-non-functional/pom.xml | 2 +- test-parent/pom.xml | 2 +- test-resilience/pom.xml | 2 +- tutorial/gradle/build.gradle | 2 +- tutorial/maven/pom.xml | 2 +- vst-protocol/pom.xml | 2 +- 18 files changed, 23 insertions(+), 17 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 1e20a31c5..9cad67091 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a ## [Unreleased] +## [7.10.0] - 2024-10-22 + +- udpated Jackson to version `2.18` (#581, DE-877) +- added missing statistics to `CursorStats` (#580, DE-876) +- fixed type of `AqlExecutionExplainEntity.warnings` (#579, DE-886) + ## [7.9.0] - 2024-09-20 - updated `velocypack` to version `3.1.0` diff --git a/core/pom.xml b/core/pom.xml index da0678bba..4eace9bdd 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.9.0 + 7.10.0 core diff --git a/driver/pom.xml b/driver/pom.xml index c43be9efe..e6d067680 100644 --- a/driver/pom.xml +++ b/driver/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.9.0 + 7.10.0 arangodb-java-driver diff --git a/http-protocol/pom.xml b/http-protocol/pom.xml index 7b66c86ab..7a8e90328 100644 --- a/http-protocol/pom.xml +++ b/http-protocol/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.9.0 + 7.10.0 http-protocol diff --git a/jackson-serde-json/pom.xml b/jackson-serde-json/pom.xml index 25d9ac3a8..d5beb16a1 100644 --- a/jackson-serde-json/pom.xml +++ b/jackson-serde-json/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.9.0 + 7.10.0 jackson-serde-json diff --git a/jackson-serde-vpack/pom.xml b/jackson-serde-vpack/pom.xml index bf4c3ff3a..aba611ba9 100644 --- a/jackson-serde-vpack/pom.xml +++ b/jackson-serde-vpack/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.9.0 + 7.10.0 jackson-serde-vpack diff --git a/jsonb-serde/pom.xml b/jsonb-serde/pom.xml index 08289c047..17f437e0c 100644 --- a/jsonb-serde/pom.xml +++ b/jsonb-serde/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.9.0 + 7.10.0 jsonb-serde diff --git a/pom.xml b/pom.xml index 55e070882..2caf6123e 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.arangodb arangodb-java-driver-parent - 7.9.0 + 7.10.0 2016 release-parent diff --git a/release-parent/pom.xml b/release-parent/pom.xml index 56ce54649..799861c37 100644 --- a/release-parent/pom.xml +++ b/release-parent/pom.xml @@ -6,7 +6,7 @@ com.arangodb arangodb-java-driver-parent - 7.9.0 + 7.10.0 pom diff --git a/shaded/pom.xml b/shaded/pom.xml index ed22d2288..3386da2fd 100644 --- a/shaded/pom.xml +++ b/shaded/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.9.0 + 7.10.0 arangodb-java-driver-shaded diff --git a/test-functional/pom.xml b/test-functional/pom.xml index 6ec1d56f4..bb960521d 100644 --- a/test-functional/pom.xml +++ b/test-functional/pom.xml @@ -8,7 +8,7 @@ ../test-parent com.arangodb test-parent - 7.9.0 + 7.10.0 test-functional diff --git a/test-functional/src/test/java/com/arangodb/UserAgentTest.java b/test-functional/src/test/java/com/arangodb/UserAgentTest.java index 7bdd6ac73..63e2ea555 100644 --- a/test-functional/src/test/java/com/arangodb/UserAgentTest.java +++ b/test-functional/src/test/java/com/arangodb/UserAgentTest.java @@ -10,7 +10,7 @@ class UserAgentTest extends BaseJunit5 { - private static final String EXPECTED_VERSION = "7.9.0"; + private static final String EXPECTED_VERSION = "7.10.0"; private static final boolean SHADED = Boolean.parseBoolean(System.getProperty("shaded")); diff --git a/test-non-functional/pom.xml b/test-non-functional/pom.xml index 5b031717a..700d6af77 100644 --- a/test-non-functional/pom.xml +++ b/test-non-functional/pom.xml @@ -8,7 +8,7 @@ ../test-parent com.arangodb test-parent - 7.9.0 + 7.10.0 test-non-functional diff --git a/test-parent/pom.xml b/test-parent/pom.xml index 1a0dda068..b6e977667 100644 --- a/test-parent/pom.xml +++ b/test-parent/pom.xml @@ -7,7 +7,7 @@ com.arangodb arangodb-java-driver-parent - 7.9.0 + 7.10.0 pom diff --git a/test-resilience/pom.xml b/test-resilience/pom.xml index 6c4a56e3a..fbd7efdd1 100644 --- a/test-resilience/pom.xml +++ b/test-resilience/pom.xml @@ -6,7 +6,7 @@ ../test-parent com.arangodb test-parent - 7.9.0 + 7.10.0 4.0.0 diff --git a/tutorial/gradle/build.gradle b/tutorial/gradle/build.gradle index 485f608a6..39fe2fa06 100644 --- a/tutorial/gradle/build.gradle +++ b/tutorial/gradle/build.gradle @@ -12,7 +12,7 @@ repositories { } dependencies { - implementation 'com.arangodb:arangodb-java-driver:7.9.0' + implementation 'com.arangodb:arangodb-java-driver:7.10.0' } ext { diff --git a/tutorial/maven/pom.xml b/tutorial/maven/pom.xml index 345f2e73b..7f8f634f5 100644 --- a/tutorial/maven/pom.xml +++ b/tutorial/maven/pom.xml @@ -19,7 +19,7 @@ com.arangodb arangodb-java-driver - 7.9.0 + 7.10.0 diff --git a/vst-protocol/pom.xml b/vst-protocol/pom.xml index 6b889afdf..19f131b6c 100644 --- a/vst-protocol/pom.xml +++ b/vst-protocol/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.9.0 + 7.10.0 vst-protocol