logstash-integration-kafka 11.5.0-java → 11.5.1-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -2
- data/docs/input-kafka.asciidoc +1 -1
- 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: f03a210af6aa2da94f6dd5332edd803e38fbe7a19371079ff5eb4e347550dd4b
|
4
|
+
data.tar.gz: 522bfec381849d78a836b71abbdf0a29ebcec95081b6121151dfe89ce4032606
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e084950ba32401119e05042e691ce186e3897469d96b7df4c7615a8569c16c614aca255dcba1e758505ebcc1281114f487bb185024ab7df6be7d0d6281f0cea5
|
7
|
+
data.tar.gz: 030ae4eb467b6932d8395be827a5aaffbc0f64885d7b7db91922cde10c5ca7bdb01ba751afe75df3153463af2587b4ec6989a18a825a757507dfa642d26b07bc
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 11.5.1
|
2
|
+
- Specify that only headers with UTF-8 encoded values are supported in extended decoration [#174](https://github.com/logstash-plugins/logstash-integration-kafka/pull/174)
|
3
|
+
|
1
4
|
## 11.5.0
|
2
5
|
- Add "auto_create_topics" option to allow disabling of topic auto creation [#172](https://github.com/logstash-plugins/logstash-integration-kafka/pull/172)
|
3
6
|
|
@@ -40,7 +43,7 @@
|
|
40
43
|
- Changed the consumer's poll from using the one that blocks on metadata retrieval to the one that doesn't [#136](https://github.com/logstash-plugins/logstash-integration-kafka/pull/133)
|
41
44
|
|
42
45
|
## 10.12.1
|
43
|
-
- Fix: update Avro library on 10.x [#149](https://
|
46
|
+
- Fix: update Avro library on 10.x [#149](https://github.com/logstash-plugins/logstash-integration-kafka/pull/149)
|
44
47
|
|
45
48
|
## 10.12.0
|
46
49
|
- bump kafka client to 2.8.1 [#115](https://github.com/logstash-plugins/logstash-integration-kafka/pull/115)
|
@@ -50,7 +53,7 @@
|
|
50
53
|
- Refactor: mixins to follow shared mixin module naming
|
51
54
|
|
52
55
|
## 10.10.1
|
53
|
-
- Update CHANGELOG.md [#114](https://
|
56
|
+
- Update CHANGELOG.md [#114](https://github.com/logstash-plugins/logstash-integration-kafka/pull/114)
|
54
57
|
|
55
58
|
## 10.10.0
|
56
59
|
- Added config setting to enable 'zstd' compression in the Kafka output [#112](https://github.com/logstash-plugins/logstash-integration-kafka/pull/112)
|
data/docs/input-kafka.asciidoc
CHANGED
@@ -272,7 +272,7 @@ balance — more threads than partitions means that some threads will be idl
|
|
272
272
|
* Accepted values are:
|
273
273
|
- `none`: no metadata is added
|
274
274
|
- `basic`: record's attributes are added
|
275
|
-
- `extended`: record's attributes, headers are added
|
275
|
+
- `extended`: record's attributes, headers are added (limited to headers with values using UTF-8 encoding)
|
276
276
|
- `false`: deprecated alias for `none`
|
277
277
|
- `true`: deprecated alias for `basic`
|
278
278
|
* Default value is `none`
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-integration-kafka'
|
3
|
-
s.version = '11.5.
|
3
|
+
s.version = '11.5.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,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-integration-kafka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 11.5.
|
4
|
+
version: 11.5.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|