sensu-plugins-load-checks 4.0.2 → 5.0.0

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
  SHA256:
3
- metadata.gz: c5d5966fa51d20260f0c1f30e13f7a5979bfe82c6221879688da323bcf2deec1
4
- data.tar.gz: 3dc23a0c57ae57d228ae8b222c5a76e5be43423acd7098c54973809228be4ff8
3
+ metadata.gz: a14c5394b81da1edfb12594ffd8ba9528d891641e933ef7ae105563b52b96fd5
4
+ data.tar.gz: aaa59d945810c1b4d9844326433bbf4e72045d3b49374f2f7afad0437c978c9a
5
5
  SHA512:
6
- metadata.gz: c67085282e1fb6f8e4de07069af8211b57e55bf972e4bc7b1e16eb5ffd9cc6e55ed47139761a85a58d3b1b7334f8458ea61206d0c97b9fb03d91fa7fb0a0aec2
7
- data.tar.gz: 18b89d4e747842f63ccf229d1fd4015ac2e59af62f2f9697344ccf4d1dd38b12445774cdce8d860b7dc4e607f916108c7e002f9361ac77544a38d8d25d9f6dd7
6
+ metadata.gz: ef2be232b618935f406d84a8403910fc4b096bcb047cae156bcce714af96393b11a83009eb7d7cbc021b521089b7af39d3c88420d1f971eccef8421e7e6e9cfa
7
+ data.tar.gz: 115e9f0eeeac929a41bfdecc7f7e386e80f4a743113b9aa3f28c25a1b677dbd2c9423259b5626c7d0826c8581a4873c13ee18b56b4779afa479b4e0d872e4db2
data/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ 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
+ - Update minimum required ruby version to 2.3. Drop unsupported ruby versions.
11
+ - Bump `sensu-plugin` dependency from `~> 1.2` 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), [3.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#300---2018-12-04), and [2.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#v200---2017-03-29)
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
+ - Require latest sensu-plugin for [Sensu Go support](https://github.com/sensu-plugins/sensu-plugin#sensu-go-enablement)
16
+
17
+
8
18
  ## [4.0.2] - 2018-03-27
9
19
  ### Security
10
20
  - updated yard dependency to `~> 0.9.11` per: https://nvd.nist.gov/vuln/detail/CVE-2017-17042 (@majormoses)
@@ -85,7 +95,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
85
95
  ### Added
86
96
  - initial release
87
97
 
88
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-load-checks/compare/4.0.2...HEAD
98
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-load-checks/compare/5.0.0...HEAD
99
+ [5.0.0]: https://github.com/sensu-plugins/sensu-plugins-load-checks/compare/4.0.2...5.0.0
89
100
  [4.0.2]: https://github.com/sensu-plugins/sensu-plugins-load-checks/compare/4.0.1...4.0.2
90
101
  [4.0.1]: https://github.com/sensu-plugins/sensu-plugins-load-checks/compare/4.0.0...4.0.1
91
102
  [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-load-checks/compare/3.0.0...4.0.0
data/README.md CHANGED
@@ -5,6 +5,10 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-load-checks/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-load-checks)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-load-checks/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-load-checks)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-load-checks.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-load-checks)
8
+ [![Sensu Bonsai Asset](https://img.shields.io/badge/Bonsai-Download%20Me-brightgreen.svg?colorB=89C967&logo=sensu)](https://bonsai.sensu.io/assets/sensu-plugins/sensu-plugins-load-checks)
9
+
10
+ ## Sensu Asset
11
+ 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).
8
12
 
9
13
  ## Functionality
10
14
 
@@ -1,8 +1,8 @@
1
1
  module SensuPluginsLoadChecks
2
2
  module Version
3
- MAJOR = 4
3
+ MAJOR = 5
4
4
  MINOR = 0
5
- PATCH = 2
5
+ PATCH = 0
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-load-checks
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
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: 2018-03-27 00:00:00.000000000 Z
11
+ date: 2019-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.2'
19
+ version: '4.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.2'
26
+ version: '4.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -98,22 +98,22 @@ dependencies:
98
98
  name: mixlib-shellout
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - "<"
102
- - !ruby/object:Gem::Version
103
- version: 2.3.0
104
101
  - - "~>"
105
102
  - !ruby/object:Gem::Version
106
103
  version: '2.2'
104
+ - - "<"
105
+ - !ruby/object:Gem::Version
106
+ version: 2.3.0
107
107
  type: :development
108
108
  prerelease: false
109
109
  version_requirements: !ruby/object:Gem::Requirement
110
110
  requirements:
111
- - - "<"
112
- - !ruby/object:Gem::Version
113
- version: 2.3.0
114
111
  - - "~>"
115
112
  - !ruby/object:Gem::Version
116
113
  version: '2.2'
114
+ - - "<"
115
+ - !ruby/object:Gem::Version
116
+ version: 2.3.0
117
117
  - !ruby/object:Gem::Dependency
118
118
  name: pry
119
119
  requirement: !ruby/object:Gem::Requirement
@@ -263,15 +263,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
263
263
  requirements:
264
264
  - - ">="
265
265
  - !ruby/object:Gem::Version
266
- version: 2.1.0
266
+ version: '2.3'
267
267
  required_rubygems_version: !ruby/object:Gem::Requirement
268
268
  requirements:
269
269
  - - ">="
270
270
  - !ruby/object:Gem::Version
271
271
  version: '0'
272
272
  requirements: []
273
- rubyforge_project:
274
- rubygems_version: 2.7.6
273
+ rubygems_version: 3.0.3
275
274
  signing_key:
276
275
  specification_version: 4
277
276
  summary: Sensu plugins for load checks