Skip to content

3.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Jun 14:10
· 5 commits to refs/heads/main since this release
6997ad4

Changes

Breaking change

  • fix(foreach): Remove shell invocation from foreach @annettejanewilson (#136)

    Turbolift's foreach command no longer invokes a shell to interpret your command. This fixes some issues around passing an empty string as an argument and difficulty escaping shell characters. However, it also means that you can no longer directly pass turbolift a quoted script containing redirects or pipes. Instead, you will need to explicitly invoke a shell yourself. For example, if you previously used turbolift foreach 'script | with > redirects' you would now use turbolift foreach -- bash -c 'script | with > redirects'. We hope that the improved consistency and predictability makes up for needing to be a bit more explicit in this advanced usage.

Other changes

  • feat(pr-status): add build status to pr-status list table @jorgedc93 (#129)