Skip to content

Commit f7a8d48

Browse files
authored
Merge pull request #690 from PlagueHO/Issue-687-688
Fix build by Pinning Pester and fix ModuleBuilder - Fixes #687, #688
2 parents 79f2364 + 6bcccb3 commit f7a8d48

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
816
## [9.1.0] - 2020-02-19
917

1018
### Changed

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)