Skip to content

Commit

Permalink
Merge pull request #3236 from microsoft/Dev
Browse files Browse the repository at this point in the history
Release 1.23.426.3
  • Loading branch information
NikCharlebois authored Apr 27, 2023
2 parents c027a5d + bed5dff commit b58363d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change log for Microsoft365DSC

# 1.23.426.3

* DEPENDENCIES
* Updated MSCloudLoginAssistant to version 1.0.108.
* MISC
* If an error occurs during the export process, we now throw an error instead of simply writing the error
back to the host via Write-Host.

# 1.23.426.2

* DEPENDENCIES
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 @@ -74,7 +74,7 @@
},
@{
ModuleName = "MSCloudLoginAssistant"
RequiredVersion = "1.0.107"
RequiredVersion = "1.0.108"
},
@{
ModuleName = 'PnP.PowerShell'
Expand Down
4 changes: 2 additions & 2 deletions Modules/Microsoft365DSC/Microsoft365DSC.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '1.23.426.2'
ModuleVersion = '1.23.426.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -140,7 +140,7 @@

# ReleaseNotes of this module
ReleaseNotes = '* DEPENDENCIES
* Updated MSCloudLoginAssistant to version 1.0.107.
* Updated MSCloudLoginAssistant to version 1.0.108.
FIXES #3231'

# Flag to indicate whether the module requires explicit user acceptance for install/update
Expand Down
2 changes: 1 addition & 1 deletion Modules/Microsoft365DSC/Modules/M365DSCReverse.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -832,9 +832,9 @@ function Start-M365DSCConfigurationExtract
}
catch
{
Write-Host $_
$partialPath = Join-Path $env:TEMP -ChildPath "$($Global:PartialExportFileName)"
Write-Host "Partial Export file was saved at: $partialPath"
throw $_
}
}

Expand Down

0 comments on commit b58363d

Please sign in to comment.