diff --git a/CHANGELOG.md b/CHANGELOG.md index ada57933f2..80c14b376f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change log for Microsoft365DSC -# UNRELEASED +# 1.24.110.1 * AADAdministrativeUnit * Fix the Update logic flow to get around a bug in Microsoft.Graph 2.11.1. @@ -11,9 +11,11 @@ * Implement Fix #3885. Manage Exclude Application. FIXES [[#3885](https://github.com/microsoft/Microsoft365DSC/issues/3885)] * EXOHostedContentFilterPolicy - * Fix issue on parameters AllowedSenders, AllowedSenderDomains, BlockedSenders, + * Fix issue on parameters AllowedSenders, AllowedSenderDomains, BlockedSenders, BlockSenderDomains if desired state is empty but current state is not empty. FIXES[#4124](https://github.com/microsoft/Microsoft365DSC/issues/4124) +* EXOMailContact + * Added support for Custom Attributes and Extension Custom Attributes. * IntuneDeviceConfigurationPolicyMacOS * Fix workaround added on PR #4099 in order to be able to use this resource for deployments @@ -21,6 +23,8 @@ * SCDLPComplianceRule * Fix type of AccessScope FIXES [#3463](https://github.com/microsoft/Microsoft365DSC/issues/3463) +* TeamsTenantDialPlan + * FIXES [#3767](https://github.com/microsoft/Microsoft365DSC/issues/3767) # 1.24.103.1 diff --git a/Modules/Microsoft365DSC/Examples/Resources/AADAuthenticationMethodPolicyAuthenticator/1-Create.ps1 b/Modules/Microsoft365DSC/Examples/Resources/AADAuthenticationMethodPolicyAuthenticator/1-Create.ps1 index fb6900710a..4154df76fb 100644 --- a/Modules/Microsoft365DSC/Examples/Resources/AADAuthenticationMethodPolicyAuthenticator/1-Create.ps1 +++ b/Modules/Microsoft365DSC/Examples/Resources/AADAuthenticationMethodPolicyAuthenticator/1-Create.ps1 @@ -24,17 +24,9 @@ Configuration Example Id = 'Legal Team' TargetType = 'group' } - MSFT_AADAuthenticationMethodPolicyAuthenticatorExcludeTarget{ - Id = 'Paralegals' - TargetType = 'group' - } ); FeatureSettings = MSFT_MicrosoftGraphmicrosoftAuthenticatorFeatureSettings{ DisplayLocationInformationRequiredState = MSFT_MicrosoftGraphAuthenticationMethodFeatureConfiguration{ - ExcludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{ - Id = 'all_users' - TargetType = 'group' - } IncludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{ Id = 'all_users' TargetType = 'group' @@ -42,10 +34,6 @@ Configuration Example State = 'default' } CompanionAppAllowedState = MSFT_MicrosoftGraphAuthenticationMethodFeatureConfiguration{ - ExcludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{ - Id = 'all_users' - TargetType = 'group' - } IncludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{ Id = 'all_users' TargetType = 'group' @@ -53,10 +41,6 @@ Configuration Example State = 'default' } DisplayAppInformationRequiredState = MSFT_MicrosoftGraphAuthenticationMethodFeatureConfiguration{ - ExcludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{ - Id = 'all_users' - TargetType = 'group' - } IncludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{ Id = 'all_users' TargetType = 'group' diff --git a/Modules/Microsoft365DSC/Examples/Resources/AADAuthenticationMethodPolicyAuthenticator/2-Update.ps1 b/Modules/Microsoft365DSC/Examples/Resources/AADAuthenticationMethodPolicyAuthenticator/2-Update.ps1 index b57ce2441d..e5249bc9b3 100644 --- a/Modules/Microsoft365DSC/Examples/Resources/AADAuthenticationMethodPolicyAuthenticator/2-Update.ps1 +++ b/Modules/Microsoft365DSC/Examples/Resources/AADAuthenticationMethodPolicyAuthenticator/2-Update.ps1 @@ -19,9 +19,9 @@ Configuration Example { Credential = $Credscredential; Ensure = "Present"; - ExcludeTargets = @( # Updated Property + ExcludeTargets = @( MSFT_AADAuthenticationMethodPolicyAuthenticatorExcludeTarget{ - Id = 'Legal Team' + Id = 'Finance Team' # Updated Property TargetType = 'group' } ); diff --git a/Modules/Microsoft365DSC/Microsoft365DSC.psd1 b/Modules/Microsoft365DSC/Microsoft365DSC.psd1 index ffe31fa83a..7f2b2f7538 100644 --- a/Modules/Microsoft365DSC/Microsoft365DSC.psd1 +++ b/Modules/Microsoft365DSC/Microsoft365DSC.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2024-01-03 +# Generated on: 2024-01-10 @{ @@ -11,7 +11,7 @@ # RootModule = '' # Version number of this module. - ModuleVersion = '1.24.103.1' + ModuleVersion = '1.24.110.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -140,40 +140,32 @@ IconUri = 'https://github.com/microsoft/Microsoft365DSC/blob/Dev/Modules/Microsoft365DSC/Dependencies/Images/Logo.png?raw=true' # ReleaseNotes of this module - ReleaseNotes = '* AADConditionalAccessPolicy - * Fix Get-TargetResource when the parameter Id is not present - FIXES [#4029](https://github.com/microsoft/Microsoft365DSC/issues/4003) - * EXOInboundConnector - * Corrected parameter descriptions, so the documentation on microsoft365dsc.com is generated correctly. - * EXOMailTips - * Added parameter descriptions for better documentation - * EXOOutboundConnector - * Corrected parameter descriptions, so the documentation on microsoft365dsc.com is generated correctly. - * EXOReportSubmissionPolicy + ReleaseNotes = '* AADAdministrativeUnit + * Fix the Update logic flow to get around a bug in Microsoft.Graph 2.11.1. + * AADAuthenticationMethodPolicyX509 + * Added support for the property for include targets + * AADConditionalAccessPolicy + * Added support for application filters in the conditions. + * Implement Fix #3885. Manage Exclude Application. + FIXES [[#3885](https://github.com/microsoft/Microsoft365DSC/issues/3885)] + * AADGroupOwnerConsentSettings * Initial release - FIXES [#3690](https://github.com/microsoft/Microsoft365DSC/issues/3690) - * EXOReportSubmissionRule - * Initial release - FIXES [#3690](https://github.com/microsoft/Microsoft365DSC/issues/3690) - * EXOTransportRule - * Stop supporting DLP-related rules, conditions, and actions (https://techcommunity.microsoft.com/t5/exchange-team-blog/exchange-online-mail-flow-rules-to-stop-supporting-dlp-related/ba-p/3959870) - FIXES [#3929](https://github.com/microsoft/Microsoft365DSC/issues/3929) + Implements [#4112](https://github.com/microsoft/Microsoft365DSC/issues/4112) + * EXOHostedContentFilterPolicy + * Fix issue on parameters AllowedSenders, AllowedSenderDomains, BlockedSenders, + BlockSenderDomains if desired state is empty but current state is not empty. + FIXES[#4124](https://github.com/microsoft/Microsoft365DSC/issues/4124) + * EXOMailContact + * Added support for Custom Attributes and Extension Custom Attributes. * IntuneDeviceConfigurationPolicyMacOS - * Added parameter descriptions for better documentation - * IntuneSettingCatalogCustomPolicyWindows10 - * Fix Get-TargetResource when the parameter Id is not present - FIXES [#4029](https://github.com/microsoft/Microsoft365DSC/issues/4003) - * SPOTenantSettings - * Added parameter descriptions for better documentation - * TeamsChannel - * Add error handling if GroupId of a team is null - FIXES [#3943](https://github.com/microsoft/Microsoft365DSC/issues/3943) - * TeamsFeedbackPolicy - * Added parameter descriptions for better documentation - * TeamsMobilityPolicy - * Added parameter descriptions for better documentation - * TeamsNetworkRoamingPolicy - * Added parameter descriptions for better documentation' + * Fix workaround added on PR #4099 in order to be able to use this resource + for deployments + FIXES [#4105](https://github.com/microsoft/Microsoft365DSC/issues/4105) + * SCDLPComplianceRule + * Fix type of AccessScope + FIXES [#3463](https://github.com/microsoft/Microsoft365DSC/issues/3463) + * TeamsTenantDialPlan + * FIXES [#3767](https://github.com/microsoft/Microsoft365DSC/issues/3767)' # Flag to indicate whether the module requires explicit user acceptance for install/update # RequireLicenseAcceptance = $false