sensu-plugins-aws 6.1.0 → 6.1.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: 3cdde9fa46f872658ce2396d7bf0f2f5862e9a86
4
- data.tar.gz: 6342b8ccc60c5ed59c362346d57af0bbdcd40b3c
3
+ metadata.gz: deda2bd39a86f8e6c57041c434f79e37a6b9c2e4
4
+ data.tar.gz: 95bdde270de14b069be0dd17e49a5285daba775e
5
5
  SHA512:
6
- metadata.gz: d721df6822b4df50b498de6a2172d37827da1a2b8ad6224d5be4f90749ab45961d988cf6712cd4ffa165135da52b38198ff0657c034bdc8536d3ca6bc221c915
7
- data.tar.gz: a04f839915ef6cb365c276b4c6d2e972d62a7fd3bbc7f358be49c0a1711f9465c724963bb8539dbae96cbf4a82a2bb1f78ef8490496f21e13415fd71e84af9d7
6
+ metadata.gz: 9c85225a0ea700839cad7c7e0afd6406392ad7e1634b3e589d6bc68fc6995e7120b5661734db2b5ccb8075a4c92255f99802be39acffcaa6618ea023df4d609c
7
+ data.tar.gz: ff38dc81f8104b832426203ba93a537871e8a577941195e1eace8442d5fac9a12db713b3178521951844dbece9f95782833d33d755f51cdcb722586ac9ec90ba
@@ -4,6 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
6
  ## [Unreleased]
7
+ ## [6.1.1] - 2017-07-07
8
+ ### Added
9
+ - ruby 2.4 testing (@majormoses)
10
+
11
+ ### Changed
12
+ - misc repo fixes (@majormoses)
13
+
14
+ ### Fixed
15
+ - check-asg-instances-created check fails due to int and string comparison
7
16
 
8
17
  ## [6.1.0] - 2017-06-23
9
18
  ### Added
@@ -312,7 +321,8 @@ WARNING: This release contains major breaking changes that will impact all user
312
321
  ### Added
313
322
  - initial release
314
323
 
315
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.1.0...HEAD
324
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.1.1...HEAD
325
+ [6.1.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.1.0...6.1.1
316
326
  [6.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.0.1...6.1.0
317
327
  [6.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.0.0...6.0.1
318
328
  [6.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/5.1.0...6.0.0
@@ -50,12 +50,14 @@ class CheckAsgInstanceCreated < Sensu::Plugin::Check::CLI
50
50
  option :warning_limit,
51
51
  short: '-w W',
52
52
  long: '--warning_limit Warning Limit',
53
- description: 'Warning Limit for launching and terminated instances'
53
+ description: 'Warning Limit for launching and terminated instances',
54
+ proc: proc(&:to_i)
54
55
 
55
56
  option :critical_limit,
56
57
  short: '-c C',
57
58
  long: '--critical_limit Critical Limit',
58
- description: 'Critical Limit for launching and terminated instances'
59
+ description: 'Critical Limit for launching and terminated instances',
60
+ proc: proc(&:to_i)
59
61
 
60
62
  def asg
61
63
  @asg = Aws::AutoScaling::Client.new
@@ -2,7 +2,7 @@ module SensuPluginsAWS
2
2
  module Version
3
3
  MAJOR = 6
4
4
  MINOR = 1
5
- PATCH = 0
5
+ PATCH = 1
6
6
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.0
4
+ version: 6.1.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-06-23 00:00:00.000000000 Z
11
+ date: 2017-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk