sensu-plugins-xmpp 1.0.1 → 2.0.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
2
  SHA1:
3
- metadata.gz: 290cf1f726c9f0603b72843f73cb6963256ada46
4
- data.tar.gz: bc3d74f11d7ba4bf2dfcc24497a3c96c71bde861
3
+ metadata.gz: f85c6e063bd06fac489a86e0050a8bee9acfe59d
4
+ data.tar.gz: ae8a2434bef437b6a812be6d69dce58bd1acbba2
5
5
  SHA512:
6
- metadata.gz: 04245c4326f9ed65d196b512f04deaec53d9c36b76b72adb02466b76126c5f47c82f8750a278fc123f6d75247950bb7d3269f709e3e3dd59924d6990f98a287b
7
- data.tar.gz: eaddacdf9a07aac35bd0c7349eb49838daab89e9d25a298f92a97f75fec2cdcbf66af99049249e12d3b02a5421202f03cbd9502648b6c98e9fc60dfc1ff31f0a
6
+ metadata.gz: 34601956ffc010aba855aaecd2ccb4876177a3daa2530ab4be9ff83402a97394e2c5a02fc8d03bb8db6b2c402498e742a0582d9b0e7ad152b5cae79fe19bf811
7
+ data.tar.gz: d84d7312d1a048a369ac6148b735c4d3c8268927f1597b1fb823a70ec90ec72382247b6947ed04f2433ff808fbffc225b5a8a2635d43bc7b1f9a70b0d0bf34cd
@@ -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
+ ## [2.0.0] - 2018-02-27
9
+ ### Security
10
+ - updated rubocop dependency to `~> 0.51.0` per: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8418 (@majormoses)
11
+
12
+ ### Breaking Changes
13
+ - removed ruby `< 2.1` support (@majormoses)
14
+
15
+ ### Changed
16
+ - updated Changelog guidelines location (@majormoses)
17
+
8
18
  ## [1.0.1] - 2017-08-04
9
19
  ### Fixed
10
20
  - check-xmpp-login.rb do not rescue from SystemExit (@ushis)
@@ -32,8 +42,9 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
32
42
  ### Added
33
43
  - initial release
34
44
 
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
45
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/2.0.0...HEAD
46
+ [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/1.0.1...2.0.0
47
+ [1.0.1]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/1.0.0...1.0.1
37
48
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.3...1.0.0
38
49
  [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.2...0.0.3
39
50
  [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.1...0.0.2
@@ -4,6 +4,8 @@
4
4
  require 'sensu-handler'
5
5
  require 'xmpp4r/client'
6
6
  require 'xmpp4r/muc'
7
+
8
+ # TODO: investigate if a require is correct and if not how to fix this.
7
9
  include Jabber
8
10
 
9
11
  class XmppHandler < Sensu::Handler
@@ -1,8 +1,8 @@
1
1
  module SensuPluginsXmpp
2
2
  module Version
3
- MAJOR = 1
3
+ MAJOR = 2
4
4
  MINOR = 0
5
- PATCH = 1
5
+ PATCH = 0
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.1
4
+ version: 2.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-04 00:00:00.000000000 Z
11
+ date: 2018-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -123,33 +123,33 @@ dependencies:
123
123
  - !ruby/object:Gem::Version
124
124
  version: '3.2'
125
125
  - !ruby/object:Gem::Dependency
126
- name: rubocop
126
+ name: rspec
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: 0.40.0
131
+ version: '3.4'
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: 0.40.0
138
+ version: '3.4'
139
139
  - !ruby/object:Gem::Dependency
140
- name: rspec
140
+ name: rubocop
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - "~>"
144
144
  - !ruby/object:Gem::Version
145
- version: '3.4'
145
+ version: 0.51.0
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
- version: '3.4'
152
+ version: 0.51.0
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: yard
155
155
  requirement: !ruby/object:Gem::Requirement
@@ -167,8 +167,8 @@ dependencies:
167
167
  description: Sensu plugins for working with xmpp
168
168
  email: "<sensu-users@googlegroups.com>"
169
169
  executables:
170
- - check-xmpp-login.rb
171
170
  - handler-xmpp.rb
171
+ - check-xmpp-login.rb
172
172
  extensions: []
173
173
  extra_rdoc_files: []
174
174
  files:
@@ -197,7 +197,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
197
197
  requirements:
198
198
  - - ">="
199
199
  - !ruby/object:Gem::Version
200
- version: 2.0.0
200
+ version: 2.1.0
201
201
  required_rubygems_version: !ruby/object:Gem::Requirement
202
202
  requirements:
203
203
  - - ">="
@@ -205,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
205
  version: '0'
206
206
  requirements: []
207
207
  rubyforge_project:
208
- rubygems_version: 2.4.5
208
+ rubygems_version: 2.5.2.1
209
209
  signing_key:
210
210
  specification_version: 4
211
211
  summary: Sensu plugins for working with xmpp