Skip to content

Commit 4966341

Browse files
updates
1 parent 0392de0 commit 4966341

3 files changed

Lines changed: 386 additions & 381 deletions

File tree

PSFramework/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## ???
4+
5+
- Upd: Wait-PSFRunspaceWorkflow - adding ProgressBar with `-ShowProgress` (#698 | @fslef)
6+
- Fix: ConvertTo-PSFPsd1 - Error: The property 'Depth' cannot be found on this object (#695)
7+
38
## 1.13.406 (2025-08-29)
49

510
- New: Assert-PSFInternalCommand - Verifies, that the command calling it in turn was only called from another command within the same module. (#685)

PSFramework/functions/data/ConvertTo-PSFPsd1.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
)
4848
begin {
4949
$converter = [PSFramework.Data.Psd1Converter]::new()
50-
$converter.Depth = $Depth
50+
$converter.MaxDepth = $Depth
5151
$converter.EnableVerbose = $EnableVerbose
5252
$converter.Config = $Configuration
5353
$converter.Cmdlet = $PSCmdlet

0 commit comments

Comments
 (0)