Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ install: true
before_script: ci/build.sh
script: ci/run.sh
after_script: ci/cleanup.sh
jdk: oraclejdk8
jdk: openjdk8
before_install: gem install bundler -v '< 2'
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 8.1.0
- Updated kafka client to version 2.3.0

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

Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,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-output-kafka.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|

s.name = 'logstash-output-kafka'
s.version = '8.0.2'
s.version = '8.1.0'
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"
Expand Down