Skip to content

v1.1.7

Compare
Choose a tag to compare
@santisq santisq released this 24 Jun 03:15
· 42 commits to main since this release

What's Changed

  • Updates build process by @santisq in #32

  • Fixes incorrect error message on passed ScriptBlock by -Variables by @santisq in #34

    • Invoke-Parallel v1.1.6

    PS \> $null | Invoke-Parallel { $var } -Variables @{ var = {} }
    # Invoke-Parallel: A $using: variable cannot be a script block. Passed-in script block variables are not supported, and can result in undefined behavior.
    • Invoke-Parallel v1.1.7

    PS \> $null | Invoke-Parallel { $var } -Variables @{ var = {} }
    # Invoke-Parallel: Passed-in script block variables are not supported, and can result in undefined behavior.

Full Changelog: v1.1.6...v1.1.7