Skip to content

Commit d495ce6

Browse files
author
Kapil Borle
committed
Update version to 1.9.0
1 parent 642c2da commit d495ce6

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

Engine/PSScriptAnalyzer.psd1

+18-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Author = 'Microsoft Corporation'
1111
RootModule = 'PSScriptAnalyzer.psm1'
1212

1313
# Version number of this module.
14-
ModuleVersion = '1.8.1'
14+
ModuleVersion = '1.9.0'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
@@ -88,11 +88,24 @@ PrivateData = @{
8888
IconUri = ''
8989
ReleaseNotes = @'
9090
### Added
91-
- Catalog file to play nicely with PowerShellGet, version `1.1.0.0`
91+
- SuggestedCorrections for ScriptDefinition input (#665)
92+
- PSAvoidGlobalAliases and PSAvoidGlobalFunction rules (#658)
9293
9394
### Fixed
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)
95+
- Regular expression in `target` parameter in SuppressMessageAttribute (#638)
96+
- Filtering on severity level for DSC rules (#642)
97+
- PSUseCompatibleCmdlets rule
98+
+ to check for commands in Microsoft.PowerShell.Core snapin
99+
+ to ignore aliases
100+
+ to ignore custom defind commands
101+
- PSUseDeclaredVarsMoreThanAssignments rule to ignore the following special variables (#653)
102+
+ `$PSModuleAutoLoadingPreference`
103+
+ `$InformationPreference`
104+
- PSShouldProcess rule to not enforce `SupportsShouldProcess` if a function calls built-in cmdlet or function that calls `ShouldProcess` (#652).
105+
- PSShouldProcess rule violation extent (#668)
106+
- PSAvoidUsingCmdletAliases rule violation extent (667)
107+
- Column header of `Invoke-ScriptAnalyzer` to be consistent with corresponding property names (#664)
108+
- `ScriptPath` property of external rule violation (#649)
96109
'@
97110
}
98111
}
@@ -106,3 +119,4 @@ PrivateData = @{
106119
}
107120

108121

122+

Engine/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Microsoft.Windows.PowerShell.ScriptAnalyzer",
3-
"version": "1.8.1",
3+
"version": "1.9.0",
44
"dependencies": {
55
"System.Management.Automation": "1.0.0-alpha12"
66
},

Rules/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules",
3-
"version": "1.8.1",
3+
"version": "1.9.0",
44
"dependencies": {
55
"System.Management.Automation": "1.0.0-alpha12",
6-
"Engine": "1.8.1",
6+
"Engine": "1.9.0",
77
"Newtonsoft.Json": "9.0.1"
88
},
99

0 commit comments

Comments
 (0)