Skip to content

v0.14.3

Choose a tag to compare

@github-actions github-actions released this 14 May 18:13
· 12 commits to main since this release
ed6ec9d

Highlights

  • Plain-markdown reports. gaps.md and screenshots.md are readable again as standalone markdown. The <div class="ftg-…"> wrappers that styled Hugo mirror-mode pages had broken these files outside Hugo; they now render cleanly in any markdown viewer. Drift, missing-screenshot, possibly-covered, and image-issue findings render as bullet lists grouped under ### Large / Medium / Small priority sub-headings, with quoted passages in fenced code blocks. Mirror-mode Hugo pages adopt the same shape; expanded-mode per-feature pages are unchanged.

Release plumbing

  • No more double image publishes on release day. The previous guard (git tag --points-at HEAD) was racy: when git push --follow-tags fired the branch + tag webhooks, the new tag wasn't always visible to the main-push run's actions/checkout by the time the guard checked, and both runs would publish. v0.14.3 replaces the guard with SHA-keyed concurrency — both runs land in publish-image-<sha> and the later tag run cancels the in-flight main run.
  • node24 runtimes everywhere. Bumped the last few GitHub Actions still pinned to deprecated node20 runtimes: actions/checkout v4→v5, docker/setup-qemu-action v3→v4, docker/setup-buildx-action v3→v4, docker/login-action v3→v4, docker/metadata-action v5→v6, docker/build-push-action v6→v7.

What's Changed

  • ci: bump remaining node20 GitHub Actions to node24-runtime versions by @britt in #100
  • ci(image): use SHA-keyed concurrency to dedupe release-day builds by @britt in #101
  • fix(reporter): emit plain markdown in gaps.md and screenshots.md by @britt in #102

Full Changelog: v0.14.2...v0.14.3