From 6fc2f678c8189275cf8278c15d5a50fb1d270ffb Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Fri, 12 Dec 2025 13:42:58 +0000 Subject: [PATCH 1/2] docs(cache): bump to v5.0.1 and add release notes --- packages/cache/RELEASES.md | 5 +++++ packages/cache/package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/cache/RELEASES.md b/packages/cache/RELEASES.md index 294c947598..56abc1c8a5 100644 --- a/packages/cache/RELEASES.md +++ b/packages/cache/RELEASES.md @@ -1,5 +1,10 @@ # @actions/cache Releases +### 5.0.1 + +- Fix Node.js 24 punycode deprecation warning by updating `@azure/storage-blob` from `^12.13.0` to `^12.29.1` +- Newer storage-blob uses `@azure/core-rest-pipeline` instead of deprecated `@azure/core-http`, which eliminates the transitive dependency on `node-fetch@2` → `whatwg-url@5` → `tr46@0.0.3` that used the deprecated punycode module + ### 5.0.0 - Remove `@azure/ms-rest-js` dependency [#2197](https://github.com/actions/toolkit/pull/2197) diff --git a/packages/cache/package.json b/packages/cache/package.json index d82d249e98..01805d6e2d 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@actions/cache", - "version": "5.0.0", + "version": "5.0.1", "preview": true, "description": "Actions cache lib", "keywords": [ From c655f38a0fbfe4655f5ff1488471c82c099b29b3 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Fri, 12 Dec 2025 14:53:26 +0000 Subject: [PATCH 2/2] docs(cache): add PR reference to v5.0.1 release notes --- packages/cache/RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cache/RELEASES.md b/packages/cache/RELEASES.md index 56abc1c8a5..08d484e0fc 100644 --- a/packages/cache/RELEASES.md +++ b/packages/cache/RELEASES.md @@ -2,7 +2,7 @@ ### 5.0.1 -- Fix Node.js 24 punycode deprecation warning by updating `@azure/storage-blob` from `^12.13.0` to `^12.29.1` +- Fix Node.js 24 punycode deprecation warning by updating `@azure/storage-blob` from `^12.13.0` to `^12.29.1` [#2213](https://github.com/actions/toolkit/pull/2213) - Newer storage-blob uses `@azure/core-rest-pipeline` instead of deprecated `@azure/core-http`, which eliminates the transitive dependency on `node-fetch@2` → `whatwg-url@5` → `tr46@0.0.3` that used the deprecated punycode module ### 5.0.0