release: prepare v1.1.0 - #8
Merged
Merged
Conversation
Maxerns
marked this pull request as ready for review
July 31, 2026 13:46
There was a problem hiding this comment.
Pull request overview
This PR prepares the v1.1.0 action release by centralizing checksum verification logic (shared by both installers and fixtures), expanding CI coverage for checksum failure paths, and introducing a release workflow that publishes immutable exact tags before updating the moving v1 convenience tag.
Changes:
- Added shared checksum verification helpers for POSIX shell and PowerShell, and updated installers to use them.
- Expanded the test workflow to validate tampered/malformed/duplicate/trailing-junk checksum manifest behavior across OSes.
- Added a release workflow and documentation describing the immutable exact-tag release process and controlled
v1tag movement.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| scripts/verify-checksum.sh | New POSIX checksum helper enforcing single matching manifest entry and digest verification. |
| scripts/verify-checksum.ps1 | New PowerShell checksum helper aligned with the POSIX helper’s parsing/validation intent. |
| scripts/install.sh | Uses helper script for checksum verification; resolves helper path relative to installer. |
| scripts/install.ps1 | Uses helper script for checksum verification via $PSScriptRoot. |
| .github/workflows/test.yml | Adds reusable workflow entrypoint and a new tampered/malformed checksum test matrix job. |
| .github/workflows/release.yml | New release workflow: validates exact tag, reuses test matrix, creates release, then moves v1. |
| RELEASING.md | Documents the exact-tag release workflow and v1 movement rules/process. |
| README.md | Documents pinning exact action releases vs using moving v1 and the no-manual-tags policy. |
| .github/fixtures/checksum/sotto-fixture | Adds checksum test fixture content. |
| .github/fixtures/checksum/SHA256SUMS | Adds checksum manifest fixture for the checksum helper tests. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PR #7 delivered the malformed-version and missing-release half of this failure-path work.
Testing
shasumfallback (Darwin also providessha256sum) and exercised malformed checksum fixtures on Linux, macOS, and Windows in GitHub Actions