Skip to content

Commit 17c7673

Browse files
Merge pull request #3625 from microsoft/Dev
Release 1.23.830.1
2 parents 0b5ccd5 + e656d61 commit 17c7673

21 files changed

+2006
-176
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change log for Microsoft365DSC
22

3+
# 1.23.830.1
4+
5+
* O365SearchAndintelligenceConfigurations
6+
* Removed support for Service Principal Auth, which the cmdlet never supported.
7+
* SPOHomeSite
8+
* Fixes an issue if no home site exists
9+
FIXES [#3577](https://github.com/microsoft/Microsoft365DSC/issues/3577)
10+
* DEPENDENCIES
11+
* Updated Microsoft.Graph to version 2.4.0.
12+
* Updated ReverseDSC to version 2.0.0.18
13+
* MISC
14+
* Fixes an issue with the generic export CIM Instance logic.
15+
FIXES [#3610](https://github.com/microsoft/Microsoft365DSC/issues/3610)
16+
317
# 1.23.823.1
418

519
* AADAuthorizationPolicy
@@ -10,6 +24,9 @@
1024
* EXOSafeAttachmentPolicy
1125
* Deprecated ActionOnError Parameter
1226
FIXES [#3579](https://github.com/microsoft/Microsoft365DSC/issues/3579)
27+
* IntuneEndpointDetectionAndResponsePolicyWindows10
28+
* Initial release
29+
FIXES [#3349](https://github.com/microsoft/Microsoft365DSC/issues/3349)
1330
* O365OrgSettings
1431
* Updated logic of the Get to return null if permissions are not granted for
1532
a given API.

Modules/Microsoft365DSC/DSCResources/MSFT_AADAdministrativeUnit/MSFT_AADAdministrativeUnit.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,8 +1074,8 @@ function Export-TargetResource
10741074
}
10751075
if ($null -ne $Results.Members)
10761076
{
1077-
$currentDSCBlock = $currentDSCBlock.Replace("`",`"`r`n", "")
10781077
$currentDSCBlock = Convert-DSCStringParamToVariable -DSCBlock $currentDSCBlock -ParameterName 'Members' -IsCIMArray $true
1078+
$currentDSCBlock = $currentDSCBlock.Replace("`",`"`r`n", "")
10791079
$currentDSCBlock = $currentDSCBlock.Replace(",`r`n", '').Replace("`");`r`n", ");`r`n")
10801080
$currentDSCBlock = $currentDSCBlock.Replace("Members = @(`"", "Members = @(")
10811081
$currentDSCBlock = $currentDSCBlock.Replace("`$OrganizationName'", "' + `$OrganizationName")

0 commit comments

Comments
 (0)