sensu-plugins-windows 1.0.0 → 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
  SHA1:
3
- metadata.gz: 204f86ed952d2fabc7a2c0b7499af5144fb2abd2
4
- data.tar.gz: 17973c51333eab7e39ad39d4173888a9f6d23f71
3
+ metadata.gz: 26f077c4e38c5278ae5d09c1e428609d9ca9a00f
4
+ data.tar.gz: 1550daeb508c3f7b8e5e0b641719f02402573540
5
5
  SHA512:
6
- metadata.gz: eae5e434b14f3e07b37e2c35c5ce3517eb03e8ab3f87093bd02e3a5e570492799e983e15ffc20b8dbe70bebda7e568a7c90d3765a3e081608e59507092e17fb9
7
- data.tar.gz: 3251655b3ba5c937d9d198347f53dfebdaebe5dc1a96dea4764c54f731dcc14bbd163a328c555aa61e6567d5bc703fb21b16c28eaad80a0570bdebdbe4fc5739
6
+ metadata.gz: 6289e88f850bd0f62fd17460c22487ebec84211d09b4ccfda9edfce5a9b8d32a48bc96e39b177e474bc374d3f4b2ffc8a3899d4a6c9af1bd134528bfa0a22e13
7
+ data.tar.gz: 6725768261b9b9cb56f21f888b72189832f297bbe3c0538b932b12deadb1db8b5a0ae730a5f99b5460cff9d6806c894e65e220f65933402b493f05be3bb45018
@@ -5,6 +5,16 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [2.0.0] - 2017-06-27
9
+ ### Fixed
10
+ - missing diffs on 1.0 release (@majormoses)
11
+
12
+ ### Breaking Change
13
+ - Dependency on Powersehell version 3.0 or above for powershell checks. (@simonsteur)
14
+
15
+ ### Changed
16
+ - Updated `README.md` with new requirements. (@simonsteur)
17
+
8
18
  ### [1.0.0] 2017-06-26
9
19
  ### Fixed
10
20
  - fix PR template with correct spelling of Compatibility. The big reason to make this a 1.x is to allow an upcoming breaking change and protecting users from it.
@@ -90,7 +100,9 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
90
100
  ### Added
91
101
  - Initial release
92
102
 
93
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/0.1.0...HEAD
103
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/2.0.0...HEAD
104
+ [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/1.0.0...2.0.0
105
+ [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/0.1.0...1.0.0
94
106
  [0.1.0]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/v0.0.10...0.1.0
95
107
  [0.0.10]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/v0.0.9...v0.0.10
96
108
  [0.0.9]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/0.0.8..v0.0.9
data/README.md CHANGED
@@ -63,6 +63,9 @@ You should also include the full escaped path to the ruby interpreter in the che
63
63
  }
64
64
  ```
65
65
 
66
+ ## Dependencies
67
+ * Powershell checks require Powershell version 3.0 or higher.
68
+
66
69
  ## Installation
67
70
 
68
71
  [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
@@ -11,7 +11,7 @@
11
11
  # Windows
12
12
  #
13
13
  # DEPENDENCIES:
14
- # Powershell
14
+ # Powershell 3.0 or above
15
15
  #
16
16
  # USAGE:
17
17
  # Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-cpu-load.ps1 90 95
@@ -22,6 +22,9 @@
22
22
  # Copyright 2016 sensu-plugins
23
23
  # Released under the same terms as Sensu (the MIT license); see LICENSE for details.
24
24
  #
25
+
26
+ #Requires -Version 3.0
27
+
25
28
  [CmdletBinding()]
26
29
  Param(
27
30
  [Parameter(Mandatory=$True,Position=1)]
@@ -24,7 +24,7 @@
24
24
  # Released under the same terms as Sensu (the MIT license); see LICENSE for details.
25
25
  #
26
26
 
27
- #Requires -Version 2.0
27
+ #Requires -Version 3.0
28
28
 
29
29
  [CmdletBinding()]
30
30
  Param(
@@ -11,7 +11,7 @@
11
11
  # Windows
12
12
  #
13
13
  # DEPENDENCIES:
14
- # Powershell
14
+ # Powershell 3.0 or above
15
15
  #
16
16
  # USAGE:
17
17
  # Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-disk.ps1 90 95 ab
@@ -22,6 +22,9 @@
22
22
  # Copyright 2016 sensu-plugins
23
23
  # Released under the same terms as Sensu (the MIT license); see LICENSE for details.
24
24
  #
25
+
26
+ #Requires -Version 3.0
27
+
25
28
  [CmdletBinding()]
26
29
  Param(
27
30
  [Parameter(Mandatory=$True,Position=1)]
@@ -11,7 +11,7 @@
11
11
  # Windows
12
12
  #
13
13
  # DEPENDENCIES:
14
- # Powershell
14
+ # Powershell 3.0 or above
15
15
  #
16
16
  # USAGE:
17
17
  # Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-http.ps1 https://google.com
@@ -23,7 +23,9 @@
23
23
  # Released under the same terms as Sensu (the MIT license); see LICENSE for details.
24
24
  #
25
25
 
26
- [CmdletBinding()]
26
+ #Requires -Version 3.0
27
+
28
+ [CmdletBinding()]
27
29
  Param(
28
30
  [Parameter(Mandatory=$True,Position=1)]
29
31
  [string]$CheckAddress
@@ -11,7 +11,7 @@
11
11
  # Windows
12
12
  #
13
13
  # DEPENDENCIES:
14
- # Powershell
14
+ # Powershell 3.0 or above
15
15
  #
16
16
  # USAGE:
17
17
  # Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-process.ps1
@@ -22,6 +22,8 @@
22
22
  # Copyright 2016 sensu-plugins
23
23
  # Released under the same terms as Sensu (the MIT license); see LICENSE for details.
24
24
  #
25
+ #Requires -Version 3.0
26
+
25
27
  [CmdletBinding()]
26
28
  Param(
27
29
  [Parameter(Mandatory=$True,Position=1)]
@@ -11,7 +11,7 @@
11
11
  # Windows
12
12
  #
13
13
  # DEPENDENCIES:
14
- # Powershell
14
+ # Powershell 3.0 or above
15
15
  #
16
16
  # USAGE:
17
17
  # Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-processor-queue-length.ps1 5 10
@@ -22,6 +22,9 @@
22
22
  # Copyright 2016 sensu-plugins
23
23
  # Released under the same terms as Sensu (the MIT license); see LICENSE for details.
24
24
  #
25
+
26
+ #Requires -Version 3.0
27
+
25
28
  [CmdletBinding()]
26
29
  Param(
27
30
  [Parameter(Mandatory=$True,Position=1)]
@@ -11,7 +11,7 @@
11
11
  # Windows
12
12
  #
13
13
  # DEPENDENCIES:
14
- # Powershell
14
+ # Powershell 3.0 or above
15
15
  #
16
16
  # USAGE:
17
17
  # Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-ram.ps1 90 95
@@ -22,6 +22,9 @@
22
22
  # Copyright 2016 sensu-plugins
23
23
  # Released under the same terms as Sensu (the MIT license); see LICENSE for details.
24
24
  #
25
+
26
+ #Requires -Version 3.0
27
+
25
28
  [CmdletBinding()]
26
29
  Param(
27
30
  [Parameter(Mandatory=$True,Position=1)]
@@ -11,7 +11,7 @@
11
11
  # Windows
12
12
  #
13
13
  # DEPENDENCIES:
14
- # Powershell
14
+ # Powershell 3.0 or above
15
15
  #
16
16
  # USAGE:
17
17
  # Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-service.ps1
@@ -22,6 +22,9 @@
22
22
  # Copyright 2016 sensu-plugins
23
23
  # Released under the same terms as Sensu (the MIT license); see LICENSE for details.
24
24
  #
25
+
26
+ #Requires -Version 3.0
27
+
25
28
  [CmdletBinding()]
26
29
  Param(
27
30
  [Parameter(Mandatory=$True,Position=1)]
@@ -1,6 +1,6 @@
1
1
  module SensuPluginsWindows
2
2
  module Version
3
- MAJOR = 1
3
+ MAJOR = 2
4
4
  MINOR = 0
5
5
  PATCH = 0
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-windows
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors