sensu-plugins-supervisor 1.0.0 → 1.0.1

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: 05200e2af808570d2d83be9376de7084e8772c76
4
- data.tar.gz: 7b055ef57e4c68875501dcf42ca7dc1c0e61ce8a
3
+ metadata.gz: 715133a09a70f9ac86561b03a772193da915f073
4
+ data.tar.gz: ebef561e897794e732b2a45ccc9e9338be9796e5
5
5
  SHA512:
6
- metadata.gz: e865604e5fa0135abb067ed4d0d66c1118be5e74f21c14042461f1b1903314be1036e61e391d5baf8e4a251a585f58be50005a6a3a726ac28c09075a2ceb8aed
7
- data.tar.gz: e7b8eb8549af739fb9e4809f97d837d5160cddc2642b5315b48b8eb05ebb3a072836cff2429830274935f03e5232a97dd233261205f776833e01137f01e61ef9
6
+ metadata.gz: 42d05b56096ed4be7a6f58a4cb8a9f1384e3229c7279945613426371977b60be4b42f326a18fd527abb016e7ecfdd8532078125098021d56449a019abeb34101
7
+ data.tar.gz: d7e0f0e482c3664fdfac6b70d2ab1c56bcea7a515f1ba66cccdf4da7da65d03e1935151f37a9507f6728bd9946e271a00b48da1d366c967f0fd8c6f22353e398
data/CHANGELOG.md CHANGED
@@ -4,6 +4,9 @@ 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
+ ## [1.0.1] 2017-06-01
8
+ ### Fixed
9
+ - check-supervisor-socket.rb: update XMLRPC::XMLParser::XMLStreamParser to XMLRPC::XMLParser::LibXMLStreamParser as per issue https://github.com/sensu-plugins/sensu-plugins-supervisor/issues/16
7
10
 
8
11
  ## [1.0.0] - 2016-11-07
9
12
  ### Added
@@ -44,7 +47,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
44
47
  ### Added
45
48
  - initial release
46
49
 
47
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/1.0.0...HEAD
50
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/1.0.1...HEAD
51
+ [1.0.1]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/1.0.1...1.0.0
48
52
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/0.0.4...1.0.0
49
53
  [0.0.4]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/0.0.3...0.0.4
50
54
  [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-supervisor/compare/0.0.2...0.0.3
@@ -90,7 +90,7 @@ class CheckSupervisorSocket < Sensu::Plugin::Check::CLI
90
90
  response.reading_body(@super, request.response_body_permitted?) {}
91
91
  @super.close
92
92
 
93
- success, result = XMLRPC::XMLParser::XMLStreamParser.new.parseMethodResponse(response.body)
93
+ success, result = XMLRPC::XMLParser::LibXMLStreamParser.new.parseMethodResponse(response.body)
94
94
  raise unless success
95
95
  rescue => e
96
96
  critical "Tried requesting XMLRPC 'supervisor.getAllProcessInfo' from UNIX domain socket #{config[:socket]} but failed: #{e}"
@@ -2,7 +2,7 @@ module SensuPluginsSupervisor
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-supervisor
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: 2016-11-07 00:00:00.000000000 Z
11
+ date: 2017-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-supervisor