Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rashtao committed Jan 5, 2024
1 parent 79a680f commit 1fe0764
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [1.2.0] - 2024-01-05

- fixed support for `VST` communication protocol (DE-734, #31)
- fixed support for `VPACK` content type (DE-734, #31)
- updated ArangoDB Java Driver to version `7.4` (DE-734, #31)
- use the shaded variant of ArangoDB Java Driver (DE-734, #31)

## [1.1.0] - 2023-11-24

- added periodical connections rebalancing (#27)
Expand All @@ -16,5 +23,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

- initial release

[unreleased]: https://github.com/arangodb/kafka-connect-arangodb/compare/v1.1.0...HEAD
[unreleased]: https://github.com/arangodb/kafka-connect-arangodb/compare/v1.2.0...HEAD
[1.2.0]: https://github.com/arangodb/kafka-connect-arangodb/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/arangodb/kafka-connect-arangodb/compare/v1.0.0...v1.1.0
2 changes: 1 addition & 1 deletion demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Set package version:

```shell
export PACKAGE_VERSION=1.1.0
export PACKAGE_VERSION=1.2.0
```

Create the Docker network:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.arangodb</groupId>
<artifactId>kafka-connect-arangodb</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
<packaging>jar</packaging>
<inceptionYear>2023</inceptionYear>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public class ArangoSinkConnectorTest {
@Test
void version(){
String version = new ArangoSinkConnector().version();
assertThat(version).isEqualTo("1.1.0");
assertThat(version).isEqualTo("1.2.0");
}
}
2 changes: 1 addition & 1 deletion src/test/java/com/arangodb/kafka/ArangoSinkTaskTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public class ArangoSinkTaskTest {
@Test
void version(){
String version = new ArangoSinkTask().version();
assertThat(version).isEqualTo("1.1.0");
assertThat(version).isEqualTo("1.2.0");
}
}

0 comments on commit 1fe0764

Please sign in to comment.