sensu-plugins-chef 6.0.0 → 7.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: 3b4e07e98db7b0da112b080832c2e8367e7dab8fd67c5b47564ae250337c7eda
4
- data.tar.gz: 2d60522b48818090f2f0ca169fc1a0f1fc2c7ec945068d148cb913ee11461735
3
+ metadata.gz: e5a3091f48716a0af51085b2553ae6e3a68c7107f22b909bcdd02e55a205fe22
4
+ data.tar.gz: 00c2ff6e4fbaed34eb1d76034cfc956a0d9ceceb1162c43f3405b879098b60ee
5
5
  SHA512:
6
- metadata.gz: fd47c88191f032f422a1c612803d329337e3a9b25e552ab2e0a30385c291a9552bd5e6ab993f2e6cc12baea2feef41afdc8c21096991f416d5ccb4a55b25b084
7
- data.tar.gz: 62e46830ec47ad05a85012c3cc37438909e7074a2cc66bfc506b2f6e39a0331f28762a3b551381c9248dacb2456873bba5f55cf9016a083ee77aed034ff13c98
6
+ metadata.gz: 697a7dccbf9ec43de5be55f90744c699d8c2e8029520f2c0a028db63f23ee086d8606ce03ac4cc6c1d02406b774fe798cf6b324578cc6ee753d226863b019c33
7
+ data.tar.gz: 19f26e09602d06f612f5a36337314328615ed047fd0d90b332247998ae5132bc83eec1b9c5b4f92f63d9329f069187949088260b99656eafd81478e6e118486e
@@ -5,6 +5,16 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [7.0.0] - 2019-4-19
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), [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)
11
+
12
+ ### Added
13
+ - 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
14
+ - Require latest sensu-plugin for [Sensu Go support](https://github.com/sensu-plugins/sensu-plugin#sensu-go-enablement)
15
+
16
+ ## [6.0.0] - 2018-12-15
17
+
8
18
  ## [5.0.1] - 2018-03-28
9
19
  ### Security
10
20
  - updated yard dependency to `~> 0.9.11` per: https://nvd.nist.gov/vuln/detail/CVE-2017-17042 (@majormoses)
@@ -104,8 +114,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
104
114
  ### Added
105
115
  - initial release
106
116
 
107
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/5.0.1...HEAD
108
- [5.1.0]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/5.0.0...5.0.1
117
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/7.0.0...HEAD
118
+ [7.0.0]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/6.0.0...7.0.0
119
+ [6.0.0]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/5.0.1...6.0.1
120
+ [5.0.1]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/5.0.0...5.0.1
109
121
  [5.0.0]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/4.0.0...5.0.0
110
122
  [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/3.0.2...4.0.0
111
123
  [3.0.2]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/3.0.2...3.0.1
data/README.md CHANGED
@@ -4,6 +4,10 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-chef.svg)](http://badge.fury.io/rb/sensu-plugins-chef)
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-chef/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-chef)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-chef/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-chef)
7
+ [![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-chef)
8
+
9
+ ## Sensu Asset
10
+ 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).
7
11
 
8
12
 
9
13
  ## Functionality
@@ -21,3 +25,4 @@
21
25
  [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
22
26
 
23
27
  ## Notes
28
+ When using `handler-chef-node.rb` with Sensu Go, you will need to use the event mapping commandline option, see `handler-chef-node.rb --help` for details. And please read [the sensu-plugin README](https://github.com/sensu-plugins/sensu-plugin#sensu-go-enablement) for more information on the event mapping functionality.
@@ -1,6 +1,6 @@
1
1
  module SensuPluginsChef
2
2
  module Version
3
- MAJOR = 6
3
+ MAJOR = 7
4
4
  MINOR = 0
5
5
  PATCH = 0
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-chef
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 7.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-12-15 00:00:00.000000000 Z
11
+ date: 2019-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hashie
@@ -50,14 +50,14 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '3.0'
53
+ version: '4.0'
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '3.0'
60
+ version: '4.0'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: varia_model
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -246,8 +246,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
246
246
  - !ruby/object:Gem::Version
247
247
  version: '0'
248
248
  requirements: []
249
- rubyforge_project:
250
- rubygems_version: 2.7.8
249
+ rubygems_version: 3.0.3
251
250
  signing_key:
252
251
  specification_version: 4
253
252
  summary: Sensu plugins for chef