Skip to content

Commit

Permalink
Merge pull request #5758 from NikCharlebois/Release-1.25.212.1
Browse files Browse the repository at this point in the history
Release 1.25.212.1
  • Loading branch information
NikCharlebois authored Feb 12, 2025
2 parents a967f6f + 74856bf commit 0155d91
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* AADGroupEligibilitySchedule
* FIXES [#5741] Missing -All variable which prevented enumeration of more than 100 Groups

# UNRELEASED
# 1.25.212.1

* AADApplication
* Changing the AuthenticationBehaviors parameters to string to allow
Expand All @@ -24,6 +24,7 @@
* Simplify export behavior for all resources and complex objects.
* DEPENDENCIES
* Removed dependency on Microsoft.PowerApps.Administration.PowerShell.
* Updated DSCParser to version 2.0.0.15.
* Updated MSCloudLoginAssistant to version 1.1.37.
* Updated ReverseDSC to version 2.0.0.25.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,7 @@ function Export-TargetResource
# Replace the certificate variables.
$currentDSCBlock = $currentDSCBlock.Replace("'New-Object System.", "New-Object System.").Replace(" -Force))'", " -Force))")
$currentDSCBlock = $currentDSCBlock.Replace("(ConvertTo-SecureString (''", "(ConvertTo-SecureString ('").Replace("''Password''", "'Password'").Replace("'') -AsPlainText", "') -AsPlainText")
$currentDSCBlock = $currentDSCBlock.Replace(''') -AsPlainText -Force))"', "') -AsPlainText -Force))")

$dscContent += $currentDSCBlock
Save-M365DSCPartialExport -Content $currentDSCBlock `
Expand Down
2 changes: 1 addition & 1 deletion Modules/Microsoft365DSC/Dependencies/Manifest.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
@{
ModuleName = 'DSCParser'
RequiredVersion = '2.0.0.14'
RequiredVersion = '2.0.0.15'
},
@{
ModuleName = 'ExchangeOnlineManagement'
Expand Down
40 changes: 19 additions & 21 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: 2025-02-05
# Generated on: 2025-02-12

@{

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

# Version number of this module.
ModuleVersion = '1.25.205.1'
ModuleVersion = '1.25.212.1'

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

# ReleaseNotes of this module
ReleaseNotes = '* AADConditionalAccessPolicy
* Changed the InsiderRiskTypes property to a string array.
* AADConnectorGroupApplicationProxy
* Fixes an issue where the Get-TargetResource was not able to retrieve
instances by names.
* AADGroup
* Refactored logic for CIM Instance evaluation in Test-TargetResource.
* AADServicePrincipal
* Fixes comparison of assigned roles for null values.
FIXES [#5717](https://github.com/microsoft/Microsoft365DSC/issues/5717)
* CommerceSelfServicePurchase
ReleaseNotes = '* AADApplication
* Changing the AuthenticationBehaviors parameters to string to allow
for null values.
* AADCrossTenantAccessPolicyConfigurationDefault
* Fixes an issue with CIM class export.
* AADCrossTenantAccessPolicyConfigurationPartner
* Fixes an issue with CIM class export.
FIXES [#5711](https://github.com/microsoft/Microsoft365DSC/issues/5711)
* EXORetentionPolicyTag
* Initial release.
* SCPolicyConfig
* Fixes and issue where Get-TargetResource was returning an empty array
instead of a null value when no values were defined.
* SCRoleGroupMember
* Error handling if the Members parameter is omitted.
* EXOSmtpDaneInbound
* Updated authentication properties to align with MOF definition.
FIXES [#5709](https://github.com/microsoft/Microsoft365DSC/issues/5709)
* MISC
* Changed the CIMInstance logic of various resources to us common logic.
* Added support for specifying a proxy in Update-M365DSCModule.
* PowerPlatform resource revamp to use direct REST API calls.
* Simplify export behavior for all resources and complex objects.
* DEPENDENCIES
* Updated MSCloudLoginAssistant to version 1.1.36.'
* Removed dependency on Microsoft.PowerApps.Administration.PowerShell.
* Updated MSCloudLoginAssistant to version 1.1.37.
* Updated ReverseDSC to version 2.0.0.25.'

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

0 comments on commit 0155d91

Please sign in to comment.