From 9dc28ca401ceaa7bec08526554a658c5035fd921 Mon Sep 17 00:00:00 2001 From: Michael Greene Date: Wed, 7 Aug 2019 13:35:27 -0700 Subject: [PATCH] Releasing version 4.0.0.0 --- ActiveDirectoryCSDsc.psd1 | 27 ++++++++++++++++++++------- CHANGELOG.md | 2 ++ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/ActiveDirectoryCSDsc.psd1 b/ActiveDirectoryCSDsc.psd1 index e6ada9c..34e5ad5 100644 --- a/ActiveDirectoryCSDsc.psd1 +++ b/ActiveDirectoryCSDsc.psd1 @@ -1,6 +1,6 @@ @{ # Version number of this module. - moduleVersion = '3.3.0.0' + moduleVersion = '4.0.0.0' # ID used to uniquely identify this module GUID = 'f8ddd7fc-c6d6-469e-8a80-c96efabe2fcc' @@ -64,12 +64,24 @@ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '- Remove reference to StorageDsc in README.md - fixes [Issue 76](https://github.com/PowerShell/ActiveDirectoryCSDsc/issues/76). -- Combined all `ActiveDirectoryCSDsc.ResourceHelper` module functions into - `ActiveDirectoryCSDsc.Common` module and renamed to `ActiveDirectoryCSDsc.CommonHelper` - module. -- Opted into Common Tests "Common Tests - Validate Localization" - - fixes [Issue 82](https://github.com/PowerShell/ActiveDirectoryCSDsc/issues/82). + ReleaseNotes = '- BREAKING CHANGE: ActiveDirectoryCSDsc module minimum requirements updated + to WMF 5.0 because newly added AdcsCertificateAuthoritySettings resource + requires WMF 5.0. +- Added new resource AdcsCertificateAuthoritySettings - see + [Issue 13](https://github.com/PowerShell/ActiveDirectoryCSDsc/issues/13). +- Added new resource AdcsTemplate. +- Replaced `switch` blocks with `if` blocks for evaluating "Ensure" parameter + because switch was missing `break` - fixes [Issue 87](https://github.com/PowerShell/ActiveDirectoryCSDsc/issues/87). +- Added Comment Based Help for `New-NotImplementedException` common function. +- Moved code to create the user account for use in integration test into a + `CommonTestHelper.psm1` function. +- Removed user account creation code from `AppVeyor.yml` and into integration + tests themselves to make tests execution easier. +- Updated user account creation code to use local user/group management Powershell + cmdlets available in WMF 5.1 - fixes [Issue 24](https://github.com/PowerShell/ActiveDirectoryCSDsc/issues/24). +- AdcsCertificationAuthority: + - Integration tests updated to create test user account in administrators + group to make test execution easier. ' } # End of PSData hashtable @@ -77,3 +89,4 @@ } + diff --git a/CHANGELOG.md b/CHANGELOG.md index 97c937f..172c730 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 4.0.0.0 + - BREAKING CHANGE: ActiveDirectoryCSDsc module minimum requirements updated to WMF 5.0 because newly added AdcsCertificateAuthoritySettings resource requires WMF 5.0.