From bafed6879c2483b983918fa12dca06c240105bee Mon Sep 17 00:00:00 2001 From: Michele Rastelli Date: Thu, 9 Jan 2025 21:12:01 +0100 Subject: [PATCH] v7.16.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-perf/pom.xml | 2 +- test-resilience/pom.xml | 2 +- tutorial/gradle/build.gradle | 2 +- tutorial/maven/pom.xml | 2 +- vst-protocol/pom.xml | 2 +- 19 files changed, 24 insertions(+), 18 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 10a102c18..b69a0d9da 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.16.0] - 2025-01-09 + +- improved deserialization of `RawBytes` and `RawJson` (#592, DE-969) +- added support to Jakarta JSON-P data types (#593, DE-968) +- fixed ArangoSearch `PrimarySort` serialization + ## [7.15.0] - 2024-12-10 - added missing collection options (#590, DE-961) diff --git a/core/pom.xml b/core/pom.xml index 1780d442d..3f8732e9d 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.15.0 + 7.16.0 core diff --git a/driver/pom.xml b/driver/pom.xml index 54583d3f4..6095e1516 100644 --- a/driver/pom.xml +++ b/driver/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.15.0 + 7.16.0 arangodb-java-driver diff --git a/http-protocol/pom.xml b/http-protocol/pom.xml index 5c803a0c2..c2508c967 100644 --- a/http-protocol/pom.xml +++ b/http-protocol/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.15.0 + 7.16.0 http-protocol diff --git a/jackson-serde-json/pom.xml b/jackson-serde-json/pom.xml index f21b1da95..96a1564bf 100644 --- a/jackson-serde-json/pom.xml +++ b/jackson-serde-json/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.15.0 + 7.16.0 jackson-serde-json diff --git a/jackson-serde-vpack/pom.xml b/jackson-serde-vpack/pom.xml index fd3715643..2bf5c5838 100644 --- a/jackson-serde-vpack/pom.xml +++ b/jackson-serde-vpack/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.15.0 + 7.16.0 jackson-serde-vpack diff --git a/jsonb-serde/pom.xml b/jsonb-serde/pom.xml index a945460f1..b6cd2870e 100644 --- a/jsonb-serde/pom.xml +++ b/jsonb-serde/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.15.0 + 7.16.0 jsonb-serde diff --git a/pom.xml b/pom.xml index 86af87cc1..e1debf61a 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.arangodb arangodb-java-driver-parent - 7.15.0 + 7.16.0 2016 release-parent diff --git a/release-parent/pom.xml b/release-parent/pom.xml index baf9cc74f..f82dc8d81 100644 --- a/release-parent/pom.xml +++ b/release-parent/pom.xml @@ -6,7 +6,7 @@ com.arangodb arangodb-java-driver-parent - 7.15.0 + 7.16.0 pom diff --git a/shaded/pom.xml b/shaded/pom.xml index a8010970d..3f9315b57 100644 --- a/shaded/pom.xml +++ b/shaded/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.15.0 + 7.16.0 arangodb-java-driver-shaded diff --git a/test-functional/pom.xml b/test-functional/pom.xml index d529cea37..3563f44a7 100644 --- a/test-functional/pom.xml +++ b/test-functional/pom.xml @@ -8,7 +8,7 @@ ../test-parent com.arangodb test-parent - 7.15.0 + 7.16.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 be854e2d6..740f48f5f 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.15.0"; + private static final String EXPECTED_VERSION = "7.16.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 30cc0c752..7f422d7fd 100644 --- a/test-non-functional/pom.xml +++ b/test-non-functional/pom.xml @@ -8,7 +8,7 @@ ../test-parent com.arangodb test-parent - 7.15.0 + 7.16.0 test-non-functional diff --git a/test-parent/pom.xml b/test-parent/pom.xml index f3df40b11..c731b64e9 100644 --- a/test-parent/pom.xml +++ b/test-parent/pom.xml @@ -7,7 +7,7 @@ com.arangodb arangodb-java-driver-parent - 7.15.0 + 7.16.0 pom diff --git a/test-perf/pom.xml b/test-perf/pom.xml index 77c0429c5..610759e1f 100644 --- a/test-perf/pom.xml +++ b/test-perf/pom.xml @@ -7,7 +7,7 @@ ../test-parent com.arangodb test-parent - 7.15.0 + 7.16.0 test-perf diff --git a/test-resilience/pom.xml b/test-resilience/pom.xml index 962724df1..658d2e158 100644 --- a/test-resilience/pom.xml +++ b/test-resilience/pom.xml @@ -6,7 +6,7 @@ ../test-parent com.arangodb test-parent - 7.15.0 + 7.16.0 4.0.0 diff --git a/tutorial/gradle/build.gradle b/tutorial/gradle/build.gradle index 12215e06f..9cd267567 100644 --- a/tutorial/gradle/build.gradle +++ b/tutorial/gradle/build.gradle @@ -12,7 +12,7 @@ repositories { } dependencies { - implementation 'com.arangodb:arangodb-java-driver:7.15.0' + implementation 'com.arangodb:arangodb-java-driver:7.16.0' } ext { diff --git a/tutorial/maven/pom.xml b/tutorial/maven/pom.xml index b75870ef4..d8abe4204 100644 --- a/tutorial/maven/pom.xml +++ b/tutorial/maven/pom.xml @@ -19,7 +19,7 @@ com.arangodb arangodb-java-driver - 7.15.0 + 7.16.0 diff --git a/vst-protocol/pom.xml b/vst-protocol/pom.xml index e1cb5f92a..af569055f 100644 --- a/vst-protocol/pom.xml +++ b/vst-protocol/pom.xml @@ -8,7 +8,7 @@ ../release-parent com.arangodb release-parent - 7.15.0 + 7.16.0 vst-protocol