logstash-output-kafka 4.0.3 → 4.0.4

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: e6ffd661dfb3c477c2b90178a7d2659d95caff81
4
- data.tar.gz: 83a8bf71941f938536ec9d794b4a7d5037adb44c
3
+ metadata.gz: 738e0c2afe194e19d566c5af50042d627081d7ca
4
+ data.tar.gz: a1369af9f13d8395912ddad172a1fb85ce998fa1
5
5
  SHA512:
6
- metadata.gz: 7922102624a6a32dd030e7c9cc785665ecc85e5f957fb3f96dad848e6fdcaef5eb5e117370628913bc7b41fff1ebc2cfbd76005d669f3ea62eb07b0de8d3adb5
7
- data.tar.gz: f54c006bc9a154f451046c2037689f781aef5d74040b71433e9cb9627efea14a3fd1892240a3c67ea1785814ad6123d16673b2621f49db71025b1738dc638fb6
6
+ metadata.gz: 29017bc60a1b41c3f015b587a4377bc14b7494e7ba13ef2ce2cbcc2a115977b1df62b07ed3b7689b0fc6270f272ea34a58ca708fe4bfb8bb22315b3952cd8d8a
7
+ data.tar.gz: e1dc9e1ac4d2a860a60052f4e70dbf3e62c6d36ae1dc1144e17504346867352b0dd51bcebb26b613583ba44f79176795b260e1b216d7f73cb68c090dca53d5ff
@@ -1,3 +1,6 @@
1
+ ## 4.0.4
2
+ - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
+
1
4
  ## 4.0.3
2
5
  - Internal: vendoring issue when bundling gem
3
6
 
@@ -7,7 +10,7 @@
7
10
  ## 4.0.0/4.0.1
8
11
  - Republish all the gems under jruby.
9
12
  - Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
10
-
13
+
11
14
  ## 3.0.0
12
15
  - GA release of Kafka Output to support 0.9 broker
13
16
 
@@ -24,16 +27,16 @@
24
27
  ## 2.0.4
25
28
  - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
26
29
  - [Internal] Pin jruby-kafka to v1.6 to match input
27
-
30
+
28
31
  ## 2.0.3
29
32
  - New dependency requirements for logstash-core for the 5.0 release
30
33
 
31
34
  ## 3.0.0.beta1
32
- - Note: breaking changes in this version, and not backward compatible with Kafka 0.8 broker.
35
+ - Note: breaking changes in this version, and not backward compatible with Kafka 0.8 broker.
33
36
  Please read carefully before installing
34
- - Breaking: Changed default codec from json to plain. Json codec is really slow when used
37
+ - Breaking: Changed default codec from json to plain. Json codec is really slow when used
35
38
  with inputs because inputs by default are single threaded. This makes it a bad
36
- first user experience. Plain codec is a much better default.
39
+ first user experience. Plain codec is a much better default.
37
40
  - Moved internal APIs to use Kafka's Java API directly instead of jruby-kafka. This
38
41
  makes it consistent with logstash-input-kafka
39
42
  - Breaking: Change in configuration options
@@ -43,7 +46,7 @@
43
46
  - [Internal] Pin jruby-kafka to v1.5
44
47
 
45
48
  ## 2.0.0
46
- - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
49
+ - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
47
50
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
48
51
  - Dependency on logstash-core update to 2.0
49
52
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-kafka'
4
- s.version = '4.0.3'
4
+ s.version = '4.0.4'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = 'Output events to a Kafka topic. This uses the Kafka Producer API to write messages to a topic on the broker'
7
7
  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"
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
25
25
  s.add_development_dependency 'jar-dependencies', '~> 0.3.2'
26
26
 
27
27
  # Gem dependencies
28
- s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
28
+ s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
29
29
  s.add_runtime_dependency 'logstash-codec-plain'
30
30
  s.add_runtime_dependency 'logstash-codec-json'
31
31
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.3
4
+ version: 4.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elasticsearch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-08 00:00:00.000000000 Z
11
+ date: 2016-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -27,17 +27,23 @@ dependencies:
27
27
  - !ruby/object:Gem::Dependency
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
- - - "~>"
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '1.60'
33
+ - - "<="
31
34
  - !ruby/object:Gem::Version
32
- version: '2.0'
35
+ version: '2.99'
33
36
  name: logstash-core-plugin-api
34
37
  prerelease: false
35
38
  type: :runtime
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - "~>"
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '1.60'
44
+ - - "<="
39
45
  - !ruby/object:Gem::Version
40
- version: '2.0'
46
+ version: '2.99'
41
47
  - !ruby/object:Gem::Dependency
42
48
  requirement: !ruby/object:Gem::Requirement
43
49
  requirements: