Skip to content

Commit f4425fe

Browse files
authored
remove obsolete option ssl (#304)
1 parent 0366d17 commit f4425fe

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
## 9.0.0
2+
- Removed obsolete `ssl` option
3+
14
## 8.3.1
2-
- Added support for kafka property ssl.endpoint.identification.algorithm #302(https://github.com/logstash-plugins/logstash-input-kafka/pull/302)
5+
- Added support for kafka property ssl.endpoint.identification.algorithm #302(https://github.com/logstash-plugins/logstash-input-kafka/pull/302)
36

47
## 8.3.0
58
- Changed Kafka client version to 2.1.0

lib/logstash/inputs/kafka.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,6 @@ class LogStash::Inputs::Kafka < LogStash::Inputs::Base
159159
config :topics_pattern, :validate => :string
160160
# Time kafka consumer will wait to receive new messages from topics
161161
config :poll_timeout_ms, :validate => :number, :default => 100
162-
# Enable SSL/TLS secured communication to Kafka broker.
163-
config :ssl, :validate => :boolean, :obsolete => "Use security_protocol => 'SSL'"
164162
# The truststore type.
165163
config :ssl_truststore_type, :validate => :string
166164
# The JKS truststore path to validate the Kafka broker's certificate.

logstash-input-kafka.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-input-kafka'
3-
s.version = '8.3.1'
3+
s.version = '9.0.0'
44
s.licenses = ['Apache-2.0']
55
s.summary = "Reads events from a Kafka topic"
66
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"

0 commit comments

Comments
 (0)