Skip to content

Commit aee72ba

Browse files
author
Kapil Borle
committed
Update module manifest for v1.6.1 release
1 parent d0bc532 commit aee72ba

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

Engine/PSScriptAnalyzer.psd1

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
#
44

55
@{
6-
6+
77
# Author of this module
88
Author = 'Microsoft Corporation'
99

1010
# Script module or binary module file associated with this manifest.
1111
RootModule = 'PSScriptAnalyzer.psm1'
1212

1313
# Version number of this module.
14-
ModuleVersion = '1.6.0'
14+
ModuleVersion = '1.6.1'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
@@ -62,16 +62,16 @@ FormatsToProcess = @('ScriptAnalyzer.format.ps1xml')
6262
# NestedModules = @()
6363

6464
# Functions to export from this module
65-
FunctionsToExport = '*'
65+
FunctionsToExport = @()
6666

6767
# Cmdlets to export from this module
6868
CmdletsToExport = @('Get-ScriptAnalyzerRule','Invoke-ScriptAnalyzer')
6969

7070
# Variables to export from this module
71-
VariablesToExport = '*'
71+
VariablesToExport = @()
7272

7373
# Aliases to export from this module
74-
AliasesToExport = '*'
74+
AliasesToExport = @()
7575

7676
# List of all modules packaged with this module
7777
# ModuleList = @()
@@ -86,7 +86,13 @@ PrivateData = @{
8686
LicenseUri = 'https://github.com/PowerShell/PSScriptAnalyzer/blob/master/LICENSE'
8787
ProjectUri = 'https://github.com/PowerShell/PSScriptAnalyzer'
8888
IconUri = ''
89-
ReleaseNotes = ''
89+
ReleaseNotes = @'
90+
* Added support for external AST based rule suppression.
91+
* Fixed `SaveDscDependency` switch implementation, which use fail if more than one parameter is given to `Import-DSCResource` dynamic keyword.
92+
* Fixed rule suppression caused by inavlid offsets.
93+
* Fixed false positives caused by PSD1 files which are not module manifests. This affects `PSUseToExportFieldsInManifest`, `PSMissingModuleManifestField` and `PSAvoidUsingDeprecatedManifestFields` rules
94+
* Created a whitelist for `PSUseSingularNoun` rule to ignore `Data` noun.
95+
'@
9096
}
9197
}
9298

0 commit comments

Comments
 (0)