sensu-plugins-xmpp 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
2
  SHA1:
3
- metadata.gz: ce18abd8aec9928b9dd13b6974da626b3ee0171b
4
- data.tar.gz: e71157aeafdd35bcb6f31f2d1135beb2fae807cd
3
+ metadata.gz: 290cf1f726c9f0603b72843f73cb6963256ada46
4
+ data.tar.gz: bc3d74f11d7ba4bf2dfcc24497a3c96c71bde861
5
5
  SHA512:
6
- metadata.gz: ea9eedd061a6ee8a0c961cd4ec8028ffc9c079615a9887aca838d5917fa42d112b9a0cc35a18d4d19cf62ba7b04584d9c3d12f00752915038f73653de5dfbc46
7
- data.tar.gz: 02ec63fcb4dedf30247befe6b583673952f1153daa811185338c4b4a5ecbf9b1c2fd02b79aa919acedbe182ac2e6843cc6f5959b39d445c93ad035b5df70d033
6
+ metadata.gz: 04245c4326f9ed65d196b512f04deaec53d9c36b76b72adb02466b76126c5f47c82f8750a278fc123f6d75247950bb7d3269f709e3e3dd59924d6990f98a287b
7
+ data.tar.gz: eaddacdf9a07aac35bd0c7349eb49838daab89e9d25a298f92a97f75fec2cdcbf66af99049249e12d3b02a5421202f03cbd9502648b6c98e9fc60dfc1ff31f0a
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
+ ## [1.0.1] - 2017-08-04
9
+ ### Fixed
10
+ - check-xmpp-login.rb do not rescue from SystemExit (@ushis)
11
+
8
12
  ## [1.0.0] - 2017-05-16
9
13
  ### Added
10
14
  - check-xmpp-login.rb (@ushis)
@@ -28,7 +32,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
28
32
  ### Added
29
33
  - initial release
30
34
 
31
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/1.0.0...HEAD
35
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/1.0.1...HEAD
36
+ [1/0/1]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/1.0.0...1.0.1
32
37
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.3...1.0.0
33
38
  [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.2...0.0.3
34
39
  [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.1...0.0.2
@@ -62,7 +62,7 @@ class CheckXmppLogin < Sensu::Plugin::Check::CLI
62
62
  ok "Logged in as #{config[:jid]}"
63
63
  rescue Jabber::ClientAuthenticationFailure
64
64
  warning 'Login failed: Invalid jid or password'
65
- rescue Exception => err # rubocop:disable RescueException
65
+ rescue StandardError => err
66
66
  critical "Failed to connect to XMPP server: #{err.message}"
67
67
  end
68
68
  end
@@ -2,7 +2,7 @@ module SensuPluginsXmpp
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-xmpp
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-17 00:00:00.000000000 Z
11
+ date: 2017-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin