From 959cb66bd53f3ea6af4b143f16cead032949fefe Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 18:02:29 +0000 Subject: [PATCH 1/5] Initial plan From 4b9031fa779699b41ebf3ecb69230d2f12ec54a6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 18:13:07 +0000 Subject: [PATCH 2/5] Bump http-client version to 3.1.0 and update RELEASES.md Co-authored-by: TingluoHuang <1750815+TingluoHuang@users.noreply.github.com> --- .gitignore | 1 + packages/http-client/RELEASES.md | 4 ++++ packages/http-client/package-lock.json | 4 ++-- packages/http-client/package.json | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f543c3aefe..064d2c21b2 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ packages/*/__tests__/_temp/ .DS_Store *.xar packages/*/audit.json +.nx/ diff --git a/packages/http-client/RELEASES.md b/packages/http-client/RELEASES.md index 2e0644277c..dddc036af3 100644 --- a/packages/http-client/RELEASES.md +++ b/packages/http-client/RELEASES.md @@ -1,5 +1,9 @@ ## Releases +## 3.1.0 +- Add support for ACTIONS_ORCHESTRATION_ID in user-agent [#2229](https://github.com/actions/toolkit/pull/2229) +- Add default user-agent when none is provided [#2229](https://github.com/actions/toolkit/pull/2229) + ## 3.0.0 - Add support for Node 24 [#2110](https://github.com/actions/toolkit/pull/2110) diff --git a/packages/http-client/package-lock.json b/packages/http-client/package-lock.json index 4355a12289..4de48c7826 100644 --- a/packages/http-client/package-lock.json +++ b/packages/http-client/package-lock.json @@ -1,12 +1,12 @@ { "name": "@actions/http-client", - "version": "3.0.0", + "version": "3.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@actions/http-client", - "version": "3.0.0", + "version": "3.1.0", "license": "MIT", "dependencies": { "tunnel": "^0.0.6", diff --git a/packages/http-client/package.json b/packages/http-client/package.json index cb1c171a46..8b564a59a8 100644 --- a/packages/http-client/package.json +++ b/packages/http-client/package.json @@ -1,6 +1,6 @@ { "name": "@actions/http-client", - "version": "3.0.0", + "version": "3.1.0", "description": "Actions Http Client", "keywords": [ "github", From 398e2cb68b134ddbfbe3cbb1199a523da478bc58 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 18:31:01 +0000 Subject: [PATCH 3/5] Change version from 3.1.0 to 3.0.1 as requested Co-authored-by: TingluoHuang <1750815+TingluoHuang@users.noreply.github.com> --- packages/http-client/RELEASES.md | 2 +- packages/http-client/package-lock.json | 4 ++-- packages/http-client/package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/http-client/RELEASES.md b/packages/http-client/RELEASES.md index dddc036af3..a42257d190 100644 --- a/packages/http-client/RELEASES.md +++ b/packages/http-client/RELEASES.md @@ -1,6 +1,6 @@ ## Releases -## 3.1.0 +## 3.0.1 - Add support for ACTIONS_ORCHESTRATION_ID in user-agent [#2229](https://github.com/actions/toolkit/pull/2229) - Add default user-agent when none is provided [#2229](https://github.com/actions/toolkit/pull/2229) diff --git a/packages/http-client/package-lock.json b/packages/http-client/package-lock.json index 4de48c7826..b3ee4a2b98 100644 --- a/packages/http-client/package-lock.json +++ b/packages/http-client/package-lock.json @@ -1,12 +1,12 @@ { "name": "@actions/http-client", - "version": "3.1.0", + "version": "3.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@actions/http-client", - "version": "3.1.0", + "version": "3.0.1", "license": "MIT", "dependencies": { "tunnel": "^0.0.6", diff --git a/packages/http-client/package.json b/packages/http-client/package.json index 8b564a59a8..a218fb8836 100644 --- a/packages/http-client/package.json +++ b/packages/http-client/package.json @@ -1,6 +1,6 @@ { "name": "@actions/http-client", - "version": "3.1.0", + "version": "3.0.1", "description": "Actions Http Client", "keywords": [ "github", From 16f0b3d28ee507ecb1f193f88d948e99fe01cd9a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 18:40:39 +0000 Subject: [PATCH 4/5] Revert .gitignore change as requested Co-authored-by: TingluoHuang <1750815+TingluoHuang@users.noreply.github.com> --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 064d2c21b2..f543c3aefe 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,3 @@ packages/*/__tests__/_temp/ .DS_Store *.xar packages/*/audit.json -.nx/ From d73fffceedebbd6da08082ef0328c6eadfd336f4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 18:44:34 +0000 Subject: [PATCH 5/5] Combine duplicate RELEASES.md entries into single line Co-authored-by: TingluoHuang <1750815+TingluoHuang@users.noreply.github.com> --- packages/http-client/RELEASES.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/http-client/RELEASES.md b/packages/http-client/RELEASES.md index a42257d190..79ffdd9545 100644 --- a/packages/http-client/RELEASES.md +++ b/packages/http-client/RELEASES.md @@ -1,8 +1,7 @@ ## Releases ## 3.0.1 -- Add support for ACTIONS_ORCHESTRATION_ID in user-agent [#2229](https://github.com/actions/toolkit/pull/2229) -- Add default user-agent when none is provided [#2229](https://github.com/actions/toolkit/pull/2229) +- Add support for ACTIONS_ORCHESTRATION_ID in user-agent and default user-agent [#2229](https://github.com/actions/toolkit/pull/2229) ## 3.0.0 - Add support for Node 24 [#2110](https://github.com/actions/toolkit/pull/2110)