sensu-plugins-environmental-checks 1.1.0 → 1.2.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
- SHA1:
3
- metadata.gz: 8daf34425dcb66a605ba5a480d3e8b761f2e1c76
4
- data.tar.gz: 44c120575ecfe122db0e580d467021509d5ffb19
2
+ SHA256:
3
+ metadata.gz: 6bee56e390bb36facb3b78f20720033bc87cd83b6fce81d2bb62b7dc15d4943f
4
+ data.tar.gz: dd14fc73adf9b5bf48f02f0f0304d47179c934d52b9421651f132424f8a5829b
5
5
  SHA512:
6
- metadata.gz: 8156bf488b89a740124a320304550074ca1dbaf6d5f316774780700180bcafceadb8dbb7745d8815dad351f4dd392f210d3fafc960b923b0820bb0a33f3d9974
7
- data.tar.gz: 36f19f586fd14cc8f77eaadbcf159d1836b530303d614287ffd5f33b22cb2aef699a7edcd67ffe0c40550631e406ed3a38780ffefab0628d3d9aac2e40a81e86
6
+ metadata.gz: a0cb424cb709a3ae85231005b84cb9db82db75778c47adccbcaf8c6c1f4e37718654201dff1932618d4957d9175ce60e59712169a9877868011e0f7a20f7cd18
7
+ data.tar.gz: 5fca595d99e38d4ade58d5284cecdd459bed4f24b321cbdb69f83946bfd4a7a0cb1fe01d3c41ef9bf36d876b6ee7874953b912d5c794011d808d645b87060370
@@ -1,10 +1,20 @@
1
1
  # Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
- This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
4
+ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [1.2.0] - 2018-02-13
9
+ ### Removed
10
+ - `check-temperature.rb`: removed unnecessary `print`
11
+
12
+ ### Changed
13
+ - updated changelog guidelines location (@majormoses)
14
+
15
+ ### Fixed
16
+ - fixed spelling in PR template (@majormoses)
17
+
8
18
  ## [1.1.0] - 2017-05-17
9
19
  - add temperature check (@holygits)
10
20
 
@@ -36,7 +46,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
36
46
  ### Added
37
47
  - initial release
38
48
 
39
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-environmental-checks/compare/1.1.0...HEAD
49
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-environmental-checks/compare/1.2.0...HEAD
50
+ [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-environmental-checks/compare/1.1.0...1.2.0
40
51
  [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-environmental-checks/compare/1.0.0...1.1.0
41
52
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-environmental-checks/compare/0.0.3...1.0.0
42
53
  [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-environmental-checks/compare/0.0.2...0.0.3
@@ -71,7 +71,6 @@ class CheckTemperature < Sensu::Plugin::Check::CLI
71
71
  end
72
72
  end
73
73
  metrics.each do |k, v|
74
- print(v)
75
74
  current, high, critical = v
76
75
  if current > critical
77
76
  @crit_temp << "#{k} has exceeded CRITICAL temperature @ #{current}°C"
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsEnvironmentalChecks
2
2
  module Version
3
3
  MAJOR = 1
4
- MINOR = 1
4
+ MINOR = 2
5
5
  PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-environmental-checks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.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-05-18 00:00:00.000000000 Z
11
+ date: 2018-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -193,7 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
193
193
  version: '0'
194
194
  requirements: []
195
195
  rubyforge_project:
196
- rubygems_version: 2.4.5
196
+ rubygems_version: 2.7.5
197
197
  signing_key:
198
198
  specification_version: 4
199
199
  summary: Sensu plugins for environmental-checks