Skip to content

v1.1.5

Compare
Choose a tag to compare
@santisq santisq released this 05 Apr 18:24
· 147 commits to main since this release

What's Changed

  • Add support for member accessing on using: statements by @santisq in #21

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