Skip to content

Commit 6e9ba14

Browse files
author
michele
committed
v6.0.1
1 parent b692dca commit 6e9ba14

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

ChangeLog.md

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
9+
## [6.0.1] - 2019-08-29
10+
11+
### Added
12+
13+
- updated maven dependencies
14+
15+
### Fixed
16+
17+
- custom serde not always used
18+
- `documentExists()` and `getDocument` behaviour on non existing `transactionId`
19+
720
## [6.0.0] - 2019-08-20
821

922
### Added

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.arangodb</groupId>
77
<artifactId>arangodb-java-driver</artifactId>
8-
<version>6.0.1-SNAPSHOT</version>
8+
<version>6.0.1</version>
99
<inceptionYear>2016</inceptionYear>
1010
<packaging>jar</packaging>
1111

src/test/java/com/arangodb/ArangoEdgeCollectionTest.java

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import static org.hamcrest.Matchers.nullValue;
2828
import static org.junit.Assert.assertThat;
2929
import static org.junit.Assert.fail;
30+
import static org.junit.Assume.assumeTrue;
3031

3132
import java.util.ArrayList;
3233
import java.util.Arrays;
@@ -131,6 +132,9 @@ public void insertEdgeUpdateRev() {
131132

132133
@Test
133134
public void insertEdgeViolatingUniqueConstraint() {
135+
// FIXME: remove once fix is backported to 3.4
136+
assumeTrue(requireVersion(3, 5));
137+
134138
db.collection(EDGE_COLLECTION_NAME)
135139
.ensureSkiplistIndex(Arrays.asList("_from", "_to"), new SkiplistIndexOptions().unique(true));
136140

src/test/java/com/arangodb/ArangoVertexCollectionTest.java

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
import static org.hamcrest.Matchers.*;
3838
import static org.junit.Assert.assertThat;
3939
import static org.junit.Assert.fail;
40+
import static org.junit.Assume.assumeTrue;
4041

4142
/**
4243
* @author Mark Vollmary
@@ -98,6 +99,9 @@ public void insertVertex() {
9899

99100
@Test
100101
public void insertVertexViolatingUniqueConstraint() {
102+
// FIXME: remove once fix is backported to 3.4
103+
assumeTrue(requireVersion(3, 5));
104+
101105
db.collection(COLLECTION_NAME)
102106
.ensureSkiplistIndex(Collections.singletonList("properties"), new SkiplistIndexOptions().unique(true));
103107

0 commit comments

Comments
 (0)