logstash-output-kafka 5.1.1 → 5.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 69193352e6314b922d5495ba0da424098e77689f
4
- data.tar.gz: 591f5a294031d3c40610285d82a23780697a6faa
3
+ metadata.gz: 2b96733c1a442744bdb3abd6a29dd0c9653ebb12
4
+ data.tar.gz: c535c4574fe5e334dae2f51a7b947528212913bc
5
5
  SHA512:
6
- metadata.gz: 6e8d88c9eb862faa589b7e520c9d866870ff824fb3bf58ed06d2a2c22d5bd58427f144ca840b69020b222fb531a28e0a2dd3f88d320d2e7c30209e5d677c0770
7
- data.tar.gz: e432eec31c8ee47998c617b297c44ebe69a5dd8d695d22983eeb77f1ce375c6bb36b34d21ae9d959c824b5f2a3fb47efd71912c2e3bb9cda39229d6498b53787
6
+ metadata.gz: af060521e050ef27df2126f586ed328877dc17082647c77f36f40b3ef5ba615a4acf9f8bee40dd1d6df5794832d10b177b7c399fc85e7c086d8f813acb87aa5a
7
+ data.tar.gz: 15a33068abae1376ba72359910ec1926f96f6452d31be7814720eb498f311c20263061d3576a99aabd5a67b894ec35ba8d80915964a4898320c117533cea313b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
+ ## 5.1.3
2
+ - Docs: Clarify compatibility matrix and remove it from the changelog to avoid duplication.
3
+
4
+ ## 5.1.2
5
+ - bump sl4j version dep to 1.7.21 to align with input plugin and kafka-clients maven deps
6
+
1
7
  ## 5.1.1
2
- - Update the doc to mention the plain codec instead of the json codec.
8
+ - Docs: Update the doc to mention the plain codec instead of the json codec.
3
9
 
4
10
  ## 5.1.0
5
11
  - Add Kerberos authentication feature.
data/README.md CHANGED
@@ -6,18 +6,6 @@ This is a plugin for [Logstash](https://github.com/elastic/logstash).
6
6
 
7
7
  It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
8
8
 
9
- ## Kafka Compatibility
10
-
11
- Here's a table that describes the compatibility matrix for Kafka Broker support. Please remember that it is good advice to upgrade brokers before consumers/producers since brokers target backwards compatibility. The 0.9 broker will work with both the 0.8 consumer and 0.9 consumer APIs but not the other way around.
12
-
13
- | Kafka Broker Version | Logstash Version | Input Plugin | Output Plugin | Why? |
14
- |:---------------:|:------------------:|:--------------:|:---------------:|:------|
15
- | 0.8 | 2.0 - 2.x | < 3.0.0 | <3.0.0 | Legacy, 0.8 is still popular |
16
- | 0.9 | 2.0 - 2.3.x | 3.0.0 | 3.0.0 | Intermediate release before 0.10 that works with old Ruby Event API `[]` |
17
- | 0.9 | 2.4, 5.0 | 4.0.0 | 4.0.0 | Intermediate release before 0.10 with new get/set API |
18
- | 0.10 | 2.4, 5.0 | 5.0.0 | 5.0.0 | Track latest Kafka release. Not compatible with 0.9 broker |
19
-
20
-
21
9
  ## Documentation
22
10
 
23
11
  Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elastic.co/guide/en/logstash/current/).
@@ -13,9 +13,9 @@ require 'logstash-output-kafka_jars.rb'
13
13
  # |==========================================================
14
14
  # |Kafka Client Version |Logstash Version |Plugin Version |Security Features |Why?
15
15
  # |0.8 |2.0.0 - 2.x.x |<3.0.0 | |Legacy, 0.8 is still popular
16
- # |0.9 |2.0.0 - 2.3.x | 3.x.x |Basic Auth, SSL |Works with the old Ruby Event API (`event['product']['price'] = 10`)
17
- # |0.9 |2.4.0 - 5.0.x | 4.x.x |Basic Auth, SSL |Works with the new getter/setter APIs (`event.set('[product][price]', 10)`)
18
- # |0.10 |2.4.0 - 5.0.x | 5.x.x |Basic Auth, SSL |Not compatible with the 0.9 broker
16
+ # |0.9 |2.0.0 - 2.3.x | 3.x.x |SSL |Works with the old Ruby Event API (`event['product']['price'] = 10`)
17
+ # |0.9 |2.4.x - 5.x.x | 4.x.x |SSL |Works with the new getter/setter APIs (`event.set('[product][price]', 10)`)
18
+ # |0.10.0.x |2.4.x - 5.x.x | 5.x.x |SSL |Not compatible with the <= 0.9 broker
19
19
  # |==========================================================
20
20
  #
21
21
  # NOTE: We recommended that you use matching Kafka client and broker versions. During upgrades, you should
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-kafka'
4
- s.version = '5.1.1'
4
+ s.version = '5.1.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = 'Output events to a Kafka topic. This uses the Kafka Producer API to write messages to a topic on the broker'
7
7
  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"
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.metadata = { 'logstash_plugin' => 'true', 'group' => 'output'}
21
21
 
22
22
  s.requirements << "jar 'org.apache.kafka:kafka-clients', '0.10.0.1'"
23
- s.requirements << "jar 'org.slf4j:slf4j-log4j12', '1.7.13'"
23
+ s.requirements << "jar 'org.slf4j:slf4j-log4j12', '1.7.21'"
24
24
 
25
25
  s.add_development_dependency 'jar-dependencies', '~> 0.3.2'
26
26
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1
4
+ version: 5.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-25 00:00:00.000000000 Z
11
+ date: 2016-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -136,7 +136,7 @@ files:
136
136
  - vendor/jar-dependencies/runtime-jars/log4j-1.2.17.jar
137
137
  - vendor/jar-dependencies/runtime-jars/lz4-1.3.0.jar
138
138
  - vendor/jar-dependencies/runtime-jars/slf4j-api-1.7.21.jar
139
- - vendor/jar-dependencies/runtime-jars/slf4j-log4j12-1.7.13.jar
139
+ - vendor/jar-dependencies/runtime-jars/slf4j-log4j12-1.7.21.jar
140
140
  - vendor/jar-dependencies/runtime-jars/snappy-java-1.1.2.6.jar
141
141
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
142
142
  licenses:
@@ -160,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
160
  version: '0'
161
161
  requirements:
162
162
  - jar 'org.apache.kafka:kafka-clients', '0.10.0.1'
163
- - jar 'org.slf4j:slf4j-log4j12', '1.7.13'
163
+ - jar 'org.slf4j:slf4j-log4j12', '1.7.21'
164
164
  rubyforge_project:
165
165
  rubygems_version: 2.4.8
166
166
  signing_key: