Skip to content

Commit

Permalink
Merge pull request #2309 from NikCharlebois/Release-1.22.921.1
Browse files Browse the repository at this point in the history
Release 1.22.921.1
  • Loading branch information
NikCharlebois authored Sep 21, 2022
2 parents 6e99962 + a9a4d0d commit 23e1d71
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 17 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Change log for Microsoft365DSC

# UNRELEASED
# 1.22.921.1

* AADRoleSetting
* Fixed an issue if the P2 License is not present on the tenant the Export stop working
FIXES [#2227](https://github.com/microsoft/Microsoft365DSC/issues/2227)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ function Set-TargetResource
# AvailabilityAddressSpace doe not have a new-AvailabilityAddressSpace cmdlet but instead uses an add-AvailabilityAddressSpace cmdlet
try
{
$AvailabilityAddressSpaceParams.Remove('Identity') | Out-Null
$AvailabilityAddressSpaceParams.Remove('Credentials') | Out-Null
add-AvailabilityAddressSpace @AvailabilityAddressSpaceParams -ea stop
}
catch
Expand All @@ -279,6 +281,8 @@ function Set-TargetResource

try
{
$AvailabilityAddressSpaceParams.Remove('Identity') | Out-Null
$AvailabilityAddressSpaceParams.Remove('Credentials') | Out-Null
add-AvailabilityAddressSpace @AvailabilityAddressSpaceParams -ea stop
}
catch
Expand Down
4 changes: 2 additions & 2 deletions Modules/Microsoft365DSC/Dependencies/Manifest.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
RequiredVersion = '1.3.0.6'
},
@{
ModuleName = 'ExchangeOnlineManagement'
RequiredVersion = '3.0.0'
ModuleName = "ExchangeOnlineManagement"
RequiredVersion = "3.0.0"
},
@{
ModuleName = 'Microsoft.Graph.Applications'
Expand Down
33 changes: 19 additions & 14 deletions Modules/Microsoft365DSC/Microsoft365DSC.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 2022-09-14
# Generated on: 2022-09-21

@{

# Script module or binary module file associated with this manifest.
# RootModule = ''

# Version number of this module.
ModuleVersion = '1.22.914.1'
ModuleVersion = '1.22.921.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -137,18 +137,23 @@
IconUri = 'https://github.com/microsoft/Microsoft365DSC/blob/Dev/Modules/Microsoft365DSC/Dependencies/Images/Logo.png?raw=true'

# ReleaseNotes of this module
ReleaseNotes = "* AADGroup
* Changed behavior where if a group has a dynamic membership rule that is active,
we no longer process members from the export, Get and Set functions.
FIXES [#2190](https://github.com/microsoft/Microsoft365DSC/issues/2190)
* Fixed an issue where if the licenses parameter was omitted and another parameter caused
a drift, that the licenses would get stripped from the group.
FIXES [#2191](https://github.com/microsoft/Microsoft365DSC/issues/2191)
* AADRoleSetting
* Fixed an issue where the export wasn't properly passing credential to the Get function.
* TeamsCallingPolicy
* Added UserOverride as an accepted value for the BusyOnBusyEnabledType parameter.
FIXES [#2271](https://github.com/microsoft/Microsoft365DSC/issues/2271)"
ReleaseNotes = "* AADRoleSetting
* Fixed an issue if the P2 License is not present on the tenant the Export stop working
FIXES [#2227](https://github.com/microsoft/Microsoft365DSC/issues/2227)
* Fixed an issue with approver can be a group
FIXES [#2283](https://github.com/microsoft/Microsoft365DSC/issues/2283)
* AADConditionalAccessPolicy
* Added support for the CustomAuthenticationFactors parameter.
FIXES [#2292](https://github.com/microsoft/Microsoft365DSC/issues/2292)
* O365User
* Improved extraction performance by leveraging StringBuilder instead of re-assigning string.
* SCAutoSensitivityLabelPolicy
* Initial Release.
* SCAutoSensitivityLabelRule
* Initial Release.
* DEPENDENCIES
* Updated the ExchangeOnlineManagement dependency to version 3.0.0.
* Updated the MSCloudLoginAssistant dependency to version 1.0.89."

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

0 comments on commit 23e1d71

Please sign in to comment.