Skip to content

Commit 21b2314

Browse files
committed
v7.17.1
1 parent b27ef40 commit 21b2314

File tree

19 files changed

+23
-18
lines changed

19 files changed

+23
-18
lines changed

ChangeLog.md

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

77
## [Unreleased]
88

9+
## [7.17.1] - 2025-03-27
10+
11+
- implemented `equals()` and `hashCode()` for all entity classes
12+
- fixed overlapping resources in shaded package
13+
914
## [7.17.0] - 2025-01-27
1015

1116
- allow construct ArangoConfigProperties from `java.util.Properties` (DE-976)

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../release-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>release-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

1414
<name>core</name>

driver/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../release-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>release-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

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

http-protocol/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../release-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>release-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

1414
<name>http-protocol</name>

jackson-serde-json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../release-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>release-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

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

jackson-serde-vpack/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../release-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>release-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

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

jsonb-serde/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../release-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>release-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

1414
<name>jsonb-serde</name>

pom.xml

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

66
<groupId>com.arangodb</groupId>
77
<artifactId>arangodb-java-driver-parent</artifactId>
8-
<version>7.17.0</version>
8+
<version>7.17.1</version>
99
<inceptionYear>2016</inceptionYear>
1010
<modules>
1111
<module>release-parent</module>

release-parent/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.17.0</version>
9+
<version>7.17.1</version>
1010
</parent>
1111
<packaging>pom</packaging>
1212

shaded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../release-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>release-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

1414
<name>arangodb-java-driver-shaded</name>

test-functional/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../test-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>test-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

1414
<artifactId>test-functional</artifactId>

test-functional/src/test/java/com/arangodb/UserAgentTest.java

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

1111
class UserAgentTest extends BaseJunit5 {
1212

13-
private static final String EXPECTED_VERSION = "7.17.0";
13+
private static final String EXPECTED_VERSION = "7.17.1";
1414

1515
private static final boolean SHADED = Boolean.parseBoolean(System.getProperty("shaded"));
1616

test-non-functional/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../test-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>test-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

1414
<artifactId>test-non-functional</artifactId>

test-parent/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.17.0</version>
10+
<version>7.17.1</version>
1111
</parent>
1212
<packaging>pom</packaging>
1313

test-perf/pom.xml

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

1313
<artifactId>test-perf</artifactId>

test-resilience/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<relativePath>../test-parent</relativePath>
77
<groupId>com.arangodb</groupId>
88
<artifactId>test-parent</artifactId>
9-
<version>7.17.0</version>
9+
<version>7.17.1</version>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

tutorial/gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repositories {
1212
}
1313

1414
dependencies {
15-
implementation 'com.arangodb:arangodb-java-driver:7.17.0'
15+
implementation 'com.arangodb:arangodb-java-driver:7.17.1'
1616
}
1717

1818
ext {

tutorial/maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>com.arangodb</groupId>
2121
<artifactId>arangodb-java-driver</artifactId>
22-
<version>7.17.0</version>
22+
<version>7.17.1</version>
2323
</dependency>
2424
</dependencies>
2525

vst-protocol/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../release-parent</relativePath>
99
<groupId>com.arangodb</groupId>
1010
<artifactId>release-parent</artifactId>
11-
<version>7.17.0</version>
11+
<version>7.17.1</version>
1212
</parent>
1313

1414
<name>vst-protocol</name>

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy