Skip to content

Commit

Permalink
Updated Version Number and docs from master ***NO_CI***
Browse files Browse the repository at this point in the history
  • Loading branch information
SQLDBAWithABeard committed Feb 2, 2022
1 parent 5294388 commit 4bfe713
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
9 changes: 7 additions & 2 deletions docs/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## 23rd August 2021

Fixed bug where custom tests left an empty DbcResult #846
Added feature to overwrite config file if it already exists for Export-DbcConfig #844
Enabled ping latency testing in PowerShell Core

##Latest
## 23rd August 2021

Removed the Verbose for the Pester load - Apologies, this was Rob!
Thank you [@MikeyBronowski](https://www.github.com/MikeyBronowski) Get the file at the end so Export-DbcConfig can be used with Invoke-Item addresses #843 #845
Thank you [@MikeyBronowski](https://www.github.com/MikeyBronowski) spelling and full stops #842
Expand All @@ -9,8 +16,6 @@ Thank you [tboggiano](https://github.com/tboggiano) CIS check for SQL Mail XPS f
Thank you [tboggiano](https://github.com/tboggiano) Added function to set CIS config (was) #776
Thank you [tboggiano](https://github.com/tboggiano) CIS check for TCP IP Protocols (was) #775

##Latest

## April 7th 2021

Thank you [@mikedavem](https://www.github.com/mikedavem) Fixed rogue verbose when importing [#834](https://github.com/sqlcollaborative/dbachecks/issues/834)
Expand Down
18 changes: 17 additions & 1 deletion docs/functions/Export-DbcConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Exports dbachecks configs to a json file to make it easier to modify or be used
## SYNTAX

```
Export-DbcConfig [[-Path] <String>] [<CommonParameters>]
Export-DbcConfig [[-Path] <String>] [-Force] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -52,13 +52,29 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -Force
Overwrite Existing file

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

## OUTPUTS

### System.String
## NOTES

## RELATED LINKS
Expand Down
7 changes: 3 additions & 4 deletions docs/functions/Invoke-DbcCheck.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Invoke-DbcCheck [-Script <Object[]>] [-TestName <String[]>] [-EnableExit] [[-Che
[-ComputerName <DbaInstanceParameter[]>] [-SqlCredential <PSCredential>] [-Credential <PSCredential>]
[-Database <Object[]>] [-ExcludeDatabase <Object[]>] [-Value <String[]>] [-ConfigFile <String>]
[-CodeCoverage <Object[]>] [-CodeCoverageOutputFile <String>] [-CodeCoverageOutputFileFormat <String>]
[-Strict] [-OutputFormat <String>] [-AllChecks] [-Quiet] [-PesterOption <Object>] [-Show <OutputTypes>]
[-Strict] [-OutputFormat <String>] [-AllChecks] [-Quiet] [-PesterOption <Object>] [-Show <String>]
[-ConfigAgentAlertJob <Object>] [-ConfigAgentAlertMessageid <Object>] [-ConfigAgentAlertNotification <Object>]
[-ConfigAgentAlertSeverity <Object>] [-ConfigAgentDatabasemailprofile <Object>]
[-ConfigAgentDbaoperatoremail <Object>] [-ConfigAgentDbaoperatorname <Object>]
Expand Down Expand Up @@ -142,7 +142,7 @@ Invoke-DbcCheck [-Script <Object[]>] [-TestName <String[]>] [-EnableExit] [[-Che
[-Database <Object[]>] [-ExcludeDatabase <Object[]>] [-Value <String[]>] [-ConfigFile <String>]
[-CodeCoverage <Object[]>] [-CodeCoverageOutputFile <String>] [-CodeCoverageOutputFileFormat <String>]
[-Strict] -OutputFile <String> [-OutputFormat <String>] [-AllChecks] [-Quiet] [-PesterOption <Object>]
[-Show <OutputTypes>] [-ConfigAgentAlertJob <Object>] [-ConfigAgentAlertMessageid <Object>]
[-Show <String>] [-ConfigAgentAlertJob <Object>] [-ConfigAgentAlertMessageid <Object>]
[-ConfigAgentAlertNotification <Object>] [-ConfigAgentAlertSeverity <Object>]
[-ConfigAgentDatabasemailprofile <Object>] [-ConfigAgentDbaoperatoremail <Object>]
[-ConfigAgentDbaoperatorname <Object>] [-ConfigAgentFailedjobExcludecancelled <Object>]
Expand Down Expand Up @@ -743,10 +743,9 @@ A common setting is also Failed, Summary, to write only failed tests and test su
This parameter does not affect the PassThru custom object or the XML output that is written when you use the Output parameters.

```yaml
Type: OutputTypes
Type: String
Parameter Sets: (All)
Aliases:
Accepted values: None, Default, Passed, Failed, Pending, Skipped, Inconclusive, Describe, Context, Summary, Header, Fails, All

Required: False
Position: Named
Expand Down

0 comments on commit 4bfe713

Please sign in to comment.