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

Fixes #3056 #3136

Merged
merged 1 commit into from
Apr 4, 2023
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: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Change log for Microsoft365DSC

# Breaking Changes (APRIL 5TH RELEASE)

* TeamsGroupPolicyAssignment change of key and required parameters
* [BREAKING CHANGE] Setting GroupId and PolicyType as Key parameters
FIXES [#3054](https://github.com/microsoft/Microsoft365DSC/issues/3054)

# UNRELEASED

* IntuneDeviceEnrollmentPlatformRestriction
Expand All @@ -32,6 +26,9 @@
* Fixes extraction of the ScopedRoleMembers property.
* AADApplication
* [BREAKING CHANGE] Remove deprecated parameter Oauth2RequirePostResponse
* AADAuthorizationPolicy
* Fixes an error where the authentication method wasn't recognized when doing an export using app secret.
FIXES [#3056](https://github.com/microsoft/Microsoft365DSC/issues/3056)
* AADConditionalAccessPolicy
* Add condition for empty External Guest/User include/exclude
FIXES [#3108](https://github.com/microsoft/Microsoft365DSC/issues/3108)
Expand Down Expand Up @@ -138,6 +135,9 @@
* [BREAKING CHANGE] Remove deprecated parameter RequireAcceptingAccountMatchInvitedAccount
* Fixes how we are extracting the DisabledWebPartIds parameter.
FIXES [#3066](https://github.com/microsoft/Microsoft365DSC/issues/3066)
* TeamsGroupPolicyAssignment change of key and required parameters
* [BREAKING CHANGE] Setting GroupId and PolicyType as Key parameters
FIXES [#3054](https://github.com/microsoft/Microsoft365DSC/issues/3054)
* TeamsMeetingPolicy
* [BREAKING CHANGE] Remove deprecated parameter RecordingStorageMode
* TeamsUpdateManagementPolicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,7 @@ function Export-TargetResource
Credential = $Credential
ApplicationId = $ApplicationId
TenantId = $TenantId
ApplicationSecret = $ApplicationSecret
CertificateThumbprint = $CertificateThumbprint
ManagedIdentity = $ManagedIdentity
}
Expand Down