Skip to content

Commit 9fb12d0

Browse files
committed
Prepare changelog for release
1 parent 69ee044 commit 9fb12d0

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## v0.8
88

9+
### v0.8.9 (01/04/2021)
10+
- Added implementation to parse substring as timestamp field
11+
912
### v0.8.8 (12/25/2020)
10-
- Bugfix #82: NPE when commit before ever polling. Happening on long initial polls.
13+
- Bugfix #82: NPE when commit before ever polling. Happening on long initial polls
1114

1215
### v0.8.7 (12/06/2020)
1316
- FreeMarker number representation as "computer" by default, offset.timestamp explicitly documented as ISO8601 format, elasticsearch

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ plugins folder.
4040
<artifactItem>
4141
<groupId>com.github.castorm</groupId>
4242
<artifactId>kafka-connect-http</artifactId>
43-
<version>0.8.8</version>
43+
<version>0.8.9</version>
4444
<type>tar.gz</type>
4545
<classifier>plugin</classifier>
4646
</artifactItem>

kafka-connect-http-infra/src/main/java/com/github/castorm/kafka/connect/infra/KafkaConnectInfra.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ public KafkaConnectInfra start() {
5959
kafka.start();
6060
kafkaConnect.start();
6161
kafkaConnect.waitingUntilReady();
62-
System.out.println("Kafka Connect testcontainers infra is ready\n Rest API: http://" + getKafkaConnectExternalRestUrl() + "\n Debug agent: " + getKafkaConnectExternalDebugUrl());
62+
System.out.println("Kafka Connect cluster is ready" +
63+
"\n REST API: http://" + getKafkaConnectExternalRestUrl() +
64+
"\n Debug Agent: " + getKafkaConnectExternalDebugUrl());
6365
return this;
6466
}
6567

0 commit comments

Comments
 (0)