sensu-plugins-http 4.1.0 → 5.0.0
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 +11 -1
- data/README.md +5 -0
- data/lib/sensu-plugins-http/version.rb +2 -2
- metadata +5 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9a64362b7bb7f0d7360ffd6b63d39858bdafafc801e60eaedfeb69efc864662
|
4
|
+
data.tar.gz: 870ef5758fb885a1fc88984c2fad94651d7e8824ec891692f133a71320faa9e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9f4cd69bb0b5a1457d7ee4521d8ce0453ea3b5821b21c5b7b679760be470a55188002c9d9db6dee57115357dc040f3657a12f6898e97f8f974df19cc77ffe11
|
7
|
+
data.tar.gz: 6ad523d9d42a06262945ef2b0317424135c00b78e6a3d2c83c4ff91b3a52d59c5a1f95c74c319e2e0937d94f0cd15b8739f371d6fb8808b074cf35ec77518e7a
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,15 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
|
|
5
5
|
|
6
6
|
## [Unreleased]
|
7
7
|
|
8
|
+
## [5.0.0] - 2019-04-18
|
9
|
+
### Breaking Changes
|
10
|
+
- Bump `sensu-plugin` dependency from `~> 3.0` to `~> 4.0` you can read the changelog entries for [4.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#400---2018-02-17)
|
11
|
+
- Disable kitchen tests
|
12
|
+
|
13
|
+
### Added
|
14
|
+
- Travis build automation to generate Sensu Asset tarballs that can be used n conjunction with Sensu provided ruby runtime assets and the Bonsai Asset Index
|
15
|
+
|
16
|
+
|
8
17
|
## [4.1.0] - 2019-02-17
|
9
18
|
### Added
|
10
19
|
- `check-http.rb`: Add options to set `--open-timeout` and `--read-timeout` for Net:HTTP. Additionally rescue `Net::OpenTimeout` and `Net::ReadTimeout` exception classes (@johanek)
|
@@ -225,7 +234,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
|
|
225
234
|
### Added
|
226
235
|
- Initial release
|
227
236
|
|
228
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-http/compare/
|
237
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-http/compare/5.0.0...HEAD
|
238
|
+
[5.0.0]: https://github.com/sensu-plugins/sensu-plugins-http/compare/4.1.0...5.0.0
|
229
239
|
[4.1.0]: https://github.com/sensu-plugins/sensu-plugins-http/compare/4.0.0...4.1.0
|
230
240
|
[4.0.0]: https://github.com/sensu-plugins/sensu-plugins-http/compare/3.0.1...4.0.0
|
231
241
|
[3.0.1]: https://github.com/sensu-plugins/sensu-plugins-http/compare/3.0.0...3.0.1
|
data/README.md
CHANGED
@@ -3,6 +3,11 @@
|
|
3
3
|
[](https://travis-ci.org/sensu-plugins/sensu-plugins-http)
|
4
4
|
[](http://badge.fury.io/rb/sensu-plugins-http)
|
5
5
|
[](https://gemnasium.com/sensu-plugins/sensu-plugins-http)
|
6
|
+
[](https://bonsai.sensu.io/assets/sensu-plugins/sensu-plugins-http)
|
7
|
+
|
8
|
+
## Sensu Asset
|
9
|
+
The Sensu assets packaged from this repository are built against the Sensu ruby runtime environment. When using these assets as part of a Sensu Go resource (check, mutator or handler), make sure you include the corresponding Sensu ruby runtime asset in the list of assets needed by the resource. The current ruby-runtime assets can be found [here](https://bonsai.sensu.io/assets/sensu/sensu-ruby-runtime) in the [Bonsai Asset Index](bonsai.sensu.io).
|
10
|
+
|
6
11
|
|
7
12
|
## Functionality
|
8
13
|
|
metadata
CHANGED
@@ -1,33 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sensu-plugins-http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.0
|
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: 2019-
|
11
|
+
date: 2019-04-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sensu-plugin
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '3.0'
|
20
|
-
- - "<"
|
17
|
+
- - "~>"
|
21
18
|
- !ruby/object:Gem::Version
|
22
19
|
version: '4.0'
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- - "
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '3.0'
|
30
|
-
- - "<"
|
24
|
+
- - "~>"
|
31
25
|
- !ruby/object:Gem::Version
|
32
26
|
version: '4.0'
|
33
27
|
- !ruby/object:Gem::Dependency
|
@@ -300,7 +294,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
300
294
|
- !ruby/object:Gem::Version
|
301
295
|
version: '0'
|
302
296
|
requirements: []
|
303
|
-
rubygems_version: 3.0.
|
297
|
+
rubygems_version: 3.0.3
|
304
298
|
signing_key:
|
305
299
|
specification_version: 4
|
306
300
|
summary: Sensu plugins for various http monitors and metrics
|