Skip to content

Releases: Goldziher/poly

v0.11.0

Choose a tag to compare

@github-actions github-actions released this 08 Jul 05:48
v0.11.0
a612d0e

Release v0.11.0

V0 Floating Tag

Choose a tag to compare

@Goldziher Goldziher released this 30 Jun 06:24
a612d0e

v0.10.0

Choose a tag to compare

@github-actions github-actions released this 07 Jul 09:29
v0.10.0
fe82d98

Release v0.10.0

v0.9.0

Choose a tag to compare

@github-actions github-actions released this 06 Jul 09:21
v0.9.0
fd24f73

Release v0.9.0

v0.8.0

Choose a tag to compare

@github-actions github-actions released this 06 Jul 07:58
v0.8.0
72d169d

Release v0.8.0

v0.7.0

Choose a tag to compare

@github-actions github-actions released this 05 Jul 16:18
v0.7.0
6b5951f

Release v0.7.0

v0.6.0

Choose a tag to compare

@github-actions github-actions released this 05 Jul 10:12
v0.6.0
553e019

Release v0.6.0

v0.5.1

Choose a tag to compare

@github-actions github-actions released this 04 Jul 21:41
v0.5.1
9e1d747

Release v0.5.1

v0.5.0

Choose a tag to compare

@github-actions github-actions released this 04 Jul 17:28
v0.5.0
31c2502

Added

  • Live per-hook progress for poly hooks — when stderr is a terminal, each
    hook now prints a ▶ <id> … line as it starts and a ✓/× <id> (<duration>)
    line as it finishes, so a long-running hook (cargo clippy, cargo test, …) is
    visibly running instead of leaving the terminal blank until the whole stage
    completes — which read as a hung commit. Progress goes to stderr and is
    suppressed when stderr is not a terminal (piped / CI), so captured output is
    unchanged.
  • Autofixable count in the lint summarypoly lint now reports how many of
    the findings can be resolved automatically (N fixable with the --fix option.), making the value of a follow-up --fix run obvious from a dry run.
    The line is omitted when nothing is fixable.

v0.4.0

Choose a tag to compare

@github-actions github-actions released this 04 Jul 08:13
v0.4.0
404be3e

Added

  • Colored poly hooks install / uninstall output — a green ✓ header with
    the hook count and the (relative) hooks directory, then one line per hook name,
    replacing the flat list of absolute paths.

Changed

  • Installed git-hook shims resolve poly from PATH rather than baking in an
    absolute path to the binary, so a hook always runs whatever poly is current
    (a recorded absolute path could pin a stale or moved build). When poly is not
    on PATH the shim now fails with a clear, actionable message and a non-zero exit
    instead of proceeding as though the hook had passed. Re-run poly hooks install
    to migrate existing shims.

Fixed

  • Native-toolchain formatter output is normalized to LF line endings; some
    first-party CLIs emit CRLF on Windows, which made output platform-dependent.