Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Feb 14, 2023
1 parent 74c5a3b commit c7c2680
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
FIXES [#2866](https://github.com/microsoft/Microsoft365DSC/issues/2866)
* Added filter to Update-M365DSCAzureAdApplication to be more specific.
FIXES [2565](https://github.com/microsoft/Microsoft365DSC/issues/2565)
* Fixed the JSON conversion depth for the New-M365DSCConfigurationToJSON cmdlet.
FIXES [#2891](https://github.com/microsoft/Microsoft365DSC/issues/2891)

# 1.23.208.1

Expand Down
2 changes: 1 addition & 1 deletion Modules/Microsoft365DSC/Modules/M365DSCReport.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function New-M365DSCConfigurationToJSON
$OutputPath
)

$jsonContent = $ParsedContent | ConvertTo-Json
$jsonContent = $ParsedContent | ConvertTo-Json -Depth 25
$jsonContent | Out-File -FilePath $OutputPath
}

Expand Down

0 comments on commit c7c2680

Please sign in to comment.