From d7cfec51a3a4f5d81260d5aa3e026efe4b9addbb Mon Sep 17 00:00:00 2001 From: Michele Rastelli Date: Thu, 31 Oct 2024 21:46:36 +0100 Subject: [PATCH] v7.11.0 --- ChangeLog.md | 4 ++++ 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 +- test-functional/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, 21 insertions(+), 17 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 9cad67091..6cc3501c2 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a ## [Unreleased] +## [7.11.0] - 2024-10-31 + +- added support to HTTP proxies (#584, DE-930) + ## [7.10.0] - 2024-10-22 - udpated Jackson to version `2.18` (#581, DE-877) diff --git a/core/pom.xml b/core/pom.xml index 4eace9bdd..0514b28d8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.10.0 + 7.11.0 core diff --git a/driver/pom.xml b/driver/pom.xml index e6d067680..e339c2fe8 100644 --- a/driver/pom.xml +++ b/driver/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.10.0 + 7.11.0 arangodb-java-driver diff --git a/http-protocol/pom.xml b/http-protocol/pom.xml index 7a8e90328..e4f70d54f 100644 --- a/http-protocol/pom.xml +++ b/http-protocol/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.10.0 + 7.11.0 http-protocol diff --git a/jackson-serde-json/pom.xml b/jackson-serde-json/pom.xml index d5beb16a1..d7d9faf4f 100644 --- a/jackson-serde-json/pom.xml +++ b/jackson-serde-json/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.10.0 + 7.11.0 jackson-serde-json diff --git a/jackson-serde-vpack/pom.xml b/jackson-serde-vpack/pom.xml index aba611ba9..0c5508479 100644 --- a/jackson-serde-vpack/pom.xml +++ b/jackson-serde-vpack/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.10.0 + 7.11.0 jackson-serde-vpack diff --git a/jsonb-serde/pom.xml b/jsonb-serde/pom.xml index 17f437e0c..7d17d8f7e 100644 --- a/jsonb-serde/pom.xml +++ b/jsonb-serde/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.10.0 + 7.11.0 jsonb-serde diff --git a/pom.xml b/pom.xml index 2caf6123e..57684d408 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.arangodb arangodb-java-driver-parent - 7.10.0 + 7.11.0 2016 release-parent diff --git a/release-parent/pom.xml b/release-parent/pom.xml index 799861c37..605260a89 100644 --- a/release-parent/pom.xml +++ b/release-parent/pom.xml @@ -6,7 +6,7 @@ com.arangodb arangodb-java-driver-parent - 7.10.0 + 7.11.0 pom diff --git a/shaded/pom.xml b/shaded/pom.xml index 3386da2fd..de988462d 100644 --- a/shaded/pom.xml +++ b/shaded/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.10.0 + 7.11.0 arangodb-java-driver-shaded diff --git a/test-functional/pom.xml b/test-functional/pom.xml index ebe379394..ebaa82198 100644 --- a/test-functional/pom.xml +++ b/test-functional/pom.xml @@ -8,7 +8,7 @@ ../test-parent com.arangodb test-parent - 7.10.0 + 7.11.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 63e2ea555..29db66d03 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.10.0"; + private static final String EXPECTED_VERSION = "7.11.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 700d6af77..74a4868e9 100644 --- a/test-non-functional/pom.xml +++ b/test-non-functional/pom.xml @@ -8,7 +8,7 @@ ../test-parent com.arangodb test-parent - 7.10.0 + 7.11.0 test-non-functional diff --git a/test-parent/pom.xml b/test-parent/pom.xml index aae41facc..2c997f5ba 100644 --- a/test-parent/pom.xml +++ b/test-parent/pom.xml @@ -7,7 +7,7 @@ com.arangodb arangodb-java-driver-parent - 7.10.0 + 7.11.0 pom diff --git a/test-resilience/pom.xml b/test-resilience/pom.xml index fbd7efdd1..0d6ffce30 100644 --- a/test-resilience/pom.xml +++ b/test-resilience/pom.xml @@ -6,7 +6,7 @@ ../test-parent com.arangodb test-parent - 7.10.0 + 7.11.0 4.0.0 diff --git a/tutorial/gradle/build.gradle b/tutorial/gradle/build.gradle index 39fe2fa06..1f725073c 100644 --- a/tutorial/gradle/build.gradle +++ b/tutorial/gradle/build.gradle @@ -12,7 +12,7 @@ repositories { } dependencies { - implementation 'com.arangodb:arangodb-java-driver:7.10.0' + implementation 'com.arangodb:arangodb-java-driver:7.11.0' } ext { diff --git a/tutorial/maven/pom.xml b/tutorial/maven/pom.xml index 7f8f634f5..d431b2bed 100644 --- a/tutorial/maven/pom.xml +++ b/tutorial/maven/pom.xml @@ -19,7 +19,7 @@ com.arangodb arangodb-java-driver - 7.10.0 + 7.11.0 diff --git a/vst-protocol/pom.xml b/vst-protocol/pom.xml index 19f131b6c..4198140f8 100644 --- a/vst-protocol/pom.xml +++ b/vst-protocol/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.10.0 + 7.11.0 vst-protocol