Skip to content

Commit

Permalink
Merge pull request #3018 from microsoft/Dev
Browse files Browse the repository at this point in the history
Release 1.23.315.2
  • Loading branch information
NikCharlebois authored Mar 16, 2023
2 parents 63816e1 + f44e0df commit 8ea17ac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 36 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change log for Microsoft365DSC

# 1.23.315.2

* EXORoleGroup
* Fixes an issue with the Export process where the name of the role wasn't properly set causing errors.

# 1.23.315.1

* AADConditionalAccessPolicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ function Export-TargetResource
foreach ($RoleGroup in $AllRoleGroups)
{
Write-Host " |---[$i/$($AllRoleGroups.Count)] $($RoleGroup.Name)" -NoNewline
$roleGroupMember = Get-RoleGroupMember -Identity $Name | Select-Object DisplayName
$roleGroupMember = Get-RoleGroupMember -Identity $RoleGroup.Name | Select-Object DisplayName

$Params = @{
Name = $RoleGroup.Name
Expand Down
37 changes: 2 additions & 35 deletions Modules/Microsoft365DSC/Microsoft365DSC.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -139,41 +139,8 @@
IconUri = 'https://github.com/microsoft/Microsoft365DSC/blob/Dev/Modules/Microsoft365DSC/Dependencies/Images/Logo.png?raw=true'

# ReleaseNotes of this module
ReleaseNotes = '* AADConditionalAccessPolicy
* Handle Named Location "Multifactor authentication trusted IPs"
Fixed [#2974](https://github.com/microsoft/Microsoft365DSC/issues/2974)
* Export and handle guest and external users.
Fixed [#2965](https://github.com/microsoft/Microsoft365DSC/issues/2965)
* AADEntitlementManagementConnectedOrganization
* Initial release
* EXOOrganizationConfig
* Add support for the MessageRecallEnabled parameter.
FIXES [#2978](https://github.com/microsoft/Microsoft365DSC/issues/2978)
* EXORoleAssignmentPolicy
* Allow description and role change at the same time.
FIXES [#2977](https://github.com/microsoft/Microsoft365DSC/issues/2977)
* EXORoleGroup
* Initial release
* EXOTransportConfig
* Ensures the ExternalDsnDefaultLanguage property is correctly escaped.
FIXES [#2970](https://github.com/microsoft/Microsoft365DSC/issues/2970)
* IntuneAppProtectionPolicyiOS
* Amended MinimumWipeOSVersion case
FIXES [#3000](https://github.com/microsoft/Microsoft365DSC/issues/3000)
* PPTenantIsolationSettings
* Fixes the export of the Rules block which wasn t properly formatted.
FIXES [#2979](https://github.com/microsoft/Microsoft365DSC/issues/2979)
* SPOTenantSettings
* Add support for the CommentsOnSitePagesDisabled parameter.
* MISC
* Added checks in New-M365DSCConnection to ensure beta MSGraph profile is correctly set when requested
FIXES [#2942](https://github.com/microsoft/Microsoft365DSC/issues/2942)
* Added all Certificate related property to the returned values of the Get-TargetResource function
across all Security & Compliance resources.
FIXES [#2989](https://github.com/microsoft/Microsoft365DSC/issues/2989)
* DEPENDENCIES
* Updated Microsoft.Graph dependencies to version 1.23.0.
* Updated Microsoft.PowerApps.Administration.PowerShell to 2.0.156.'
ReleaseNotes = '* EXORoleGroup
* Fixes an issue with the Export process where the name of the role was not properly set causing errors.'

# Flag to indicate whether the module requires explicit user acceptance for install/update
# RequireLicenseAcceptance = $false
Expand Down

0 comments on commit 8ea17ac

Please sign in to comment.