logstash-input-kafka 7.0.0 → 8.0.0

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: f602cb85f24f6c18a37f9c80dbad01b5e5a17c1d
4
- data.tar.gz: 5538817ea5cbd3ddc44c092e57fc35733780d7ac
3
+ metadata.gz: 3d47801e2f8ab5502818ea9670d8e08f0793c3ca
4
+ data.tar.gz: 02491f6ac2eacd2099908bb39cfae6f0421aac79
5
5
  SHA512:
6
- metadata.gz: a55bb633f746ebe5643bc1c765786f6b87807e26635ad088da30786369631833eb7b1be0b64687d6682b4c0d58f5bc3589d28718e9c299bf79b5cf115b3b0846
7
- data.tar.gz: 77ec54a43e2ee2b18aa0612b206b73827fa19639c6e031f4479778c9a71374e2a8913c53a6837fd099c0658e91e4de8894393c2f7d2a5b4ab0d3d9ab0a404cc5
6
+ metadata.gz: 4f6fb27166fd9204eebdb982671117d6db80112a942d58be516efe58c0ce7a9766497d72a2fcc5a287b093834926160cc2b3b0f601f7b845f05f1f11783b63d9
7
+ data.tar.gz: 709d6f87b150d7e4344afc527f84dafbea752b075914f5186f482444c152697430d907c3cc4c93642026f390f40bd552642e55a2557da15c4ebddc4cbb8d5c9a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 8.0.0
2
+ - Breaking: mark deprecated `ssl` option as obsolete
3
+
1
4
  ## 7.0.0
2
5
  - Breaking: Nest the decorated fields under `@metadata` field to avoid mapping conflicts with beats.
3
6
  Fixes #198, #180
data/docs/index.asciidoc CHANGED
@@ -470,15 +470,6 @@ The size of the TCP send buffer (SO_SNDBUF) to use when sending data
470
470
  The timeout after which, if the `poll_timeout_ms` is not invoked, the consumer is marked dead
471
471
  and a rebalance operation is triggered for the group identified by `group_id`
472
472
 
473
- [id="plugins-{type}s-{plugin}-ssl"]
474
- ===== `ssl` (DEPRECATED)
475
-
476
- * DEPRECATED WARNING: This configuration item is deprecated and may not be available in future versions.
477
- * Value type is <<boolean,boolean>>
478
- * Default value is `false`
479
-
480
- Enable SSL/TLS secured communication to Kafka broker.
481
-
482
473
  [id="plugins-{type}s-{plugin}-ssl_key_password"]
483
474
  ===== `ssl_key_password`
484
475
 
@@ -160,7 +160,7 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base
160
160
  # Time kafka consumer will wait to receive new messages from topics
161
161
  config :poll_timeout_ms, :validate => :number, :default => 100
162
162
  # Enable SSL/TLS secured communication to Kafka broker.
163
- config :ssl, :validate => :boolean, :default => false, :deprecated => "Use security_protocol => 'ssl'"
163
+ config :ssl, :validate => :boolean, :obsolete => "Use security_protocol => 'SSL'"
164
164
  # The truststore type.
165
165
  config :ssl_truststore_type, :validate => :string
166
166
  # The JKS truststore path to validate the Kafka broker's certificate.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-kafka'
3
- s.version = '7.0.0'
3
+ s.version = '8.0.0'
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: 7.0.0
4
+ version: 8.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-18 00:00:00.000000000 Z
11
+ date: 2017-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement