Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE: xADComputer: A computer account can now be created disabled #170

Merged
merged 28 commits into from
May 22, 2019
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
16ca3ab
Changes to xADComputer
johlju Dec 10, 2017
0da9b68
Updated tests for testing Enabled parameter
johlju Dec 10, 2017
b21a05f
Fix review comments at r1
johlju Dec 11, 2017
fbfcb01
Changes to xADComputer
johlju May 4, 2019
3859f98
Fixed comment-based help
johlju May 4, 2019
882f437
Refactor Test-TargetResource
johlju May 5, 2019
28ac736
Refactor Test-TargetResource
johlju May 6, 2019
48256a9
Fixed 84% coverage
johlju May 10, 2019
f28ba19
Fix last unit tests
johlju May 11, 2019
4479c19
Update README.md
johlju May 11, 2019
9028adb
Update CHANGELOG.md
johlju May 11, 2019
15fe4ea
Move common helper function
johlju May 11, 2019
53ca2f8
Update to use new common module
johlju May 11, 2019
bd69d04
Move the localized string
johlju May 11, 2019
16a8606
Move test for helper function
johlju May 11, 2019
fd7f72c
Minor post cleanup
johlju May 11, 2019
61f3e14
More post cleanup
johlju May 11, 2019
232a0ec
Update parameter descriptions
johlju May 11, 2019
29b8203
Update CHANGELOG.md
johlju May 11, 2019
966468c
Add xADComputer integration tests
johlju May 11, 2019
95a5dc6
Update Examples README.md
johlju May 11, 2019
b6a1fe2
Fix output type in Test-DscPropertyState
johlju May 14, 2019
8742e9a
Fix minor type in integration test config file
johlju May 14, 2019
ac9ee53
Fix verbose message
johlju May 16, 2019
c589bfd
Update change log after release
johlju May 16, 2019
e0f3f0e
Fix review comments at r3
johlju May 21, 2019
1db27f5
Fix review comments at r3
johlju May 21, 2019
1dd74e5
Fix review comments at r3
johlju May 21, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

## Unreleased

- Changes to xActiveDirectory
- Added new helper functions in xADCommon, see each functions comment-based
help for more information.
- Convert-PropertyMapToObjectProperties
- Compare-ResourcePropertyState
- Test-DscPropertyState
- Changes to xADComputer
- Refactored the resource and the unit tests.
- BREAKING CHANGE: The `Enabled` property is **DEPRECATED** and is no
longer set nor enforced with this resource. _If this parameter is_
_used in a configuration a warning message will be outputted saying_
_that the `Enabled` parameter has been deprecated_. The new resource
[xADObjectEnabledState](https://github.com/PowerShell/xActiveDirectory#xadobjectenabledstate)
can be used to enforce the `Enabled` property.
- BREAKING CHANGE: The default value of the enabled property of the
computer account will be set to the default value of the cmdlet
`New-ADComputer`.
- A new parameter was added called `EnabledOnCreation` that will control
if the computer account is created enabled or disabled.
- Moved examples from the README.md to separate example files in the
Examples folder.

## 2.26.0.0

- Changes to xActiveDirectory
Expand Down
429 changes: 374 additions & 55 deletions DSCResources/MSFT_xADCommon/MSFT_xADCommon.psm1

Large diffs are not rendered by default.

Loading