Skip to content

Commit

Permalink
upgrade kafka client to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvd committed Aug 1, 2019
1 parent fa84420 commit 32b039b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 9.1.0
- Updated Kafka client version to 2.3.0

## 9.0.1
- Added support for `sasl_jaas_config` setting to allow JAAS config per plugin, rather than per JVM [#313](https://github.com/logstash-plugins/logstash-input-kafka/pull/313)

Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ task wrapper(type: Wrapper) {
}

dependencies {
compile 'org.apache.kafka:kafka-clients:2.1.0'
compile 'com.github.luben:zstd-jni:1.3.7-3'
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'org.lz4:lz4-java:1.5.0'
compile 'org.xerial.snappy:snappy-java:1.1.7.2'
compile 'org.apache.kafka:kafka-clients:2.3.0'
compile 'com.github.luben:zstd-jni:1.4.2-1'
compile 'org.slf4j:slf4j-api:1.7.26'
compile 'org.lz4:lz4-java:1.6.0'
compile 'org.xerial.snappy:snappy-java:1.1.7.3'

}
task generateGemJarRequiresFile {
Expand Down
2 changes: 1 addition & 1 deletion logstash-input-kafka.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'logstash-input-kafka'
s.version = '9.0.1'
s.version = '9.1.0'
s.licenses = ['Apache-2.0']
s.summary = "Reads events from 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"
Expand Down

0 comments on commit 32b039b

Please sign in to comment.