sensu-plugins-chef 2.0.0 → 2.0.1

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
  SHA1:
3
- metadata.gz: 3971631f73dc4e3e75b0e0d1ad1af40b819edc1d
4
- data.tar.gz: abc852addefd842b4dfa8fb7454fa61ae3bc6917
3
+ metadata.gz: 64e900ca4c05e0ade6b23a68681d3dc75790f363
4
+ data.tar.gz: 13a83f5184299dcc868b45eb5790dba31d811032
5
5
  SHA512:
6
- metadata.gz: a24f03c5cff88ac5090be87526f0c89e41bb46ae49bc87e39d83bae92e72d0d52bb15635b07ca1e3a6e71e961b3f3f1d182c23e8e130894856e32034e8ba1538
7
- data.tar.gz: e019f754a548e1278dfb7a7520c17fe77d91c54d8d61b683d37cccf6fb52e7bb50a9cd448589f627cd368ac160f0ba704f868fa0364c6d429ec1667e29ba7365
6
+ metadata.gz: 428455e3c3fc28e5c1ccc0b6f727b5b84b68679dd320066b5431332f78d963cb5e4a9b7db88eea7a137abcd83ab1935d8a61dca32e2a0d859e680fa2a707735e
7
+ data.tar.gz: 21d455319a2943255fd3869a432393c72e5272dc2a158cf7b11c1f20941feb9f15b645659068e6d5bc877ac57003f356cd2ee605e38557081e09522e3519a613
data/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [2.0.1] - 2017-04-28
9
+ ### Fixed
10
+ - fixed issue with uninitialized constant (@majormoses)
11
+
8
12
  ## [2.0.0] - 2017-02-12
9
13
  ### Added
10
14
  - `check-chef-nodes.rb`: make client name required and set a sane default (@majormoses)
@@ -62,7 +66,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
62
66
  ### Added
63
67
  - initial release
64
68
 
65
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/2.0.0...HEAD
69
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/2.0.1...HEAD
70
+ [2.0.1]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/2.0.0...2.0.1
66
71
  [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/1.0.0...2.0.0
67
72
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/0.0.6...1.0.0
68
73
  [0.0.6]: https://github.com/sensu-plugins/sensu-plugins-chef/compare/0.0.5...0.0.6
@@ -27,7 +27,7 @@
27
27
  #
28
28
 
29
29
  require 'sensu-plugin/check/cli'
30
- require 'chef'
30
+ require 'chef/rest'
31
31
 
32
32
  class ChefNodeChecker < Sensu::Plugin::Check::CLI
33
33
  option :node_name,
@@ -32,7 +32,7 @@
32
32
  #
33
33
 
34
34
  require 'sensu-plugin/check/cli'
35
- require 'chef'
35
+ require 'chef/rest'
36
36
 
37
37
  #
38
38
  # Chef Nodes Status Checker
@@ -2,7 +2,7 @@ module SensuPluginsChef
2
2
  module Version
3
3
  MAJOR = 2
4
4
  MINOR = 0
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-chef
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.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: 2017-02-13 00:00:00.000000000 Z
11
+ date: 2017-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef