From dcb02c044cca61f16b39574a73cbfc0bab60d385 Mon Sep 17 00:00:00 2001 From: Ben Vinegar Date: Sat, 13 Jun 2026 14:18:03 -0400 Subject: [PATCH] ci: download only platform artifacts for releases --- .github/workflows/release-prebuilt-npm.yml | 1 + CHANGELOG.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/release-prebuilt-npm.yml b/.github/workflows/release-prebuilt-npm.yml index c101ab05..93370232 100644 --- a/.github/workflows/release-prebuilt-npm.yml +++ b/.github/workflows/release-prebuilt-npm.yml @@ -159,6 +159,7 @@ jobs: - name: Download platform artifacts uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: + pattern: hunkdiff-* path: dist/release/artifacts - name: Show downloaded artifacts diff --git a/CHANGELOG.md b/CHANGELOG.md index f9fb6a5c..e1bb0f70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ All notable user-visible changes to Hunk are documented in this file. ### Fixed - Fixed Windows launches from Cygwin, Git Bash, and WSL-style VCS paths by normalizing Unix-style repo roots before reusing them as subprocess working directories or filesystem roots. +- Fixed release staging so benchmark comparison artifacts are not mistaken for platform binary artifacts. - Reduced hunk-navigation latency and memory growth on large reviews by keeping diff geometry memoized when the selected hunk changes. - Reduced scroll and hunk-navigation latency on large reviews by avoiding repeated separator measurement and preserving memoized offscreen/visible diff rows across viewport updates. - Reduced main diff pane rendering work on large reviews by virtualizing offscreen file sections behind exact-height spacers.