File tree 3 files changed +9
-16
lines changed
3 files changed +9
-16
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Author = 'Microsoft Corporation'
11
11
RootModule = ' PSScriptAnalyzer.psm1'
12
12
13
13
# Version number of this module.
14
- ModuleVersion = ' 1.8.0 '
14
+ ModuleVersion = ' 1.8.1 '
15
15
16
16
# ID used to uniquely identify this module
17
17
GUID = ' d6245802-193d-4068-a631-8863a4342a18'
@@ -88,19 +88,11 @@ PrivateData = @{
88
88
IconUri = ' '
89
89
ReleaseNotes = @'
90
90
### Added
91
- - New rule to check cmdlet compatibility between different PowerShell flavors
92
- - New rule to warn when using Hashtable constructor
93
- - Feature to pass parameters to rules from settings file
94
- - Feature to discover settings file
95
- - Enhancement to PSShouldProcess rule to check for ShouldProcess implementation in downstream functions
96
- - A helper module to create `C#` based builtin rules
91
+ - Catalog file to play nicely with PowerShellGet, version `1.1.0.0`
97
92
98
93
### Fixed
99
- - False negatives for identically named variables
100
- - Passing `*Ast` arguments to external rules
101
-
102
- ### Changed
103
- - PSShouldProcess rule to not check for presence of `ShouldContinue` when `SupportsShouldProcess` is declared
94
+ - [PSUsePSCredentialType](RuleDocumentation/UsePSCredentialType.md) rule to check for attributes on same line without an whitespace between them.
95
+ - [PSUseShouldProcessForStateChangingFunctions](RuleDocumentation/UseShouldProcessForStateChangingFunctions.md) rule to check for `start` verb (#634)
104
96
'@
105
97
}
106
98
}
@@ -113,3 +105,4 @@ PrivateData = @{
113
105
114
106
}
115
107
108
+
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Microsoft.Windows.PowerShell.ScriptAnalyzer" ,
3
- "version" : " 1.8.0 " ,
3
+ "version" : " 1.8.1 " ,
4
4
"dependencies" : {
5
5
"System.Management.Automation" : " 1.0.0-alpha10"
6
6
},
49
49
}
50
50
}
51
51
}
52
- }
52
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules" ,
3
- "version" : " 1.8.0 " ,
3
+ "version" : " 1.8.1 " ,
4
4
"dependencies" : {
5
5
"System.Management.Automation" : " 1.0.0-alpha10" ,
6
- "Engine" : " 1.8.0 " ,
6
+ "Engine" : " 1.8.1 " ,
7
7
"Newtonsoft.Json" : " 9.0.1"
8
8
},
9
9
You can’t perform that action at this time.
0 commit comments