Skip to content

Commit

Permalink
Merge pull request #3625 from microsoft/Dev
Browse files Browse the repository at this point in the history
Release 1.23.830.1
  • Loading branch information
NikCharlebois committed Aug 30, 2023
2 parents 0b5ccd5 + e656d61 commit 17c7673
Show file tree
Hide file tree
Showing 21 changed files with 2,006 additions and 176 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change log for Microsoft365DSC

# 1.23.830.1

* O365SearchAndintelligenceConfigurations
* Removed support for Service Principal Auth, which the cmdlet never supported.
* SPOHomeSite
* Fixes an issue if no home site exists
FIXES [#3577](https://github.com/microsoft/Microsoft365DSC/issues/3577)
* DEPENDENCIES
* Updated Microsoft.Graph to version 2.4.0.
* Updated ReverseDSC to version 2.0.0.18
* MISC
* Fixes an issue with the generic export CIM Instance logic.
FIXES [#3610](https://github.com/microsoft/Microsoft365DSC/issues/3610)

# 1.23.823.1

* AADAuthorizationPolicy
Expand All @@ -10,6 +24,9 @@
* EXOSafeAttachmentPolicy
* Deprecated ActionOnError Parameter
FIXES [#3579](https://github.com/microsoft/Microsoft365DSC/issues/3579)
* IntuneEndpointDetectionAndResponsePolicyWindows10
* Initial release
FIXES [#3349](https://github.com/microsoft/Microsoft365DSC/issues/3349)
* O365OrgSettings
* Updated logic of the Get to return null if permissions are not granted for
a given API.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1074,8 +1074,8 @@ function Export-TargetResource
}
if ($null -ne $Results.Members)
{
$currentDSCBlock = $currentDSCBlock.Replace("`",`"`r`n", "")
$currentDSCBlock = Convert-DSCStringParamToVariable -DSCBlock $currentDSCBlock -ParameterName 'Members' -IsCIMArray $true
$currentDSCBlock = $currentDSCBlock.Replace("`",`"`r`n", "")
$currentDSCBlock = $currentDSCBlock.Replace(",`r`n", '').Replace("`");`r`n", ");`r`n")
$currentDSCBlock = $currentDSCBlock.Replace("Members = @(`"", "Members = @(")
$currentDSCBlock = $currentDSCBlock.Replace("`$OrganizationName'", "' + `$OrganizationName")
Expand Down
Loading

0 comments on commit 17c7673

Please sign in to comment.