From 3d0d9888cb7fd7b750713d6e236d1fcb99157228 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 13 Jul 2026 10:24:38 -0400 Subject: [PATCH] release 3.0.2 (#818) Signed-off-by: Rui Chen --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 35 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56ab428..5060245 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,35 @@ +## 3.0.2 + +`3.0.2` is a patch release focused on release reliability and compatibility. It +reuses existing draft releases when publishing prereleases, supports replacing +release assets on Gitea, hardens streamed asset uploads, and provides clearer +release-creation diagnostics. It also includes TypeScript, coverage, and tooling +maintenance merged since `3.0.1`. + +This release fixes #795, #438, and #803. The upload transport hardening covers the +historical failure reported in #790, although current hosted Node 24 runners did +not reproduce it naturally. The diagnostics work is related to #786 and does not +claim a reproducible release-creation fix. + +## What's Changed + +### Exciting New Features 🎉 + +* feat: improve release error reporting and test coverage by @chenrui333 in https://github.com/softprops/action-gh-release/pull/813 + +### Bug fixes 🐛 + +* fix: publish existing draft releases as prereleases by @godfengliang in https://github.com/softprops/action-gh-release/pull/801 +* fix: upload small checksum assets reliably by @chenrui333 in https://github.com/softprops/action-gh-release/pull/815 +* fix: replace existing release assets on Gitea by @chenrui333 in https://github.com/softprops/action-gh-release/pull/816 +* fix: clarify release creation 404 errors by @chenrui333 in https://github.com/softprops/action-gh-release/pull/817 + +### Other Changes 🔄 + +* chore(deps): upgrade TypeScript to 7 by @chenrui333 in https://github.com/softprops/action-gh-release/pull/812 +* chore(deps): remove unused TypeScript tooling by @chenrui333 in https://github.com/softprops/action-gh-release/pull/814 +* dependency, Node 24 pin, and CI maintenance merged since `3.0.1` + ## 3.0.1 - maintenance release with updated dependencies diff --git a/package-lock.json b/package-lock.json index 034cc42..8dfcae8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "action-gh-release", - "version": "3.0.1", + "version": "3.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "action-gh-release", - "version": "3.0.1", + "version": "3.0.2", "dependencies": { "@actions/core": "^3.0.1", "@actions/github": "^9.1.1", diff --git a/package.json b/package.json index 9993dbc..6ccc2d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "action-gh-release", - "version": "3.0.1", + "version": "3.0.2", "private": true, "description": "GitHub Action for creating GitHub Releases", "main": "lib/main.js",