Skip to content

v0.13.0.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 30 Oct 19:48
· 2 commits to main since this release
0.13.0.0 (2024-10-30)

 *  Incrementally display output of `eval` commands (#132)

    Rather than waiting for the process to complete and then displaying its
    output, `patat` now fetches the `stdout` and `stderr` as it becomes
    available and refreshes the display.

    This means that by default, **stderr is now displayed as well**.
    To disable displaying `stderr`, you can add `stderr: false` to the eval
    configuration, e.g.:

    ```yaml
    patat:
      eval:
        bash:
          command: bash
          stderr: false
    ```