logstash-integration-kafka 10.8.1-java → 10.8.2-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff8065a6958598d8e33ecd2f78f27d7ec2c0ce1334516966d41a4426d437a4bb
4
- data.tar.gz: f5a04ae25fc6394751fd63ff0c76171db82b7fccdd9962d35c94c06f8b516c39
3
+ metadata.gz: 2e11499f791fd2bd71102ddb6f8e52fcbd9791feecf4107c7ebd27dc9334cc34
4
+ data.tar.gz: 779cd381a6e53155f61457229df4fc827ceda02ef4e069d4eab0240dafa4ab83
5
5
  SHA512:
6
- metadata.gz: d6a2630bb76e853e185c02933fe065be84e6d0f863e255e611e67b9de772b5661d09cf74fb8ba0e1df035e2742a9fbf73a3b00f2bb87801414e65d5043c9491c
7
- data.tar.gz: e6ff413abd74c78f463d95f7c476fdecc2005cee804f426e56056e66300a785cf0789f73b5aa1d5aed4966d42a34a007b52361744612ecb5420891ff493c0df0
6
+ metadata.gz: 5577048fe1adee0c28b012c0bf6eb0ff594b7be4760f7b7ebdf9072473fb0a1806e24997dd7b0659c21f205396a4d7eccb10bc4e789541c35fb7e32610562632
7
+ data.tar.gz: 7ee0e7428d63957a57e927a3f0408bcdddf94efad944c5cf0acbac3c1031be55b6751ad0290ea134e5201f10f9e26f2804c6d68150e925f651c9db27847bab5e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 10.8.2
2
+ - [DOC] Updates description of `enable_auto_commit=false` to clarify that the commit happens after data is fetched AND written to the queue [#90](https://github.com/logstash-plugins/logstash-integration-kafka/pull/90)
3
+ - Fix: update to Gradle 7 [#104](https://github.com/logstash-plugins/logstash-integration-kafka/pull/104)
4
+ - [DOC] Clarify Kafka client does not support proxy [#103](https://github.com/logstash-plugins/logstash-integration-kafka/pull/103)
5
+
1
6
  ## 10.8.1
2
7
  - [DOC] Removed a setting recommendation that is no longer applicable for Kafka 2.0+ [#99](https://github.com/logstash-plugins/logstash-integration-kafka/pull/99)
3
8
 
@@ -42,6 +42,13 @@ This input supports connecting to Kafka over:
42
42
 
43
43
  By default security is disabled but can be turned on as needed.
44
44
 
45
+ [NOTE]
46
+ =======
47
+ This plugin does not support using a proxy when communicating to the Kafka broker.
48
+
49
+ This plugin does support using a proxy when communicating to the Schema Registry using the <<plugins-{type}s-{plugin}-schema_registry_proxy>> option.
50
+ =======
51
+
45
52
  The Logstash Kafka consumer handles group management and uses the default offset management
46
53
  strategy using Kafka topics.
47
54
 
@@ -276,7 +283,7 @@ which the consumption will begin.
276
283
 
277
284
  If true, periodically commit to Kafka the offsets of messages already returned by
278
285
  the consumer. If value is `false` however, the offset is committed every time the
279
- consumer fetches the data from the topic.
286
+ consumer writes data fetched from the topic to the in-memory or persistent queue.
280
287
 
281
288
  [id="plugins-{type}s-{plugin}-exclude_internal_topics"]
282
289
  ===== `exclude_internal_topics`
@@ -64,6 +64,8 @@ https://kafka.apache.org/{kafka_client_doc}/documentation.html#theproducer
64
64
  Kafka producer configuration:
65
65
  https://kafka.apache.org/{kafka_client_doc}/documentation.html#producerconfigs
66
66
 
67
+ NOTE: This plugin does not support using a proxy when communicating to the Kafka broker.
68
+
67
69
  [id="plugins-{type}s-{plugin}-options"]
68
70
  ==== Kafka Output Configuration Options
69
71
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-integration-kafka'
3
- s.version = '10.8.1'
3
+ s.version = '10.8.2'
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-integration-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.8.1
4
+ version: 10.8.2
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-13 00:00:00.000000000 Z
11
+ date: 2021-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -280,8 +280,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
280
280
  - !ruby/object:Gem::Version
281
281
  version: '0'
282
282
  requirements: []
283
- rubyforge_project:
284
- rubygems_version: 2.6.13
283
+ rubygems_version: 3.1.6
285
284
  signing_key:
286
285
  specification_version: 4
287
286
  summary: Integration with Kafka - input and output plugins