sensu-plugins-ssl 1.3.0 → 1.3.1

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: 56d1fd89252eb63452051047b469061990116965
4
- data.tar.gz: cb62e2d86e3e49c293d2ae5a84ace67589df9197
3
+ metadata.gz: 38aee874f86178e7ea8be52e0856bd678b05ff57
4
+ data.tar.gz: a86b4dadf3d7c19effdf38dca39a8661b9780f0d
5
5
  SHA512:
6
- metadata.gz: 7cec3f3b39df1f3615c349a7f9dfcd6ab06093c0c157e09fd9beeb9d82738166263be9ffec4ecd612257734dcc6d5ae0ad1e93c409413eb65e6403f9de56168b
7
- data.tar.gz: 60583c756bf66ba2fab1346b1d3f41e27e14a6ee7b5d1ff9d5c35abd3661880efcfe7945094c543e9a5a030f12253a03d58d51c4e79d28e96a439492421037f0
6
+ metadata.gz: cb791eaf20f5af33e4e955de621c3a4f0d77db5a276070c0a39286e33781ef935d058c002093a2b6cb602c61cb8e2e00412af91529c12f7effdeffd9161c802c
7
+ data.tar.gz: a89a11c728c9967c5c5f568101948cb23d5fbd42ecd2af0347403130b18a1afd0c7bff97c54c3de48101736455aad7d50313cf059d6f5e0a9d63a538ade4e007
@@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
6
  ## [Unreleased]
7
+ ## [1.3.1] - 2017-05-30
8
+ ### Fixed
9
+ - `check-ssl-qualys.rb`: Fix missing `net/http` require that prevented the check from executing (@eheydrick)
10
+
7
11
  ## [1.3.0] 2017-05-18
8
12
  ### Changed
9
13
  - `check-java-keystore-cert.rb`: Escape variables sent to shell on calls to keytool. (@rs-mrichmond)
@@ -68,8 +72,9 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
68
72
  ### Added
69
73
  - initial release
70
74
 
71
- [unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.0...HEAD
72
- [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.2.0...1.3.0
75
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.1...HEAD
76
+ [1.3.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.0...1.3.1
77
+ [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.2.0...1.3.0
73
78
  [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.1.0...1.2.0
74
79
  [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.0.0...1.1.0
75
80
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.6...1.0.0
@@ -18,7 +18,6 @@
18
18
  #
19
19
  # DEPENDENCIES:
20
20
  # gem: sensu-plugin
21
- # gem: rest-client
22
21
  #
23
22
  # USAGE:
24
23
  # # Basic usage
@@ -41,6 +40,7 @@
41
40
 
42
41
  require 'sensu-plugin/check/cli'
43
42
  require 'json'
43
+ require 'net/http'
44
44
 
45
45
  # Checks a single DNS entry has a rating above a certain level
46
46
  class CheckSSLQualys < Sensu::Plugin::Check::CLI
@@ -2,7 +2,7 @@ module SensuPluginsSSL
2
2
  module Version
3
3
  MAJOR = 1
4
4
  MINOR = 3
5
- PATCH = 0
5
+ PATCH = 1
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-ssl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-18 00:00:00.000000000 Z
11
+ date: 2017-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin