From 24e3fbe822c7c6d61b4f9bca6f3e42d481c49b00 Mon Sep 17 00:00:00 2001 From: Nik Charlebois Date: Fri, 31 Mar 2023 10:30:26 -0400 Subject: [PATCH 1/3] Fixes #3066 --- CHANGELOG.md | 2 ++ .../MSFT_SPOTenantSettings/MSFT_SPOTenantSettings.psm1 | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1254f8feee..0aef83b579 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -100,6 +100,8 @@ and the apps were not exported. * SPOTenantSettings * [BREAKING CHANGE] Remove deprecated parameter RequireAcceptingAccountMatchInvitedAccount + * Fixes how we are extracting the DisabledWebPartIds parameter. + FIXES [#3066](https://github.com/microsoft/Microsoft365DSC/issues/3066) * TeamsMeetingPolicy * [BREAKING CHANGE] Remove deprecated parameter RecordingStorageMode * DRG diff --git a/Modules/Microsoft365DSC/DSCResources/MSFT_SPOTenantSettings/MSFT_SPOTenantSettings.psm1 b/Modules/Microsoft365DSC/DSCResources/MSFT_SPOTenantSettings/MSFT_SPOTenantSettings.psm1 index dff98567b7..6867efecb5 100644 --- a/Modules/Microsoft365DSC/DSCResources/MSFT_SPOTenantSettings/MSFT_SPOTenantSettings.psm1 +++ b/Modules/Microsoft365DSC/DSCResources/MSFT_SPOTenantSettings/MSFT_SPOTenantSettings.psm1 @@ -184,7 +184,7 @@ function Get-TargetResource HideDefaultThemes = $SPOTenantSettings.HideDefaultThemes MarkNewFilesSensitiveByDefault = $SPOTenantSettings.MarkNewFilesSensitiveByDefault ConditionalAccessPolicy = $SPOTenantSettings.ConditionalAccessPolicy - DisabledWebPartIds = $SPOTenantSettings.DisabledWebPartIds + DisabledWebPartIds = [String[]]$SPOTenantSettings.DisabledWebPartIds CommentsOnSitePagesDisabled = $SPOTenantSettings.CommentsOnSitePagesDisabled Credential = $Credential ApplicationId = $ApplicationId From 3fafa676b65b6dc972c684376e326ba17d114016 Mon Sep 17 00:00:00 2001 From: Nik Charlebois Date: Fri, 31 Mar 2023 11:12:20 -0400 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aef83b579..2c6671c5ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -99,9 +99,9 @@ * Fixed issue in the Export where an error was displayed in Verbose mode when Credentials were specified and the apps were not exported. * SPOTenantSettings - * [BREAKING CHANGE] Remove deprecated parameter RequireAcceptingAccountMatchInvitedAccount * Fixes how we are extracting the DisabledWebPartIds parameter. FIXES [#3066](https://github.com/microsoft/Microsoft365DSC/issues/3066) + * [BREAKING CHANGE] Remove deprecated parameter RequireAcceptingAccountMatchInvitedAccount * TeamsMeetingPolicy * [BREAKING CHANGE] Remove deprecated parameter RecordingStorageMode * DRG From e4c017b47fbaf4f30f5626f6a24ca77439f199a2 Mon Sep 17 00:00:00 2001 From: Nik Charlebois Date: Fri, 31 Mar 2023 11:16:58 -0400 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c6671c5ef..0aef83b579 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -99,9 +99,9 @@ * Fixed issue in the Export where an error was displayed in Verbose mode when Credentials were specified and the apps were not exported. * SPOTenantSettings + * [BREAKING CHANGE] Remove deprecated parameter RequireAcceptingAccountMatchInvitedAccount * Fixes how we are extracting the DisabledWebPartIds parameter. FIXES [#3066](https://github.com/microsoft/Microsoft365DSC/issues/3066) - * [BREAKING CHANGE] Remove deprecated parameter RequireAcceptingAccountMatchInvitedAccount * TeamsMeetingPolicy * [BREAKING CHANGE] Remove deprecated parameter RecordingStorageMode * DRG