logstash-input-kafka 8.0.4 → 8.0.6

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
  SHA256:
3
- metadata.gz: 21c0a223726a9a316b759cdb1c12f25af264f0beafcd613ac764941c266beb40
4
- data.tar.gz: 23f14d19e70c7030cb4da8dff71c5baa0a3fc33bdba3a13607d81d35c81e4049
3
+ metadata.gz: c8b7a72f9e1639f7eedfcb6fe6276f719a2fac291a3432a865a6fa649a26b745
4
+ data.tar.gz: 16e6a9a1236a40e4ac99ec1629a4819bd2172706b3015293ccb3ed5108d109ff
5
5
  SHA512:
6
- metadata.gz: 1b6b1211ccd441a4d5f3337a264863a0d5ad4864efdd6b7c78074d648c69a6893e121f31ccbd2a0046d9a388631e80e0bfa8c415baa4b23c5caa1ebe9c0c0e00
7
- data.tar.gz: 455714cc7e60d0ab0dc1108c83b3f1230d7ca682c481cf5e80b995edfb24f5ab537883fc60c7da15edab5ad9d30fd9ca475a389579536550d679fad466824323
6
+ metadata.gz: 72ae3ef6ed1de4eed323751e38a7a697d8637e76537c15ba1ea65796d623aa1985ac5b5e88133f7484157314c1b21afa2aaea27fd9429a5af044681d0a5f6aab
7
+ data.tar.gz: 2f2fe978fd890db6e42cd6b5a037163a21d492772c897ee10f87f9833d644a0c4dfd0a4612ce8acf8d1bfdb83b2d6cc49abe4855642ae1283aa95cf13c8a9797
@@ -1,3 +1,9 @@
1
+ ## 8.0.6
2
+ - Fix broken 8.0.5 release
3
+
4
+ ## 8.0.5
5
+ - Docs: Set the default_codec doc attribute.
6
+
1
7
  ## 8.0.4
2
8
  - Upgrade Kafka client to version 1.0.0
3
9
 
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012–2016 Elasticsearch <http://www.elastic.co>
1
+ Copyright (c) 2012-2018 Elasticsearch <http://www.elastic.co>
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
@@ -1,5 +1,6 @@
1
1
  :plugin: kafka
2
2
  :type: input
3
+ :default_codec: plain
3
4
 
4
5
  ///////////////////////////////////////////
5
6
  START - GENERATED VARIABLES, DO NOT EDIT!
@@ -24,7 +25,8 @@ This input will read events from a Kafka topic.
24
25
 
25
26
  This plugin uses Kafka Client 1.0.0. For broker compatibility, see the official https://cwiki.apache.org/confluence/display/KAFKA/Compatibility+Matrix[Kafka compatibility reference].
26
27
 
27
- If you're using a plugin version that was released after {version}, see the https://www.elastic.co/guide/en/logstash/master/plugins-inputs-kafka.html[latest plugin documentation] for updated information about Kafka compatibility.
28
+ If you're using a plugin version that was released after {version}, see the https://www.elastic.co/guide/en/logstash/master/plugins-inputs-kafka.html[latest plugin documentation] for updated information about Kafka compatibility. If you require features not yet available in this plugin (including client version upgrades), please file an issue with details about what you need..
29
+
28
30
 
29
31
  This input supports connecting to Kafka over:
30
32
 
@@ -540,3 +542,5 @@ Java Class used to deserialize the record's value
540
542
 
541
543
  [id="plugins-{type}s-{plugin}-common-options"]
542
544
  include::{include_path}/{type}.asciidoc[]
545
+
546
+ :default_codec!:
@@ -332,7 +332,7 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base
332
332
 
333
333
  def set_trustore_keystore_config(props)
334
334
  props.put("ssl.truststore.type", ssl_truststore_type) unless ssl_truststore_type.nil?
335
- props.put("ssl.truststore.location", ssl_truststore_location)
335
+ props.put("ssl.truststore.location", ssl_truststore_location) unless ssl_truststore_location.nil?
336
336
  props.put("ssl.truststore.password", ssl_truststore_password.value) unless ssl_truststore_password.nil?
337
337
 
338
338
  # Client auth stuff
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-kafka'
3
- s.version = '8.0.4'
3
+ s.version = '8.0.6'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Reads events from a Kafka topic"
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: 8.0.4
4
+ version: 8.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-05 00:00:00.000000000 Z
11
+ date: 2018-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -177,7 +177,7 @@ requirements:
177
177
  - jar 'org.apache.kafka:kafka-clients', '1.0.0'
178
178
  - jar 'org.apache.logging.log4j:log4j-slf4j-impl', '2.8.2'
179
179
  rubyforge_project:
180
- rubygems_version: 2.6.13
180
+ rubygems_version: 2.6.11
181
181
  signing_key:
182
182
  specification_version: 4
183
183
  summary: Reads events from a Kafka topic