chore: prepare v3.1.0 release - #252
Draft
claude[bot] wants to merge 1 commit into
Draft
Conversation
Convert the Unreleased changelog section into 3.1.0 (dated 2026-08-13), add the compare links, and bump the package version to 3.1.0, mirroring the v3.0.1 release prep (#244). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PZaoBFaqymqCQQMZFcApJx
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.
Requested by Phil Ewels · Slack thread
Description of changes
Release prep for v3.1.0. This release ships the changes merged in #251:
install-javainput — lets workflows skip the bundled Java installation and use the Java already available on the runner (e.g. a pre-configured JDK), with an early, actionable failure ifinstall-java: falseis set but no Java is found viaJAVA_HOMEor thePATH(Add input to skip installing java #234).version: '22.04', falling back to the GitHub releases API if no valid entries remain. This is the failure that was breaking theexample-usage (22.04, *)CI jobs on master.New feature, no breaking changes, so per semver this is a minor bump: 3.0.1 → 3.1.0.
What changed in this PR
Mirrors the v3.0.1 prep (#244) exactly — same three files:
CHANGELOG.md: converted the## [Unreleased]section into## [3.1.0] - 2026-08-13and added the compare links ([unreleased]now points atv3.1.0...HEAD).package.json/package-lock.json: version bumped to3.1.0(npm version 3.1.0 --no-git-tag-version).dist/was rebuilt locally (npm run package) and is byte-identical — the bundle does not embed the version, so no dist changes, same as chore: prepare v3.0.1 release #244.PR checklist
npm run lint)npm run format:check)npm run test) — 28/29 pass locally; theInstall Nextflowtest downloads a real Nextflow binary and timed out in the sandbox used to prep this PR (known sandbox network limitation), CI should exercise itCHANGELOG.mdis updatedPost-merge: publishing the release
Merging this PR does not publish anything. A maintainer still needs to create the release the same way v3.0.1 was published (an orphan snapshot commit with signed tags):
masterand build the bundle:npm ci && npm run package.893c28b):CHANGELOG.md,LICENSE,README.md,action.yml,dist/,docs/,subaction/— no sources, tests, or dev config. Commit message convention:bump to 3.1.0.git tag -s v3.1.0 -m v3.1.0andgit tag -s v3.1 -m v3.1, and move the major tag:git tag -fs v3 -m v3.git push origin v3.1.0 v3.1andgit push -f origin v3.v3.1.0, using the## [3.1.0]CHANGELOG section as the release notes (same format as the v3.0.1 release).Generated by Claude Code