Skip to content

Commit

Permalink
Merge pull request #69 from ably/release/2.0.0
Browse files Browse the repository at this point in the history
Release/2.0.0
  • Loading branch information
ikbalkaya authored Apr 20, 2022
2 parents 5d64748 + bfb4094 commit 905c929
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog


## [v2.0.0](https://github.com/ably/kafka-connect-ably/tree/v2.0.0) (2022-04-20)

[Full Changelog](https://github.com/ably/kafka-connect-ably/compare/v1.0.3...v2.0.0)

**Implemented enhancements:**

- Remove client.use.binary.protocol configuration [\#57](https://github.com/ably/kafka-connect-ably/issues/57)
- Add configuration validators [\#53](https://github.com/ably/kafka-connect-ably/issues/53)
- Make message name configurable and interpolable [\#46](https://github.com/ably/kafka-connect-ably/issues/46)
- Code reorganization and refinement [\#63](https://github.com/ably/kafka-connect-ably/pull/63) ([ikbalkaya](https://github.com/ikbalkaya))
- Add distributed mode configuration file [\#62](https://github.com/ably/kafka-connect-ably/pull/62) ([ikbalkaya](https://github.com/ikbalkaya))
- Remove client.use.binary.protocol configuration [\#60](https://github.com/ably/kafka-connect-ably/pull/60) ([ikbalkaya](https://github.com/ikbalkaya))
- Make message name configurable [\#48](https://github.com/ably/kafka-connect-ably/pull/48) ([ikbalkaya](https://github.com/ikbalkaya))
- Implement pattern based mapping [\#43](https://github.com/ably/kafka-connect-ably/pull/43) ([ikbalkaya](https://github.com/ikbalkaya))

**Fixed bugs:**

- Readme emphasizes n to 1 mapping [\#66](https://github.com/ably/kafka-connect-ably/issues/66)
- NullPointerException when proxy password is not specified [\#34](https://github.com/ably/kafka-connect-ably/issues/34)
- NullPointerException on proxy port issue [\#52](https://github.com/ably/kafka-connect-ably/pull/52) ([ikbalkaya](https://github.com/ikbalkaya))

## [v1.0.3](https://github.com/ably/kafka-connect-ably/tree/v1.0.3) (2021-12-31)

[Full Changelog](https://github.com/ably/kafka-connect-ably/compare/v1.0.2...v1.0.3)
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ An example cURL command to start the connector in distributed mode is:
data: {"id":"1543960661:0:2","clientId":"kafka-connect-ably-example","connectionId":"SuJTceISnT","timestamp":1623496744538,"encoding":"base64", "channel":"kafka-connect-ably-example","data":"bWVzc2FnZSAz","name":"sink"}
```
## Breaking API Changes in Version 2.0.0
Please see our [Upgrade / Migration Guide](UPDATING.md) for notes on changes you need to make to your configuration to update it with changes introduced by version 2.0.0 of the connector.
## Configuration
Configuration is handled differently depending on how the connector is installed:
Expand Down
12 changes: 12 additions & 0 deletions UPDATING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Upgrade / Migration Guide

## Version 1.0.3 to 2.0.0

We have made some **breaking changes** in the version 2.0.0 release of this project. Configurations below are no longer supported.
You must remove these from your configuration files when using the new version.

* `recover`
* `client.use.binary.protocol`

Also;
* Message name default value is no longer 'sink'. You must set new configuration `message.name` or it is going to be set to null.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.ably.kafka.connect</groupId>
<artifactId>kafka-connect-ably</artifactId>
<version>1.0.3</version>
<version>2.0.0</version>
<packaging>jar</packaging>

<properties>
Expand Down

0 comments on commit 905c929

Please sign in to comment.