Skip to content

Commit f85831c

Browse files
committed
v1.2.0
1 parent 2fe6085 commit f85831c

File tree

8 files changed

+21
-8
lines changed

8 files changed

+21
-8
lines changed

ChangeLog.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

66
## [Unreleased]
77

8+
## [1.2.0] - 2022-03-18
9+
10+
- use `overwriteMode=ignore` if save mode is other than `Append` (#26)
11+
- require non-nullable string fields `_from` and `_to` to write to edge collections (#25)
12+
- configurable backoff retry delay for write requests (`retry.minDelay` and `retry.maxDelay`), disabled by default (#24)
13+
- retry only if schema has non-nullable field `_key` (#23)
14+
- retry on connection exceptions
15+
- added `retry.maxAttempts` config param (#20)
16+
- increased default timeout to 5 minutes
17+
- reject writing decimal types with json content type (#18)
18+
- report records causing write errors (#17)
19+
- improved logging about connections and write tasks
20+
821
## [1.1.1] - 2022-02-28
922

1023
- retry timeout exception in truncate requests (#16)

arangodb-spark-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>arangodb-spark-datasource</artifactId>
77
<groupId>com.arangodb</groupId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

arangodb-spark-datasource-2.4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>arangodb-spark-datasource</artifactId>
77
<groupId>com.arangodb</groupId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

arangodb-spark-datasource-3.1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>arangodb-spark-datasource</artifactId>
77
<groupId>com.arangodb</groupId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This demo requires:
2323
Set environment variables:
2424

2525
```shell
26-
export ARANGO_SPARK_VERSION=1.2.0-SNAPSHOT
26+
export ARANGO_SPARK_VERSION=1.2.0
2727
```
2828

2929
Start ArangoDB cluster with docker:

demo/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.arangodb</groupId>
88
<artifactId>demo</artifactId>
9-
<version>1.2.0-SNAPSHOT</version>
9+
<version>1.2.0</version>
1010

1111
<properties>
1212
<maven.compiler.source>1.8</maven.compiler.source>
@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>com.arangodb</groupId>
5757
<artifactId>arangodb-spark-datasource-${spark.compat.version}_${scala.compat.version}</artifactId>
58-
<version>1.2.0-SNAPSHOT</version>
58+
<version>1.2.0</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.apache.spark</groupId>

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>arangodb-spark-datasource</artifactId>
77
<groupId>com.arangodb</groupId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.arangodb</groupId>
66
<artifactId>arangodb-spark-datasource</artifactId>
77
<packaging>pom</packaging>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99

1010
<name>${project.artifactId}</name>
1111
<description>ArangoDB Datasource for Apache Spark</description>

0 commit comments

Comments
 (0)