Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Kafka client and download version to 2.0.1 #209

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 7.2.1
- Changed Kafka client to version 2.0.1 [#209](https://github.com/logstash-plugins/logstash-output-kafka/pull/209)

## 7.2.0
- Upgrade Kafka client to version 2.0.0

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ task wrapper(type: Wrapper) {
}

dependencies {
compile 'org.apache.kafka:kafka-clients:2.0.0'
compile 'org.apache.kafka:kafka-clients:2.0.1'
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'org.lz4:lz4-java:1.4.1'
compile 'org.xerial.snappy:snappy-java:1.1.7.1'
Expand Down
2 changes: 1 addition & 1 deletion kafka_test_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -ex
if [ -n "${KAFKA_VERSION+1}" ]; then
echo "KAFKA_VERSION is $KAFKA_VERSION"
else
KAFKA_VERSION=0.10.2.1
KAFKA_VERSION=2.0.1
fi

echo "Downloading Kafka version $KAFKA_VERSION"
Expand Down
4 changes: 2 additions & 2 deletions logstash-output-kafka.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Gem::Specification.new do |s|

s.name = 'logstash-output-kafka'
s.version = '7.2.0'
s.licenses = ['Apache License (2.0)']
s.version = '7.2.1'
s.licenses = ['Apache-2.0']
s.summary = "Writes events to a Kafka topic"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
s.authors = ['Elasticsearch']
Expand Down