logstash-output-nagios 3.0.1 → 3.0.2

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
  SHA1:
3
- metadata.gz: 9f7ec4642c71e177161622fc09dbad5d823f873d
4
- data.tar.gz: af22f51fbe13e12590c42a3a382b0b882fd58569
3
+ metadata.gz: c3e930888aebbac60d0f4b160011ca4eaf972d6a
4
+ data.tar.gz: b87838548d8f4606378d4dcad177b4c6363943d0
5
5
  SHA512:
6
- metadata.gz: a0ae74b8b658b22da40eb3305c1611ad9bd705be42d0d636ee320eaab7891270b6eebb5166056a94912a1bc4292435ac3528a71972ec812da0ff878c16624253
7
- data.tar.gz: c056dad717c5c4b8d1c5504b4bd54e3ce0811c1801b0026b2da6c691ea23b659636b9119aea9c96a1f0ec34e7822c78085f5e21b8aa0e1e5229c7667f6949690
6
+ metadata.gz: ba22e36c7cb4af99c3f29cf80885d0b1f2af43bfb208bb4791049af8a3017af179770db7283578f6875d679b967c7f8db9c342fbdb3c674601bbb06c6ea11e2b
7
+ data.tar.gz: 4ae6fb010ae0c86a05e1743cac83ad27a2a2028ff2e44522b26b41f1261d3a2750b8adee943b77658d548810921329634704bb7bc26f148c819b0a8cbfd231c4
data/CHANGELOG.md CHANGED
@@ -1,17 +1,23 @@
1
+ ## 3.0.2
2
+ - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
+
1
4
  ## 3.0.1
2
5
  - Republish all the gems under jruby.
6
+
3
7
  ## 3.0.0
4
8
  - 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.4
9
+
10
+ ## 2.0.4
6
11
  - 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.3
12
+
13
+ ## 2.0.3
8
14
  - New dependency requirements for logstash-core for the 5.0 release
15
+
9
16
  ## 2.0.0
10
- - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
11
- instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
17
+ - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully, instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
12
18
  - Dependency on logstash-core update to 2.0
13
19
 
14
- # 1.1.0
20
+ ## 1.1.0
15
21
  - Small refactoring to have functions out of small concepts.
16
22
  - Remove the path validation as is broken from the LS side
17
23
  - Added basic test to the project
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-nagios'
4
- s.version = '3.0.1'
4
+ s.version = '3.0.2'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "The Nagios output is used for sending passive check results to Nagios via the Nagios command file"
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" => "output" }
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
  s.add_runtime_dependency 'logstash-codec-plain'
25
25
 
26
26
  s.add_development_dependency 'logstash-devutils'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-nagios
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
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:
@@ -90,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
96
  version: '0'
91
97
  requirements: []
92
98
  rubyforge_project:
93
- rubygems_version: 2.4.8
99
+ rubygems_version: 2.6.3
94
100
  signing_key:
95
101
  specification_version: 4
96
102
  summary: The Nagios output is used for sending passive check results to Nagios via the Nagios command file