logstash-integration-kafka 12.0.0-java → 12.0.1-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/logstash/plugin_mixins/kafka/common.rb +1 -2
- data/logstash-integration-kafka.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 563536d1501808fc758949790640e220f6246496e902cda24f8ceb395d128fbe
|
|
4
|
+
data.tar.gz: 4a86034eb3dbc64cdb41fbe838300e0e0b3f63fb16acfa81053365b344fc7f18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cec202b3c33b64b2aa8a0fd284536031c0d0bb799c4b3d12af8e2e9aec62c94536135e355af122a5476fcfebd51962cf03abc5366a8a014e21fda2291d5f5415
|
|
7
|
+
data.tar.gz: 44dda266c5439b93da8a4c30b3baef226d38f9f75fa9a11235c16485f98fcd33b56d3e5ccd2d6f3d2470d75ca5cc22130d787a7046f137bcb172a58af63be83e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 12.0.1
|
|
2
|
+
- Remove duplicated deprecation log entry [#208](https://github.com/logstash-plugins/logstash-integration-kafka/pull/208)
|
|
3
|
+
|
|
1
4
|
## 12.0.0
|
|
2
5
|
- Update kafka client to 4.1.0 and transitive dependencies [#205](https://github.com/logstash-plugins/logstash-integration-kafka/pull/205)
|
|
3
6
|
- Breaking Change: partitioner options `default` and `uniform_sticky` are removed
|
|
@@ -55,8 +55,7 @@ module LogStash module PluginMixins module Kafka
|
|
|
55
55
|
def reassign_dns_lookup
|
|
56
56
|
if @client_dns_lookup == "default"
|
|
57
57
|
@client_dns_lookup = "use_all_dns_ips"
|
|
58
|
-
|
|
59
|
-
deprecation_logger.deprecated("Deprecated value `default` for `client_dns_lookup` option; use `use_all_dns_ips` instead.")
|
|
58
|
+
deprecation_logger.deprecated("Deprecated value `default` for `client_dns_lookup` option; please update your configuration to use `use_all_dns_ips` instead.")
|
|
60
59
|
end
|
|
61
60
|
end
|
|
62
61
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-integration-kafka'
|
|
3
|
-
s.version = '12.0.
|
|
3
|
+
s.version = '12.0.1'
|
|
4
4
|
s.licenses = ['Apache-2.0']
|
|
5
5
|
s.summary = "Integration with Kafka - input and output plugins"
|
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-integration-kafka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 12.0.
|
|
4
|
+
version: 12.0.1
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2025-10-
|
|
10
|
+
date: 2025-10-29 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: logstash-core-plugin-api
|