From 26e8ad27a09a225049a7075d7ec1caa2df6ff332 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 15 Mar 2026 14:23:25 -0400 Subject: [PATCH] release 2.6.0 Signed-off-by: Rui Chen --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a418846..9370d70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +## 2.6.0 + +`2.6.0` is a minor release centered on `previous_tag` support for `generate_release_notes`, +which lets workflows pin GitHub's comparison base explicitly instead of relying on the default range. +It also includes the recent concurrent asset upload recovery fix, a `working_directory` docs sync, +a checked-bundle freshness guard for maintainers, and clearer immutable-prerelease guidance where +GitHub platform behavior imposes constraints on how prerelease asset uploads can be published. + +If you still hit an issue after upgrading, please open a report with the bug template and include a minimal repro or sanitized workflow snippet where possible. + +## What's Changed + +### Exciting New Features 🎉 + +* feat: support previous_tag for generate_release_notes by @pocesar in https://github.com/softprops/action-gh-release/pull/372 + +### Bug fixes 🐛 + +* fix: recover concurrent asset metadata 404s by @chenrui333 in https://github.com/softprops/action-gh-release/pull/760 + +### Other Changes 🔄 + +* docs: clarify reused draft release behavior by @chenrui333 in https://github.com/softprops/action-gh-release/pull/759 +* docs: clarify working_directory input by @chenrui333 in https://github.com/softprops/action-gh-release/pull/761 +* ci: verify dist bundle freshness by @chenrui333 in https://github.com/softprops/action-gh-release/pull/762 +* fix: clarify immutable prerelease uploads by @chenrui333 in https://github.com/softprops/action-gh-release/pull/763 + ## 2.5.3 `2.5.3` is a patch release focused on the remaining path-handling and release-selection bugs uncovered after `2.5.2`. diff --git a/package-lock.json b/package-lock.json index f6ccf76..3a5e3df 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "action-gh-release", - "version": "2.5.3", + "version": "2.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "action-gh-release", - "version": "2.5.3", + "version": "2.6.0", "dependencies": { "@actions/core": "^3.0.0", "@actions/github": "^9.0.0", diff --git a/package.json b/package.json index cc4e488..a910406 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "action-gh-release", - "version": "2.5.3", + "version": "2.6.0", "private": true, "description": "GitHub Action for creating GitHub Releases", "main": "lib/main.js",