File tree Expand file tree Collapse file tree 5 files changed +13
-5
lines changed
src/test/java/com/arangodb/kafka Expand file tree Collapse file tree 5 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
5
5
6
6
## [ Unreleased]
7
7
8
+ ## [ 1.2.0] - 2024-01-05
9
+
10
+ - fixed support for ` VST ` communication protocol (DE-734, #31 )
11
+ - fixed support for ` VPACK ` content type (DE-734, #31 )
12
+ - updated ArangoDB Java Driver to version ` 7.4 ` (DE-734, #31 )
13
+ - use the shaded variant of ArangoDB Java Driver (DE-734, #31 )
14
+
8
15
## [ 1.1.0] - 2023-11-24
9
16
10
17
- added periodical connections rebalancing (#27 )
@@ -16,5 +23,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
16
23
17
24
- initial release
18
25
19
- [ unreleased ] : https://github.com/arangodb/kafka-connect-arangodb/compare/v1.1.0...HEAD
26
+ [ unreleased ] : https://github.com/arangodb/kafka-connect-arangodb/compare/v1.2.0...HEAD
27
+ [ 1.2.0 ] : https://github.com/arangodb/kafka-connect-arangodb/compare/v1.1.0...v1.2.0
20
28
[ 1.1.0 ] : https://github.com/arangodb/kafka-connect-arangodb/compare/v1.0.0...v1.1.0
Original file line number Diff line number Diff line change 5
5
Set package version:
6
6
7
7
``` shell
8
- export PACKAGE_VERSION=1.1 .0
8
+ export PACKAGE_VERSION=1.2 .0
9
9
```
10
10
11
11
Create the Docker network:
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >com.arangodb</groupId >
8
8
<artifactId >kafka-connect-arangodb</artifactId >
9
- <version >1.1 .0</version >
9
+ <version >1.2 .0</version >
10
10
<packaging >jar</packaging >
11
11
<inceptionYear >2023</inceptionYear >
12
12
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ public class ArangoSinkConnectorTest {
8
8
@ Test
9
9
void version (){
10
10
String version = new ArangoSinkConnector ().version ();
11
- assertThat (version ).isEqualTo ("1.1 .0" );
11
+ assertThat (version ).isEqualTo ("1.2 .0" );
12
12
}
13
13
}
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ public class ArangoSinkTaskTest {
8
8
@ Test
9
9
void version (){
10
10
String version = new ArangoSinkTask ().version ();
11
- assertThat (version ).isEqualTo ("1.1 .0" );
11
+ assertThat (version ).isEqualTo ("1.2 .0" );
12
12
}
13
13
}
You can’t perform that action at this time.
0 commit comments