sensu-plugins-disk-checks 5.1.2 → 5.1.3

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: 817158f657fbdf221e2b5ec917a94c7dc1e4a8a864b0b97d41549825872e64a6
4
- data.tar.gz: 21e2e575d5c986948ca08d3c3b6d11b8ff745b0e78d09df2f05b240ae2ee6807
3
+ metadata.gz: 25283690ed0376d80a899c12cece660407088494e5c2c305a7026900f9b82236
4
+ data.tar.gz: 154e1bdf876b615fc78e1c3a1a983410764c680617ef4e4cd061893e5a76b0c5
5
5
  SHA512:
6
- metadata.gz: e7eaede6d71ce75aa2622c9a6d0a215ca7c2bb195e903079f7d580fa17a1d6a73b12dffd768f28523a1edd9a98f2fd1bffc7d1a5ad36e6e8c2cdc0981a44b938
7
- data.tar.gz: 4e467a8f4e7ab8ab06a105943a8609776abc1fa73c8c851fb872775e8f76bf77fa72bb337c04c6bc191cf1fc5ae9783fe715a6d4f417269cf6447de097376c2e
6
+ metadata.gz: 78f4a3331d7889d0f2e0691cdc65487e44bb34507082a94460366c3c828d27ee5b4797ffde8312244de1f7ed3e80b0549eec7a300d79a9701eb837af8775e376
7
+ data.tar.gz: 18bb008d1a0fcf16ad2082fd1873689b9486e122a5d4349769ed80c1e501d51aeff51b6c49fedabfbb637943a99d126f0f469e30d4f6cfa4bb1aa526629b820c
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [5.1.3] - 2020-06-02
9
+ ### Fixed
10
+ - fix for incorrect Ruby literal string freeze in binaries
11
+
8
12
  ## [5.1.2] - 2020-05-20
9
13
  ### Fixed
10
14
  - check-disk-usage.rb: More accurate disk percent usage ignoring privileged bytes (@SaviourSelf)
@@ -228,7 +232,8 @@ https://mathias-kettner.de/checkmk_filesystems.html
228
232
  ### Added
229
233
  - initial release
230
234
 
231
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/5.1.2...HEAD
235
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/5.1.3...HEAD
236
+ [5.1.3]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/5.1.2...5.1.3
232
237
  [5.1.2]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/5.1.1...5.1.2
233
238
  [5.1.1]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/5.1.0...5.1.1
234
239
  [5.1.0]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/5.0.1...5.1.0
@@ -1,5 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
- # frozen_string_literal: true
2
+ # frozen_string_literal: false
3
3
 
4
4
  #
5
5
  # check-disk
@@ -1,5 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
- # frozen_string_literal: true
2
+ # frozen_string_literal: false
3
3
 
4
4
  #
5
5
  # check-fstab-mounts
@@ -1,5 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
- # frozen_string_literal: true
2
+ # frozen_string_literal: false
3
3
 
4
4
  #
5
5
  # check-smart
@@ -1,5 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
- # frozen_string_literal: true
2
+ # frozen_string_literal: false
3
3
 
4
4
  #
5
5
  # check-smart-tests.rb
@@ -1,5 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
- # frozen_string_literal: true
2
+ # frozen_string_literal: false
3
3
 
4
4
  #
5
5
  # check-smart
@@ -1,5 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
- # frozen_string_literal: true
2
+ # frozen_string_literal: false
3
3
 
4
4
  #
5
5
  # disk-capacity-metrics
@@ -1,5 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
- # frozen_string_literal: true
2
+ # frozen_string_literal: false
3
3
 
4
4
  #
5
5
  # disk-usage-metrics
@@ -1,5 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
- # frozen_string_literal: true
2
+ # frozen_string_literal: false
3
3
 
4
4
  #
5
5
  # disk-metrics
@@ -4,7 +4,7 @@ module SensuPluginsDiskChecks
4
4
  module Version
5
5
  MAJOR = 5
6
6
  MINOR = 1
7
- PATCH = 2
7
+ PATCH = 3
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-disk-checks
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.2
4
+ version: 5.1.3
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: 2020-05-20 00:00:00.000000000 Z
11
+ date: 2020-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin