Skip to content

Commit

Permalink
SqlServerDsc: Use DscResource.Common preview
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Jan 20, 2024
1 parent 0ffc7ad commit 2cc878c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- SqlServer
- Updated pipeline files to support pre-releases with ModuleFast (when
resolving dependencies).
- Using preview version of DscResource.Common to test new code.
- SqlAG
- Converted unit test to Pester 5
- DtcSupportEnabled option in Set-TargetResource and TestTargetResource
Expand Down
12 changes: 7 additions & 5 deletions RequiredModules.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
PSScriptAnalyzer = 'latest'
ConvertToSARIF = 'latest' # cSpell: disable-line

<#
If preview release of Pester prevents release we should temporary shift
back to stable.
#>
Pester = @{
Version = 'latest'
Parameters = @{
Expand All @@ -33,7 +29,13 @@

# Build dependencies needed for using the module
'DscResource.Base' = 'latest'
'DscResource.Common' = 'latest'
#'DscResource.Common' = 'latest'
'DscResource.Common' = @{
Version = 'latest'
Parameters = @{
AllowPrerelease = $true
}
}

# Analyzer rules
'DscResource.AnalyzerRules' = 'latest'
Expand Down

0 comments on commit 2cc878c

Please sign in to comment.