logstash-input-lumberjack 3.0.1 → 3.1.1

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: ac8a7f3fecddcbec26866f852ef0eb0a97577e35
4
- data.tar.gz: de137295417f0b95ff7c739c8f2dea98629cc9d4
3
+ metadata.gz: 6804ea8d6a5c20d7afbce41be6cb812d426bbc1f
4
+ data.tar.gz: 46d070083942909d702ebc6c9a1e9d7623053a10
5
5
  SHA512:
6
- metadata.gz: 05730525805c81042f3a3beee85834604424398e2c81657ac6a6e669972478f47d67605cec365cf5a8771852510301fa226dad5f839a48ac333f48ff861b639c
7
- data.tar.gz: 1828934842421da2fe0aafa6ce5f00864ff83c99d750b070ccfb24ad6047f7a209515a75d33a89eafd24bdd1bc105dc3726ad13133c8a34b4e4734b8f4d4e718
6
+ metadata.gz: d82f405fbd6f15ca070659726100d8d0ad5d3bdb808e6aaffcfffe14ae65add9b618659ac2f411beeb87c740496207621f4800580befffd3c731a6143f5173ea
7
+ data.tar.gz: 2952f69e5135771f6d6481031fbdaa232f00a39c236541a6d9c7848d4e5bffc68341a90e98d43d9a7b8f66ea8dfbccf6c6852b808f5f6f24d367680ce63bcfa4
@@ -1,17 +1,27 @@
1
+ ## 3.1.1
2
+ - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
+
4
+ ## 3.1.0
5
+ - breaking,config: Remove deprecated config `max_clients`.
6
+
1
7
  ## 3.0.1
2
- - Republish all the gems under jruby.
8
+ - Republish all the gems under jruby.
9
+
3
10
  ## 3.0.0
4
- - 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
5
- # 2.0.7
6
- - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
7
- # 2.0.6
8
- - New dependency requirements for logstash-core for the 5.0 release
11
+ - 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
12
+
13
+ ## 2.0.7
14
+ - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
15
+
16
+ ## 2.0.6
17
+ - New dependency requirements for logstash-core for the 5.0 release
18
+
9
19
  ## 2.0.5
10
20
  - Add support for `stream_identity` to make the lumberjack input able to do disambiguation of file when using the multiline codec #53
11
21
 
12
22
  ## 2.0.4
13
23
  - Update `ruby-lumberjack` dependency to 0.0.26
14
-
24
+
15
25
  ## 2.0.2
16
26
  - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
17
27
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
@@ -19,21 +29,27 @@
19
29
  ## 2.0.0
20
30
  - Dependency on logstash-core update to 2.0
21
31
 
22
- # 1.0.5
23
- - fix the wrong require for concurrent ruby
24
- # 1.0.4
25
- - Update `ruby-lumberjack` to 0.0.24
26
- # 1.0.3
27
- - Fix `concurrent-ruby` deprecation warning (https://github.com/logstash-plugins/logstash-input-lumberjack/pull/39)
28
- - Remove deplicate declaration of the threadpool
29
- - Force `ruby-lumberjack` to be version 0.0.23 or higher to be in sync with `logstash-output-lumberjack`
30
- # 1.0.2
31
- - Use a `require_relative` for loading the spec helpers. (https://github.com/logstash-plugins/logstash-input-lumberjack/pull/35)
32
- # 1.0.1
33
- - Fix a randomization issue for rspec https://github.com/logstash-plugins/logstash-input-lumberjack/issues/33
34
- # 1.0.0
35
- - Default supported plugins are pushed to 1.0
36
- # 0.1.10
37
- - Deprecating the `max_clients` option
38
- - Use a circuit breaker to start refusing new connection when the queue is blocked for too long.
39
- - Add an internal `SizeQueue` with a timeout to drop blocked connections. (https://github.com/logstash-plugins/logstash-input-lumberjack/pull/12)
32
+ ## 1.0.5
33
+ - fix the wrong require for concurrent ruby
34
+
35
+ ## 1.0.4
36
+ - Update `ruby-lumberjack` to 0.0.24
37
+
38
+ ## 1.0.3
39
+ - Fix `concurrent-ruby` deprecation warning (https://github.com/logstash-plugins/logstash-input-lumberjack/pull/39)
40
+ - Remove deplicate declaration of the threadpool
41
+ - Force `ruby-lumberjack` to be version 0.0.23 or higher to be in sync with `logstash-output-lumberjack`
42
+
43
+ ## 1.0.2
44
+ - Use a `require_relative` for loading the spec helpers. (https://github.com/logstash-plugins/logstash-input-lumberjack/pull/35)
45
+
46
+ ## 1.0.1
47
+ - Fix a randomization issue for rspec https://github.com/logstash-plugins/logstash-input-lumberjack/issues/33
48
+
49
+ ## 1.0.0
50
+ - Default supported plugins are pushed to 1.0
51
+
52
+ ## 0.1.10
53
+ - Deprecating the `max_clients` option
54
+ - Use a circuit breaker to start refusing new connection when the queue is blocked for too long.
55
+ - Add an internal `SizeQueue` with a timeout to drop blocked connections. (https://github.com/logstash-plugins/logstash-input-lumberjack/pull/12)
@@ -30,9 +30,6 @@ class LogStash::Inputs::Lumberjack < LogStash::Inputs::Base
30
30
  # SSL key passphrase to use.
31
31
  config :ssl_key_passphrase, :validate => :password
32
32
 
33
- # This setting no longer has any effect and will be removed in a future release.
34
- config :max_clients, :validate => :number, :deprecated => "This setting no longer has any effect. See https://github.com/logstash-plugins/logstash-input-lumberjack/pull/12 for the history of this change"
35
-
36
33
  # The number of seconds before we raise a timeout,
37
34
  # this option is useful to control how much time to wait if something is blocking the pipeline.
38
35
  config :congestion_threshold, :validate => :number, :default => 5
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-lumberjack'
4
- s.version = '3.0.1'
4
+ s.version = '3.1.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Receive events using the lumberjack protocol."
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"
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
21
21
 
22
22
  # Gem dependencies
23
- s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
23
+ s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
24
24
 
25
25
  s.add_runtime_dependency 'logstash-codec-plain'
26
26
  s.add_runtime_dependency 'jls-lumberjack', '~> 0.0.26'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-lumberjack
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-09 00:00:00.000000000 Z
11
+ date: 2016-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - "~>"
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '1.60'
19
+ - - "<="
17
20
  - !ruby/object:Gem::Version
18
- version: '2.0'
21
+ version: '2.99'
19
22
  name: logstash-core-plugin-api
20
23
  prerelease: false
21
24
  type: :runtime
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.60'
30
+ - - "<="
25
31
  - !ruby/object:Gem::Version
26
- version: '2.0'
32
+ version: '2.99'
27
33
  - !ruby/object:Gem::Dependency
28
34
  requirement: !ruby/object:Gem::Requirement
29
35
  requirements:
@@ -165,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
165
171
  version: '0'
166
172
  requirements: []
167
173
  rubyforge_project:
168
- rubygems_version: 2.4.8
174
+ rubygems_version: 2.6.3
169
175
  signing_key:
170
176
  specification_version: 4
171
177
  summary: Receive events using the lumberjack protocol.