Skip to content

Commit c5cf1b5

Browse files
authored
Merge branch 'master' into add-recovery-options-properties
2 parents c5dbd5e + f7a8d48 commit c5cf1b5

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## [Unreleased]
77

8+
### Fixed
9+
10+
- xPSDesiredStateConfiguration
11+
- Fixed build failures caused by changes in `ModuleBuilder` module v1.7.0
12+
by changing `CopyDirectories` to `CopyPaths` - Fixes [Issue #687](https://github.com/dsccommunity/xPSDesiredStateConfiguration/issues/687).
13+
- Pin `Pester` module to 4.10.1 because Pester 5.0 is missing code
14+
coverage - Fixes [Issue #688](https://github.com/dsccommunity/xPSDesiredStateConfiguration/issues/688).
15+
16+
## [9.1.0] - 2020-02-19
17+
818
### Changed
919

1020
- Examples

RequiredModules.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
@{
22
# Set up a mini virtual environment...
3-
PSDependOptions = @{
3+
PSDependOptions = @{
44
AddToPath = $true
55
Target = 'output\RequiredModules'
66
Parameters = @{
77
}
88
}
99

10-
invokeBuild = 'latest'
10+
InvokeBuild = 'latest'
1111
PSScriptAnalyzer = 'latest'
12-
pester = 'latest'
12+
Pester = '4.10.1'
1313
Plaster = 'latest'
1414
ModuleBuilder = 'latest'
1515
ChangelogManagement = 'latest'

build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
####################################################
33
# ModuleBuilder Configuration #
44
####################################################
5-
CopyDirectories:
5+
CopyPaths:
66
- en-US
77
- DSCResources
88
- Modules

0 commit comments

Comments
 (0)