sensu-plugins-influxdb 1.4.0 → 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
  SHA256:
3
- metadata.gz: 9758ffc74a3f53c84114cbb2388921e5f049acabb0b6fa8b176e5843a8c98e8b
4
- data.tar.gz: feec7b3ed00d3be49f8fa09b2e171e47b5634b77f44884dff13bc463e739e577
3
+ metadata.gz: 183f0766f469c5332c8c241408648970124e47985cc29dc8ea12bca4cd4e00c3
4
+ data.tar.gz: 9b4d81f84b387be74b63d9638fb4d78a18dbfcabafcb2c1d89f6c335d0807aa9
5
5
  SHA512:
6
- metadata.gz: 46219e913690219efbc01c0b9cc149f70d120b97743d693a8cce2c683d902b9d93df05561365c83d6a1bc019069c74a0bc4eec5512e2e4ad14cb30cba3fb4026
7
- data.tar.gz: dfdd619b8285b9cd9ca68ec1e617d6004f92743ef3a155b2260b8683ea1ab9370e16448aad0b9e3019fab10438ae1194157578c843fc681eec6c28f7c2be6914
6
+ metadata.gz: 9b78cae4c71d38b67267c43479888b7f7dcc7e431729233f44fd0f8ed2e92ca96cfcdbe673915cac55eebba9978aa1a892fe8fec269153566f0e7e104455975c
7
+ data.tar.gz: b07bfe75097dccf44fe1082c0d98379bddaa50536f0d4aa9db7bdebffd4668b5c69cd9784f67b8a46663aa2a7cbfc34adddb1f62b4f07be50c4c248b867903ff
@@ -5,6 +5,15 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [2.0.0] - 2019-04-18
9
+ ### Breaking Changes
10
+ - Update minimum required ruby version to 2.3. Drop unsupported ruby versions.
11
+ - Bump `sensu-plugin` dependency from `~> 1.3` 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)
12
+
13
+ ### Added
14
+ - 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
15
+ - Require latest sensu-plugin for [Sensu Go support](https://github.com/sensu-plugins/sensu-plugin#sensu-go-enablement)
16
+
8
17
  ## [1.4.0] - 2019-02-19
9
18
  ### Added
10
19
  - Added "sum" mode for check-influxdb.query check
@@ -84,7 +93,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
84
93
  ### Added
85
94
  - initial release
86
95
 
87
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-influxdb/compare/1.4.0...HEAD
96
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-influxdb/compare/2.0.0...HEAD
97
+ [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-influxdb/compare/1.4.0...2.0.0
88
98
  [1.4.0]: https://github.com/sensu-plugins/sensu-plugins-influxdb/compare/1.3.0...1.4.0
89
99
  [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-influxdb/compare/1.2.0...1.3.0
90
100
  [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-influxdb/compare/1.1.0...1.2.0
data/README.md CHANGED
@@ -5,6 +5,10 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-influxdb/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-influxdb)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-influxdb/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-influxdb)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-influxdb.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-influxdb)
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-influxdb)
9
+
10
+ ## Sensu Asset
11
+ The Sensu assets packaged from this repository are built against the Sensu ruby runtime environment. When using these assets as part of a Sensu Go resource (check, mutator or handler), make sure you include the corresponding Sensu ruby runtime asset in the list of assets needed by the resource. The current ruby-runtime assets can be found [here](https://bonsai.sensu.io/assets/sensu/sensu-ruby-runtime) in the [Bonsai Asset Index](bonsai.sensu.io).
8
12
 
9
13
  ## Functionality
10
14
 
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsInfluxdb
2
2
  module Version
3
- MAJOR = 1
4
- MINOR = 4
3
+ MAJOR = 2
4
+ MINOR = 0
5
5
  PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-influxdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
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: 2019-02-20 00:00:00.000000000 Z
11
+ date: 2019-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dentaku
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.3'
61
+ version: '4.0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '1.3'
68
+ version: '4.0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: bundler
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -233,14 +233,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
233
233
  requirements:
234
234
  - - ">="
235
235
  - !ruby/object:Gem::Version
236
- version: 2.0.0
236
+ version: '2.3'
237
237
  required_rubygems_version: !ruby/object:Gem::Requirement
238
238
  requirements:
239
239
  - - ">="
240
240
  - !ruby/object:Gem::Version
241
241
  version: '0'
242
242
  requirements: []
243
- rubygems_version: 3.0.2
243
+ rubygems_version: 3.0.3
244
244
  signing_key:
245
245
  specification_version: 4
246
246
  summary: Sensu plugins for influxdb