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: ScheduledTask - remove parameters that are not key or required - Fixes #249 #252

Merged
merged 17 commits into from
Aug 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@
- RemoteDesktopAdmin:
- New resource for configuring Remote Desktop for Administration - fixes
[Issue #224](https://github.com/PowerShell/ComputerManagementDsc/issues/224).
- Updated common function `Test-DscParameterState` to support ordered comparison
of arrays by copying function and tests from `NetworkingDsc` - fixes [Issue #250](https://github.com/PowerShell/ComputerManagementDsc/issues/250).
- BREAKING CHANGE: ScheduledTask:
- Correct output type of `DaysInterval`,`StartTime`,`WeeksDaysOfWeek`,
and `WeeksInterval` parameters from `Get-TargetResource` to match MOF.
- Refactored `Get-TargetResource` to remove parameters that
are not key or required - fixes [Issue #249](https://github.com/PowerShell/ComputerManagementDsc/issues/249).
- Added function `Test-DateStringContainsTimeZone` to determine if a string
containing a date time includes a time zone.
- Enable verbose preference to be passed through to `Test-DscParameterState`.
- Changed `Test-TargetResource` so that `StartTime` is only compared for
trigger types `Daily`,`Weekly` or `Once`.

## 6.5.0.0

Expand Down
Loading