sensu-plugins-ssl 2.0.0 → 2.0.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 +4 -4
- data/CHANGELOG.md +8 -2
- data/bin/check-ssl-qualys.rb +2 -2
- data/lib/sensu-plugins-ssl/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b181365f3bc51a19d52e1eb96ec33c24d29cd9ff14e2f87bb38bd14629ea4a19
|
4
|
+
data.tar.gz: 28a88e9032b84451e67c2f33d0b4d1dc0d09c569ed8611e2559d5ed11574e2c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04777162b9953ca6a60507367c6e755f99a73f8a9ea185b722d29039a67dfd68e68ee055d292f26d94f4a5842031167aaf04b38d167266aec2bdf92627763044
|
7
|
+
data.tar.gz: 1dcc031f2d8794fd983fd7bd749b550ff7b8e4442c85ce32d36ea2db1c945b3db3083bb347e6d57f1c34275594567e8b90cb05e79296ac6463be090646fb9bf9
|
data/CHANGELOG.md
CHANGED
@@ -5,9 +5,14 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
|
|
5
5
|
|
6
6
|
## [Unreleased]
|
7
7
|
|
8
|
+
## [2.0.1] - 2018-05-30
|
9
|
+
### Fixed
|
10
|
+
- `check-ssl-qualys.rb`: Fixed typo and removed timeout `-t` short option replacing it with `--timeout` as per previous changelog. `-t` conflicts with the short option for `--time-between`
|
11
|
+
- Fixed typo in changelog
|
12
|
+
|
8
13
|
## [2.0.0] - 2018-03-27
|
9
14
|
### Breaking Changes
|
10
|
-
- `check-ssl-qualys.rb`: when you submit a request with caching enabled it will return back a response including an eta key. Rather than sleeping for some arbitrary number of time we now use this key when its greater than `--between
|
15
|
+
- `check-ssl-qualys.rb`: when you submit a request with caching enabled it will return back a response including an eta key. Rather than sleeping for some arbitrary number of time we now use this key when its greater than `--time-between` to wait before attempting the next attempt to query. If it is lower or not present we fall back to `--time-between` (@majormoses)
|
11
16
|
- `check-ssl-qualys.rb`: new `--timeout` parameter to short circuit slow apis (@majormoses)
|
12
17
|
|
13
18
|
### Changed
|
@@ -105,7 +110,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
|
|
105
110
|
### Added
|
106
111
|
- initial release
|
107
112
|
|
108
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/2.0.
|
113
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/2.0.1...HEAD
|
114
|
+
[2.0.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/2.0.0...2.0.1
|
109
115
|
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.5.0...2.0.0
|
110
116
|
[1.5.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.4.0...1.5.0
|
111
117
|
[1.4.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.1...1.4.0
|
data/bin/check-ssl-qualys.rb
CHANGED
@@ -95,8 +95,8 @@ class CheckSSLQualys < Sensu::Plugin::Check::CLI
|
|
95
95
|
default: 10
|
96
96
|
|
97
97
|
option :timeout,
|
98
|
-
|
99
|
-
descriptions: 'the
|
98
|
+
long: '--timeout SECONDS',
|
99
|
+
descriptions: 'the amount of seconds that this is allowed to run for',
|
100
100
|
proc: proc(&:to_i),
|
101
101
|
default: 300
|
102
102
|
|
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: 2.0.
|
4
|
+
version: 2.0.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: 2018-
|
11
|
+
date: 2018-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sensu-plugin
|
@@ -220,7 +220,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
220
220
|
version: '0'
|
221
221
|
requirements: []
|
222
222
|
rubyforge_project:
|
223
|
-
rubygems_version: 2.7.
|
223
|
+
rubygems_version: 2.7.7
|
224
224
|
signing_key:
|
225
225
|
specification_version: 4
|
226
226
|
summary: Sensu plugins for SSL
|