sensu-plugins-aws 7.1.0 → 8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 642a5f59535c19e584bf6b5fc030bff2e58bb6e1
4
- data.tar.gz: a8e1650f5e03e6db3b7cc4a3beab15927b5fe2e0
3
+ metadata.gz: d910f32661d096968c169850cc1e4152e26ba551
4
+ data.tar.gz: ab4e699cff566384ea3d23f3b63c6bfca3d4f2e0
5
5
  SHA512:
6
- metadata.gz: 508d9dcc967f89eb6fddfd8f96f70cbd4b7b8d836a4279de77f4d929d72abe9c22ee6ed6d58b43964127570ab736b362bc4f2534565ad4ac79e28d549edcd53d
7
- data.tar.gz: ee5ae8a6ad649711044044531daa82d7edcfa6a2c1d33220b6bb7eaf6d87959333e1106af923b1fb6fbde68c8bb198d45ff20afa8768d24b8e0737a78732b244
6
+ metadata.gz: 31476cd9c8ea48ec1ffbf4ba175939368efdc3bd580a9dcc3c52929e9e48fee66d233a02de0d66cbeb6f323f694b068de01a710945fabe006ddb82f249c5c754
7
+ data.tar.gz: e354d8bfd167f4a75b397073afda995a2f416233bd7b7f36b5e0323e063b148137a9273affdef026f5d11060d02b429d27c98a0177cf009acdf99f9e92ff2dd0
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
+ ## [8.0.0] - 2017-08-20
9
+ ### Breaking Changes
10
+ - check-beanstalk-elb-metric.rb and check-cloudwatch-metric.rb: `--opertor` flag was a typo, please use `--operator` now. (@guikcd)
11
+
8
12
  ## [7.1.0] - 2017-08-14
9
13
  ### Added
10
14
  - Add `check-alb-target-group-health.rb` that checks the health of ALB target groups (@eheydrick)
@@ -348,7 +352,8 @@ WARNING: This release contains major breaking changes that will impact all user
348
352
  ### Added
349
353
  - initial release
350
354
 
351
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.1.0...HEAD
355
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/8.0.0...HEAD
356
+ [8.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.1.0...8.0.0
352
357
  [7.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.0.1...7.1.0
353
358
  [7.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.0.0...7.0.1
354
359
  [7.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.3.0...7.0.0
@@ -85,7 +85,7 @@ class BeanstalkELBCheck < Sensu::Plugin::Check::CLI
85
85
  option :compare,
86
86
  description: 'Comparision operator for threshold: equal, not, greater, less',
87
87
  short: '-o OPERATION',
88
- long: '--opertor OPERATION',
88
+ long: '--operator OPERATION',
89
89
  default: 'greater'
90
90
 
91
91
  option :no_data_ok,
@@ -91,7 +91,7 @@ class CloudWatchMetricCheck < Sensu::Plugin::Check::CLI
91
91
  option :compare,
92
92
  description: 'Comparision operator for threshold: equal, not, greater, less',
93
93
  short: '-o OPERATION',
94
- long: '--opertor OPERATION',
94
+ long: '--operator OPERATION',
95
95
  default: 'greater'
96
96
 
97
97
  option :no_data_ok,
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsAWS
2
2
  module Version
3
- MAJOR = 7
4
- MINOR = 1
3
+ MAJOR = 8
4
+ MINOR = 0
5
5
  PATCH = 0
6
6
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
7
7
  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: 7.1.0
4
+ version: 8.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: 2017-08-14 00:00:00.000000000 Z
11
+ date: 2017-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk