sensu-plugins-ntp 1.0.2 → 2.0.0

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
  SHA256:
3
- metadata.gz: 047b93a4dec2f4dc7cb9cfbf946d3c5bb3d7fa107474f24d2c435ab430d827c2
4
- data.tar.gz: 347187a0f38d53efee2e8014caeaed8a6814a7fc819d1c66e99b96f1009cb3cb
3
+ metadata.gz: 0dc8a0a9178d1360365035b0d46ae6114032963fed9e3ef5761673f67fa1f257
4
+ data.tar.gz: fe8f9b3382e8ef12ea77a3f7ce7a0d58c5c074099ab5cfc022f846512dd4d399
5
5
  SHA512:
6
- metadata.gz: 1ec97ce97f37d10078f864a277fd7567d003dc3961adbecbbf979862eef5fdd1bc156ca1529db0d98501f5ae8f9462ceca1a3d6ea90312a4a8179c1071035783
7
- data.tar.gz: 85f73b9d0e6048ea6a9688dd115f5d0071368c70481d4602dbf86acb44e159a2066f991fb825913636dae0fb08cbe34d75aa3d0825596a345223baddabe5b22c
6
+ metadata.gz: 17b44fe42f0085d37ed5de2d023df09682dba3ff74cc2ea84cee1cbd49c42bcc1431ef848329ef93f885e145e2bbf40a594163ee0829dacbf274bd32fa02dd2e
7
+ data.tar.gz: 02a60987e0b2e0cf3b5a0d8c4a45cd2ba1cd70ffe1e051727fcb1e906ae59819e1c5be85bf717a95b3d4a82dd247277b0ca414e962459a07a1080cdfcb735cb7
@@ -5,6 +5,16 @@ This CHANGELOG follows the format listed at [here](https://github.com/sensu-plug
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [2.0.0] - 2019-04-19
9
+ ### Breaking Changes
10
+ - Update minimum required ruby version to 2.3. Drop unsupported ruby versions.
11
+ - Bump `sensu-plugin` dependency from `~> 1.2` 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
+
17
+
8
18
  ## [1.0.2] - 2018-01-03
9
19
  ## Fixed
10
20
  - check-ntp.rb: fix timeout issue bu using loopback (@mdzidic)
@@ -52,7 +62,8 @@ This CHANGELOG follows the format listed at [here](https://github.com/sensu-plug
52
62
  ### Added
53
63
  - initial release
54
64
 
55
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ntp/compare/1.0.2...HEAD
65
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ntp/compare/2.0.0...HEAD
66
+ [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-ntp/compare/1.0.2...2.0.0
56
67
  [1.0.2]: https://github.com/sensu-plugins/sensu-plugins-ntp/compare/1.0.1...1.0.2
57
68
  [1.0.1]: https://github.com/sensu-plugins/sensu-plugins-ntp/compare/1.0.0...1.0.1
58
69
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-ntp/compare/0.0.4...1.0.0
data/README.md CHANGED
@@ -5,6 +5,11 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-ntp/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-ntp)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-ntp/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-ntp)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-ntp.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-ntp)
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-ntp)
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).
12
+
8
13
 
9
14
  ## Functionality
10
15
 
@@ -1,8 +1,8 @@
1
1
  module SensuPluginsNtp
2
2
  module Version
3
- MAJOR = 1
3
+ MAJOR = 2
4
4
  MINOR = 0
5
- PATCH = 2
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-ntp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
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: 2018-01-04 00:00:00.000000000 Z
11
+ date: 2019-04-20 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: '1.2'
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: '1.2'
26
+ version: '4.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -44,28 +44,28 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0.4'
47
+ version: '1.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0.4'
54
+ version: '1.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: github-markup
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.3'
61
+ version: '3.0'
62
62
  type: :development
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: '3.0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: pry
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '10.5'
89
+ version: '12.3'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '10.5'
96
+ version: '12.3'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: redcarpet
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -156,9 +156,9 @@ description: |-
156
156
  server drift, and metrics via `ntpdate` and `ntpstats`.
157
157
  email: "<sensu-users@googlegroups.com>"
158
158
  executables:
159
- - check-ntp.rb
160
- - metrics-ntpdate.rb
161
159
  - metrics-ntpstats.rb
160
+ - metrics-ntpdate.rb
161
+ - check-ntp.rb
162
162
  extensions: []
163
163
  extra_rdoc_files: []
164
164
  files:
@@ -188,15 +188,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
188
188
  requirements:
189
189
  - - ">="
190
190
  - !ruby/object:Gem::Version
191
- version: 2.0.0
191
+ version: '2.3'
192
192
  required_rubygems_version: !ruby/object:Gem::Requirement
193
193
  requirements:
194
194
  - - ">="
195
195
  - !ruby/object:Gem::Version
196
196
  version: '0'
197
197
  requirements: []
198
- rubyforge_project:
199
- rubygems_version: 2.7.4
198
+ rubygems_version: 3.0.3
200
199
  signing_key:
201
200
  specification_version: 4
202
201
  summary: Sensu plugins for ntp