sensu-plugins-rabbitmq 7.0.1 → 8.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
  SHA256:
3
- metadata.gz: 2e7f1ee623c2d19fa8e8063799e81b461640d0151acf6b6b60c6e7807d214759
4
- data.tar.gz: 5b57693fadf7e679c8b06376b1bb0ee534f5a56a42ef321cd43c49c84f1129c9
3
+ metadata.gz: a73b703d9310702e3df21dd8b5f16d77ab95418aba26f92f8bd1fcb708e4a8f3
4
+ data.tar.gz: 1ee9ec3d5a784bd1b366c2086c0635468e0460007bdae27ee87812549bbae480
5
5
  SHA512:
6
- metadata.gz: f3b7064da9917e57a85b2481b9e77ab8baa80e1292a374d6093f8c05114ce8dd903b52c99d41c9a8b3bc1a409e6ca9df4e7bb9358cd88db13bf63fbd462f6738
7
- data.tar.gz: b19614394465a0aa2768e1b85439bc6e9c21ad92ea3605e844779585f2faed58eef30e3ef7d6b5be35d8c67e43298db664a6ed1b0fc611705c451a1b5d55da47
6
+ metadata.gz: 7055eb5a327f2eb71bc950e162015087cc651a97b4aaea1cf264f77b5761a3eceb973a25cfa88a29a6b17829eec54a970570e419198a381ead066d73686fa7b1
7
+ data.tar.gz: fe809cb10ee7450fad387be90c83f20f50b902781b1d6a0abaa1dc4270866f8a1e3602a5a727787cbf7d96aceeef930f9cba7e47047cfd944fd22bb7afe7c21c
@@ -5,6 +5,14 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [8.0.0] - 2019-04-29
9
+ ### Breaking Changes
10
+ - Bump `sensu-plugin` dependency from `~> 3.0` to `~> 4.0` you can read the changelog entries for [4.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#400---2018-02-17), [3.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#300---2018-12-04), and [2.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#v200---2017-03-29)
11
+
12
+ ### Added
13
+ - Travis build automation to generate Sensu Asset tarballs that can be used n conjunction with Sensu provided ruby runtime assets and the Bonsai Asset Index
14
+ - Require latest sensu-plugin for [Sensu Go support](https://github.com/sensu-plugins/sensu-plugin#sensu-go-enablement)
15
+
8
16
  ## [7.0.1] - 2019-04-04
9
17
  ### Fixed
10
18
  - check-rabbitmq-queue-drain-time.rb: perform nil check before checking if zero. bug fix for null pointer exception (@bob2build)
@@ -230,7 +238,8 @@ NOTE: this release changes the option flags in check-rabbitmq-node-health.rb to
230
238
  - Remove copy paste errors in the Readme
231
239
  - Removed Rubygems require Ruby 1.8.7 backwards compatibility from all plugins
232
240
 
233
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-rabbitmq/compare/7.0.1...HEAD
241
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-rabbitmq/compare/8.0.0...HEAD
242
+ [8.0.0]: https://github.com/sensu-plugins/sensu-plugins-rabbitmq/compare/7.0.1...8.0.0
234
243
  [7.0.1]: https://github.com/sensu-plugins/sensu-plugins-rabbitmq/compare/7.0.0...7.0.1
235
244
  [7.0.0]: https://github.com/sensu-plugins/sensu-plugins-rabbitmq/compare/6.0.0...7.0.0
236
245
  [6.0.0]: https://github.com/sensu-plugins/sensu-plugins-rabbitmq/compare/5.4.0...6.0.0
data/README.md CHANGED
@@ -5,6 +5,16 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-rabbitmq/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-rabbitmq)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-rabbitmq/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-rabbitmq)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-rabbitmq.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-rabbitmq)
8
+ [![Sensu Bonsai Asset](https://img.shields.io/badge/Bonsai-Download%20Me-brightgreen.svg?colorB=89C967&logo=sensu)](https://bonsai.sensu.io/assets/sensu-plugins/sensu-plugins-rabbitmq)
9
+
10
+ ## Sensu Asset
11
+ The Sensu assets packaged from this repository are built against the
12
+ Sensu Ruby runtime environment. When using these assets as part of a
13
+ Sensu Go resource (check, mutator or handler), make sure you include
14
+ the corresponding Sensu Ruby runtime asset in the list of assets
15
+ needed by the resource. The current ruby-runtime assets can be found
16
+ [here](https://bonsai.sensu.io/assets/sensu/sensu-ruby-runtime) in the
17
+ [Bonsai Asset Index](bonsai.sensu.io).
8
18
 
9
19
  ## Functionality
10
20
 
@@ -2,9 +2,9 @@
2
2
 
3
3
  module SensuPluginsRabbitMQ
4
4
  module Version
5
- MAJOR = 7
5
+ MAJOR = 8
6
6
  MINOR = 0
7
- PATCH = 1
7
+ PATCH = 0
8
8
 
9
9
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-rabbitmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.1
4
+ version: 8.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: 2019-04-04 00:00:00.000000000 Z
11
+ date: 2019-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.0'
19
+ version: '4.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.0'
26
+ version: '4.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: amq-protocol
29
29
  requirement: !ruby/object:Gem::Requirement