File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
src/integrationTest/java/com/mongodb/kafka/connect Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 44
55## 0.2
66
7+ * [[KAFKA-49](https://jira.mongodb.org/browse/KAFKA-49) Added a source record key (resume token)
8+ * [[KAFKA-44](https://jira.mongodb.org/browse/KAFKA-44) CDC handle `$v` update fields from oplog
9+ * [[KAFKA-41](https://jira.mongodb.org/browse/KAFKA-41) Fix confluent-hub zip
10+ * [[KAFKA-37](https://jira.mongodb.org/browse/KAFKA-37) Ensure sink operations are ordered
11+ * [[KAFKA-36](https://jira.mongodb.org/browse/KAFKA-36) Updated docker demo
12+ * [[KAFKA-35](https://jira.mongodb.org/browse/KAFKA-35) Added AVRO support for nested complex types
713 * [[KAFKA-34](https://jira.mongodb.org/browse/KAFKA-34)] DocumentIdAdder can be anywhere in the post processors list
814
915## 0.1 - Initial release
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ following Java type mappings:
235235 - long myTimestampMicrosField;
236236
237237See [ this discussion] ( https://github.com/mongodb/mongo-kafka/issues/5 ) if you are interested in some more details.
238- Note: ARVO 1.9.0 will support native Java 8 date time types.
238+ Note: AVRO 1.9.0 will support native Java 8 date time types.
239239Logical types can only be supported for ** AVRO** and ** JSON + Schema** data.
240240
241241
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ void testASimpleProducerSmokeTest() {
6565
6666 @ Test
6767 @ DisplayName ("Ensure sink connect saves data to MongoDB" )
68- void testSinkSavesArvoDataToMongoDB () {
68+ void testSinkSavesAvroDataToMongoDB () {
6969 Stream <TweetMsg > tweets = IntStream .range (0 , 100 ).mapToObj (i ->
7070 TweetMsg .newBuilder ().setId$1 (i )
7171 .setText (format ("test tweet %s end2end testing apache kafka <-> mongodb sink connector is fun!" , i ))
You can’t perform that action at this time.
0 commit comments