v1.1.5
What's Changed
This release adds support to properly handle property and index accessing on using:
statements. v1.1.4
added support for index accessing however accessing of properties was not working properly. This release fixes that, including nested accessing. Example:
$test = @{
foo = @{
bar = [pscustomobject]@{ baz = 0..10 }
}
}
1 | Invoke-Parallel { $using:test['foo']['bar'].baz[5] } # Outputs: 5
Full Changelog: v1.1.4...v1.1.5