Skip to content

Commit

Permalink
Merge pull request #5582 from NikCharlebois/Various-Fixes
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
NikCharlebois authored Dec 18, 2024
2 parents 2b260c8 + cd92a15 commit 8555db3
Show file tree
Hide file tree
Showing 5 changed files with 166 additions and 302 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@
* FIXES [#5550](https://github.com/microsoft/Microsoft365DSC/issues/5550)
* MISC
* Fixed the Fabric web request to use basic parsing.
* Fixed an issue where the export does not convert tenant name into
generic $OrganizationName variable correctly.
* Reset only necessary authentication context.
* M365DSCUtil
* Update `Get-M365DSCWorkloadsListFromResourceNames` function for more input types.
FIXES [#5525](https://github.com/microsoft/Microsoft365DSC/issues/5525)
* DEPENDENCIES
* Updated Microsoft.PowerApps.Administration.PowerShell to version 2.0.202.
* Updated MSCloudLoginAssistant to version 1.1.30.
* Updated ReverseDSC to version 2.0.0.23.
* Updated MSCloudLoginAssistant to version 1.1.31.

# 1.24.1211.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,11 @@ function Export-TargetResource
}
foreach ($config in $getValue)
{
if ($null -ne $Global:M365DSCExportResourceInstancesCount)
{
$Global:M365DSCExportResourceInstancesCount++
}

$displayedKey = $config.Id
if (-not [String]::IsNullOrEmpty($config.displayName))
{
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 @@ -122,7 +122,7 @@
},
@{
ModuleName = "MSCloudLoginAssistant"
RequiredVersion = "1.1.30"
RequiredVersion = "1.1.31"
},
@{
ModuleName = 'PnP.PowerShell'
Expand All @@ -138,7 +138,7 @@
},
@{
ModuleName = 'ReverseDSC'
RequiredVersion = '2.0.0.23'
RequiredVersion = '2.0.0.22'
}
)
}
Loading

0 comments on commit 8555db3

Please sign in to comment.