File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
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.12 .0'
14
+ ModuleVersion = ' 1.13 .0'
15
15
16
16
# ID used to uniquely identify this module
17
17
GUID = ' d6245802-193d-4068-a631-8863a4342a18'
@@ -88,12 +88,14 @@ PrivateData = @{
88
88
IconUri = ' '
89
89
ReleaseNotes = @'
90
90
### Added
91
- - PSAlignAssignmentRuleStatement rule to align assignment statements in property value pairs (#753).
91
+ - `PSUseSupportsShouldProcess` rule to discourage manual `whatif` and `confirm` parameter declarations.
92
+ - Suggested corrections to `PSProvideCommentHelp` rule. The rule can now be configured to:
93
+ - trigger on non-exported functions. But by default, the rule triggers only on exported functions that do have comment help.
94
+ - place the suggested corrections either before a function definition, or at the beginning or end of a function's body.
95
+ - choose between block comment or line comment style of suggested comment help correction.
92
96
93
97
### Fixed
94
- - `PSAvoidGlobalVars` rule to ignore `$global:lastexitcode` (#752).
95
- - `PSUseConsistentIndentation` to account for backtick on preceding line (#749).
96
- - `PSPlaceCloseBrace` to ignore one-line blocks when `NewLineAfter` switch is on (#748).
98
+ - `PSAlignAssignmentStatement` to align assignment statements in DSC configurations that have *Undefined DSC Resource* parse errors.
97
99
'@
98
100
}
99
101
}
@@ -112,3 +114,4 @@ PrivateData = @{
112
114
113
115
114
116
117
+
You can’t perform that action at this time.
0 commit comments