sensu-plugins-sip 1.0.0 → 1.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
- SHA1:
3
- metadata.gz: 1c570397f164cae31199b9d48e8813c24bfa26bc
4
- data.tar.gz: dae743fadb8c76f9542f7b5750f6d37f1c4d5c51
2
+ SHA256:
3
+ metadata.gz: 3a7f0d5f27abf7cda3ecb11de42f58ddec1987a13fc929da5a7a3f6e26b7858a
4
+ data.tar.gz: 544fa705701ba5acac696e4e3c4949abaa3d375068255990a5ca7010968c8b42
5
5
  SHA512:
6
- metadata.gz: 58b0370a99e7e71391f1cde24aa2cd9baa7614e81897c5d11e93520810f71a79054e6ec753b5c4b4614b931193ab2f6cb2939d74b8fcfafc5d262b46c94381f9
7
- data.tar.gz: 27e1c67634637bb1bb6d7f0901b59c92385f9bc2d8512dc7b046e812034716a0df7663eec1227348b95b8885449bafeb76a39280eb85b7918b00a21d09df3eed
6
+ metadata.gz: 9f40c4969f8ff86420346e16031be79358f07c44790064f663badf7ca31f6312abf6faeb39a29906aaa65d42e8a11da13cd554503a96c59bd83b297a84b00af0
7
+ data.tar.gz: bef0d8d0653c6058f0f2d6508a7fa8df2ffdf456efdd5319d61185f81fe814446589d25a136e1e365ea72cc1cb622f0ba92906e7eb543ffe7484140e1dce4b06
@@ -1,10 +1,17 @@
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.0.1] - 2018-07-18-2018
9
+ ### Fixed
10
+ - address deprecation warning for `timeout` (@lcx)
11
+
12
+ ### Changed
13
+ - updated changelog guidelines links (@majormoses)
14
+
8
15
  ## [1.0.0] - 2017-05-25
9
16
  ### Added
10
17
  - Support for Ruby 2.3 and 2.4 (@eheydrick)
@@ -23,6 +30,7 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
23
30
  ### Added
24
31
  - initial release
25
32
 
26
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-sip/compare/1.0.0...HEAD
33
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-sip/compare/1.0.1...HEAD
34
+ [1.0.1]: https://github.com/sensu-plugins/sensu-plugins-sip/compare/1.0.0...1.0.1
27
35
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-sip/compare/0.0.2...1.0.0
28
36
  [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-sip/compare/0.0.1...0.0.2
@@ -86,7 +86,7 @@ class SIP < Sensu::Plugin::Check::CLI
86
86
  s.connect(config[:host], config[:port])
87
87
  req = build_request(hostname, s.addr[1], config[:sipuri])
88
88
  response = ''
89
- timeout(config[:timeout]) do
89
+ Timeout.timeout(config[:timeout]) do
90
90
  s.send(req, 0)
91
91
  response = s.recvfrom(1024)[0]
92
92
  end
@@ -2,7 +2,7 @@ module SensuPluginsSip
2
2
  module Version
3
3
  MAJOR = 1
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-sip
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.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-05-26 00:00:00.000000000 Z
11
+ date: 2018-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -189,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
189
  version: '0'
190
190
  requirements: []
191
191
  rubyforge_project:
192
- rubygems_version: 2.4.5
192
+ rubygems_version: 2.7.7
193
193
  signing_key:
194
194
  specification_version: 4
195
195
  summary: Sensu plugins for sip