logstash-input-kafka 5.1.0 → 5.1.1

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: a9c0d93413c3ea01f0181364f4e2bb5eb93c8b56
4
- data.tar.gz: 97e2e2659773e8c46381388d206823b694c431e0
3
+ metadata.gz: 5d92524fd295d4a6ffd3ba609b2ac7a1e6e14af0
4
+ data.tar.gz: 5b4beb616716241b5a158eab18918058a636a088
5
5
  SHA512:
6
- metadata.gz: 99fdcf04705b3d6376bea25aa8cbefbd303e8c7d4d6107b754ba99f3e4ad40010919f576bfa64154a0c64a03e438bc24bac40a1889a044d193b674a9a6f8715a
7
- data.tar.gz: eadd2571707d7eeaacef2021d1b2698ba752a2e4bbc38471ef281279f3c9a07650d27291a34fe5791ac646f372658723e4a8d9a0f555cfe6e52c44807f494bca
6
+ metadata.gz: 842f5bb2fe9f9bc78679b5837162fdc957ee698f80814436a2a3ba0de441d25327da83d6803b7b926333b06e4915adce4fa669fbf6d742000910867561e93425
7
+ data.tar.gz: 0f7963d93ac071e45074c1b7470db0fa74e56089814f4625b73899cc0d676ff891117c68abba6b05fb363359808a4a3d593cd639c380b3473bf877fdb0bdbd52
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 5.1.1
2
+ - Docs: Clarify compatibility matrix and remove it from the changelog to avoid duplication.
3
+
1
4
  ## 5.1.0
2
5
  - Add Kerberos authentication support.
3
6
 
data/README.md CHANGED
@@ -6,17 +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
9
  ## Documentation
21
10
 
22
11
  https://www.elastic.co/guide/en/logstash/current/plugins-inputs-kafka.html
@@ -14,9 +14,9 @@ require 'logstash-input-kafka_jars.rb'
14
14
  # |==========================================================
15
15
  # |Kafka Client Version |Logstash Version |Plugin Version |Security Features |Why?
16
16
  # |0.8 |2.0.0 - 2.x.x |<3.0.0 | |Legacy, 0.8 is still popular
17
- # |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`)
18
- # |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)`)
19
- # |0.10 |2.4.0 - 5.0.x | 5.x.x |Basic Auth, SSL |Not compatible with the 0.9 broker
17
+ # |0.9 |2.0.0 - 2.3.x | 3.x.x |SSL |Works with the old Ruby Event API (`event['product']['price'] = 10`)
18
+ # |0.9 |2.4.x - 5.x.x | 4.x.x |SSL |Works with the new getter/setter APIs (`event.set('[product][price]', 10)`)
19
+ # |0.10.0.x |2.4.x - 5.x.x | 5.x.x |SSL |Not compatible with the <= 0.9 broker
20
20
  # |==========================================================
21
21
  #
22
22
  # NOTE: We recommended that you use matching Kafka client and broker versions. During upgrades, you should
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-kafka'
3
- s.version = '5.1.0'
3
+ s.version = '5.1.1'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = 'This input will read events from a Kafka topic. It uses the high level consumer API provided by Kafka to read messages from the broker'
6
6
  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"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.0
4
+ version: 5.1.1
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-17 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