Skip to content

Commit a6180eb

Browse files
committed
Merge branch 'master' into BugFixes
2 parents 73375b1 + a9c752d commit a6180eb

12 files changed

+26
-15
lines changed

CHANGELOG.MD

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Unreleased (May.7, 2015)
1+
## Released v1.0.1 (May.8, 2015)
22
###Features:
33
- Integrated with waffle.io for Project Management.
44
- Added documentation for writing script rules.
@@ -12,11 +12,12 @@
1212

1313
- PSProvideVerboseMessage only throws warnings in non-advanced functions.
1414
- Fix the issue in importing customized rule
15+
- Fix Function Member Ast cast error
1516

1617

1718

1819

19-
##Relesed on Apr.24, 2015
20+
##Released v1.0.0 on Apr.24, 2015
2021

2122
###Features:
2223
- Finalized three levels of Severity - Error/Warning/Information.

Engine/PSScriptAnalyzer.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Author = 'Microsoft Corporation'
1111
RootModule = 'Microsoft.Windows.Powershell.ScriptAnalyzer.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '1.0'
14+
ModuleVersion = '1.0.1'
1515

1616
# ID used to uniquely identify this module
1717
GUID = '324fc715-36bf-4aee-8e58-72e9b4a08ad9'

PowerShellBestPractices.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,15 @@ The following guidelines come from a combined effort from both the PowerShell te
121121
###Severity: TBD
122122
- For PowerShell V4: Resource module contains .psd1 file and schema.mof for every resource
123123
- MOF has description for each element [IssueOpened](https://github.com/PowerShell/PSScriptAnalyzer/issues/131)
124-
- Resource module must alwasy contain .psd1 file and schema.mof (for non-class resource).
124+
- Resource module must contain .psd1 file (always) and schema.mof (for non-class resource). [IssueOpened](https://github.com/PowerShell/PSScriptAnalyzer/issues/116)
125125
- Use ShouldProcess for a Set DSC method
126-
- Resource module contains Resources folder which contains the resources [IssueOpened](https://github.com/PowerShell/PSScriptAnalyzer/issues/130)
126+
- Resource module contains DscResources folder which contains the resources [IssueOpened](https://github.com/PowerShell/PSScriptAnalyzer/issues/130)
127127

128128

129129

130130
###Reference:
131-
Cmdlet Development Guidelines from MSDN site (Cmdlet Development Guidelines)
131+
* Cmdlet Development Guidelines from MSDN site (Cmdlet Development Guidelines)
132132

133-
The Community Book of PowerShell Practices (Compiled by Don Jones and Matt Penny and the Windows PowerShell Community)
133+
* The Community Book of PowerShell Practices (Compiled by Don Jones and Matt Penny and the Windows PowerShell Community)
134+
135+
* [PowerShell DSC Resource Design and Testing Checklist](http://blogs.msdn.com/b/powershell/archive/2014/11/18/powershell-dsc-resource-design-and-testing-checklist.aspx)

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,15 @@ Project Management Dashboard
5959

6060
You can track issues, pull requests, backlog items here:
6161

62-
[![Stories in Ready](https://badge.waffle.io/PowerShell/PSScriptAnalyzer.png?label=ready&title=Ready)](https://waffle.io/PowerShell/PSScriptAnalyzer)
62+
[![Stories in progress](https://badge.waffle.io/PowerShell/PSScriptAnalyzer.png?label=In%20Progress&title=In%20Progress)](https://waffle.io/PowerShell/PSScriptAnalyzer)
63+
64+
[![Stories in ready](https://badge.waffle.io/PowerShell/PSScriptAnalyzer.png?label=ready&title=Ready)](https://waffle.io/PowerShell/PSScriptAnalyzer)
65+
66+
[![Stories in backlog](https://badge.waffle.io/PowerShell/PSScriptAnalyzer.png?label=BackLog&title=BackLog)](https://waffle.io/PowerShell/PSScriptAnalyzer)
67+
68+
Throughput Graph
69+
70+
[![Throughput Graph](https://graphs.waffle.io/powershell/psscriptanalyzer/throughput.svg)](https://waffle.io/powershell/psscriptanalyzer/metrics)
6371

6472

6573
Contributing to ScriptAnalyzer

RuleDocumentation/AvoidUsingConvertToSecureStringWithPlainTextNoViolations.md renamed to RuleDocumentation/AvoidUsingConvertToSecureStringWithPlainText.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#AvoidUsingConvertToSecureStringWithPlainTextNoViolations
1+
#AvoidUsingConvertToSecureStringWithPlainText
22
**Severity Level: Error**
33

44

RuleDocumentation/AvoidUsingPositionalParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#AvoidUsingPositionalParameters
2-
**Severity Level: Info**
2+
**Severity Level: Warning**
33

44
##Description
55

RuleDocumentation/ProvideVerboseMessage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ProvideVerboseMessage
2-
**Severity Level: Warning**
2+
**Severity Level: Information**
33

44

55
##Description

RuleDocumentation/ReturnCorrectTypeDSCFunctions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ReturnCorrectTypeDSCFunctions
2-
**Severity Level: Error**
2+
**Severity Level: Information**
33

44

55
##Description

RuleDocumentation/UseCmdletCorrectly.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#UseCmdletCorrectly
2-
**Severity Level: Error**
2+
**Severity Level: Warning**
33

44

55
##Description

RuleDocumentation/UseDeclaredVarsMoreThanAssignments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#UseDeclaredVarsMoreThanAssignments
2-
**Severity Level: Info**
2+
**Severity Level: Warning**
33

44

55
##Description

RuleDocumentation/UseShouldProcessCorrectly.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#UseShouldProcessCorrectly
2-
**Severity Level: Error**
2+
**Severity Level: Warning**
33

44

55
##Description
File renamed without changes.

0 commit comments

Comments
 (0)