sensu-plugins-postgres 4.0.1 → 4.0.2

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: df1dd0022785bc6c074f7935b61f847257e9cf3f130f855e5c5c4c763b1dc820
4
- data.tar.gz: 21f316bc51d43d7bb666a4aaf88e82f5eae0115c006deb7911c14fdde3ffb869
3
+ metadata.gz: 5c96168d5cf1c89531c5cf9f704a6332cee262b94f7f0468ccc51fe7d8a549f2
4
+ data.tar.gz: 72efe21b417524311cbe898606aaffb8a2e4fac9d07ad11ccab0b9eb8f4671c5
5
5
  SHA512:
6
- metadata.gz: 48e195b60fb2b21c326fa692221d7f81878dc733ba7f7699e1821abc1dfefc38092dcdeae835b3a298f91e3494ee33075bcb50811a561d65dba3921925a1a029
7
- data.tar.gz: 77b762fd579e806ce64f0edd88cc01c5226921c4605cc332a9e973dcef31d6adbb88ec86addb44c9030ae0dec32096190b1d166f19f46f1df2735982c7677d6c
6
+ metadata.gz: 4c90282c49b0b8a00afbcef7d8a3aa0442e69c3eaf5d64edcfcccf07d3ea8127c55faa770f05f4bd7fea025ee767ad3afc4d1b85a503645b53519d2d8498153c
7
+ data.tar.gz: ee9cccd264eacc1e41ece5e6ba6bafb2e21f18f7c3d65ea853f29611517eab71303ada9e654efea35975f94b140000c6fc4b0b6c2e939ec7c6ee8d510d96ccd9
@@ -5,6 +5,9 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [4.0.2] - 2020-06-02
9
+ - Fixed `# frozen_string_literal: true` does not play nicely with mixlib-cli.
10
+
8
11
  ## [4.0.1] - 2020-04-20
9
12
  ### Fixed
10
13
  - Fixing asset build directives.
@@ -210,7 +213,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
210
213
  ### Added
211
214
  - initial release
212
215
 
213
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.1...HEAD
216
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.2...HEAD
217
+ [4.0.2]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.1...4.0.2
214
218
  [4.0.1]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.0...4.0.1
215
219
  [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/3.0.0...4.0.0
216
220
  [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.4.0...3.0.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-postgres-alive
@@ -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-postgres-connections
@@ -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-postgres-query
@@ -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-postgres-replication
@@ -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
  # metric-postgres-connections
@@ -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
  # metric-postgres-dbsize
@@ -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
  # metric-postgres-graphite
@@ -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
  # metric-postgres-locks
@@ -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
  # metric-postgres-statsbgwriter
@@ -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
  # metric-postgres-statsdb
@@ -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
  # metric-postgres-statsio
@@ -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
  # metric-postgres-statstable
@@ -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
  # metrics-postgres-query
@@ -4,7 +4,7 @@ module SensuPluginsPostgres
4
4
  module Version
5
5
  MAJOR = 4
6
6
  MINOR = 0
7
- PATCH = 1
7
+ PATCH = 2
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-postgres
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1
4
+ version: 4.0.2
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-04-21 00:00:00.000000000 Z
11
+ date: 2020-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin