From b1e83d80deaadfd9f1b90b1ab149278a032cb98c Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Wed, 2 Sep 2026 11:01:46 +0200 Subject: [PATCH 1/3] Test proxy agent system certificate worker Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0a585ac9ad0c34..211d48ae1f05a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -33,7 +33,7 @@ "@vscode/native-watchdog": "^1.4.6", "@vscode/os-proxy-resolver": "^0.4.0", "@vscode/policy-watcher": "^1.4.0", - "@vscode/proxy-agent": "^0.44.0", + "@vscode/proxy-agent": "github:microsoft/vscode-proxy-agent#354da71d99112721512964c9c96a7b30b102ad40", "@vscode/ripgrep-universal": "^1.18.0", "@vscode/sandbox-runtime": "0.0.1", "@vscode/spdlog": "^0.15.8", @@ -4964,9 +4964,9 @@ } }, "node_modules/@vscode/proxy-agent": { - "version": "0.44.0", - "resolved": "https://registry.npmjs.org/@vscode/proxy-agent/-/proxy-agent-0.44.0.tgz", - "integrity": "sha512-1vv0uJrIGxS89C+0gPmgNuOcw+Pjw0h7y0U3/l7pfwuiDq2Ua3evUVAkDj86v/Mn+UuFn20MWA04YyZ4huJcOA==", + "version": "0.45.0", + "resolved": "git+ssh://git@github.com/microsoft/vscode-proxy-agent.git#354da71d99112721512964c9c96a7b30b102ad40", + "integrity": "sha512-rSR81pniNECvd3Zr1sq0VqYL7H+02dT723sEexpoweWi9mMklwLoapHTkwK6nAtxhjXNagRkT7l2GWuripXD7Q==", "license": "MIT", "dependencies": { "@tootallnate/once": "^3.0.0", diff --git a/package.json b/package.json index 46547033cb9b6c..9c53971387da12 100644 --- a/package.json +++ b/package.json @@ -122,7 +122,7 @@ "@vscode/native-watchdog": "^1.4.6", "@vscode/os-proxy-resolver": "^0.4.0", "@vscode/policy-watcher": "^1.4.0", - "@vscode/proxy-agent": "^0.44.0", + "@vscode/proxy-agent": "github:microsoft/vscode-proxy-agent#354da71d99112721512964c9c96a7b30b102ad40", "@vscode/ripgrep-universal": "^1.18.0", "@vscode/sandbox-runtime": "0.0.1", "@vscode/spdlog": "^0.15.8", From 3e87a9354bda445a4f41ecc2ef67236638d609a4 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Wed, 2 Sep 2026 11:35:17 +0200 Subject: [PATCH 2/3] Pin proxy agent in remote dependencies Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- remote/package-lock.json | 8 ++++---- remote/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/remote/package-lock.json b/remote/package-lock.json index a61dff0c49c323..447c001fcc2898 100644 --- a/remote/package-lock.json +++ b/remote/package-lock.json @@ -19,7 +19,7 @@ "@vscode/fs-copyfile": "2.0.0", "@vscode/iconv-lite-umd": "0.7.1", "@vscode/native-watchdog": "^1.4.6", - "@vscode/proxy-agent": "^0.44.0", + "@vscode/proxy-agent": "github:microsoft/vscode-proxy-agent#354da71d99112721512964c9c96a7b30b102ad40", "@vscode/ripgrep-universal": "^1.18.0", "@vscode/sandbox-runtime": "0.0.1", "@vscode/spdlog": "^0.15.8", @@ -910,9 +910,9 @@ "license": "MIT" }, "node_modules/@vscode/proxy-agent": { - "version": "0.44.0", - "resolved": "https://registry.npmjs.org/@vscode/proxy-agent/-/proxy-agent-0.44.0.tgz", - "integrity": "sha512-1vv0uJrIGxS89C+0gPmgNuOcw+Pjw0h7y0U3/l7pfwuiDq2Ua3evUVAkDj86v/Mn+UuFn20MWA04YyZ4huJcOA==", + "version": "0.45.0", + "resolved": "git+ssh://git@github.com/microsoft/vscode-proxy-agent.git#354da71d99112721512964c9c96a7b30b102ad40", + "integrity": "sha512-rSR81pniNECvd3Zr1sq0VqYL7H+02dT723sEexpoweWi9mMklwLoapHTkwK6nAtxhjXNagRkT7l2GWuripXD7Q==", "license": "MIT", "dependencies": { "@tootallnate/once": "^3.0.0", diff --git a/remote/package.json b/remote/package.json index af7d55252059c3..b55897af78be65 100644 --- a/remote/package.json +++ b/remote/package.json @@ -14,7 +14,7 @@ "@vscode/fs-copyfile": "2.0.0", "@vscode/iconv-lite-umd": "0.7.1", "@vscode/native-watchdog": "^1.4.6", - "@vscode/proxy-agent": "^0.44.0", + "@vscode/proxy-agent": "github:microsoft/vscode-proxy-agent#354da71d99112721512964c9c96a7b30b102ad40", "@vscode/ripgrep-universal": "^1.18.0", "@vscode/sandbox-runtime": "0.0.1", "@vscode/spdlog": "^0.15.8", From 821b996447385e1a8f3ae95253a7c936651dcc67 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Wed, 2 Sep 2026 18:43:31 +0200 Subject: [PATCH 3/3] Update proxy agent to 0.45.0 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- package-lock.json | 4 ++-- package.json | 2 +- remote/package-lock.json | 4 ++-- remote/package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 211d48ae1f05a7..4395b66400a202 100644 --- a/package-lock.json +++ b/package-lock.json @@ -33,7 +33,7 @@ "@vscode/native-watchdog": "^1.4.6", "@vscode/os-proxy-resolver": "^0.4.0", "@vscode/policy-watcher": "^1.4.0", - "@vscode/proxy-agent": "github:microsoft/vscode-proxy-agent#354da71d99112721512964c9c96a7b30b102ad40", + "@vscode/proxy-agent": "^0.45.0", "@vscode/ripgrep-universal": "^1.18.0", "@vscode/sandbox-runtime": "0.0.1", "@vscode/spdlog": "^0.15.8", @@ -4965,7 +4965,7 @@ }, "node_modules/@vscode/proxy-agent": { "version": "0.45.0", - "resolved": "git+ssh://git@github.com/microsoft/vscode-proxy-agent.git#354da71d99112721512964c9c96a7b30b102ad40", + "resolved": "https://registry.npmjs.org/@vscode/proxy-agent/-/proxy-agent-0.45.0.tgz", "integrity": "sha512-rSR81pniNECvd3Zr1sq0VqYL7H+02dT723sEexpoweWi9mMklwLoapHTkwK6nAtxhjXNagRkT7l2GWuripXD7Q==", "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 9c53971387da12..1e252c37af7db5 100644 --- a/package.json +++ b/package.json @@ -122,7 +122,7 @@ "@vscode/native-watchdog": "^1.4.6", "@vscode/os-proxy-resolver": "^0.4.0", "@vscode/policy-watcher": "^1.4.0", - "@vscode/proxy-agent": "github:microsoft/vscode-proxy-agent#354da71d99112721512964c9c96a7b30b102ad40", + "@vscode/proxy-agent": "^0.45.0", "@vscode/ripgrep-universal": "^1.18.0", "@vscode/sandbox-runtime": "0.0.1", "@vscode/spdlog": "^0.15.8", diff --git a/remote/package-lock.json b/remote/package-lock.json index 447c001fcc2898..74bee0b2958b44 100644 --- a/remote/package-lock.json +++ b/remote/package-lock.json @@ -19,7 +19,7 @@ "@vscode/fs-copyfile": "2.0.0", "@vscode/iconv-lite-umd": "0.7.1", "@vscode/native-watchdog": "^1.4.6", - "@vscode/proxy-agent": "github:microsoft/vscode-proxy-agent#354da71d99112721512964c9c96a7b30b102ad40", + "@vscode/proxy-agent": "^0.45.0", "@vscode/ripgrep-universal": "^1.18.0", "@vscode/sandbox-runtime": "0.0.1", "@vscode/spdlog": "^0.15.8", @@ -911,7 +911,7 @@ }, "node_modules/@vscode/proxy-agent": { "version": "0.45.0", - "resolved": "git+ssh://git@github.com/microsoft/vscode-proxy-agent.git#354da71d99112721512964c9c96a7b30b102ad40", + "resolved": "https://registry.npmjs.org/@vscode/proxy-agent/-/proxy-agent-0.45.0.tgz", "integrity": "sha512-rSR81pniNECvd3Zr1sq0VqYL7H+02dT723sEexpoweWi9mMklwLoapHTkwK6nAtxhjXNagRkT7l2GWuripXD7Q==", "license": "MIT", "dependencies": { diff --git a/remote/package.json b/remote/package.json index b55897af78be65..0ff984f53c144a 100644 --- a/remote/package.json +++ b/remote/package.json @@ -14,7 +14,7 @@ "@vscode/fs-copyfile": "2.0.0", "@vscode/iconv-lite-umd": "0.7.1", "@vscode/native-watchdog": "^1.4.6", - "@vscode/proxy-agent": "github:microsoft/vscode-proxy-agent#354da71d99112721512964c9c96a7b30b102ad40", + "@vscode/proxy-agent": "^0.45.0", "@vscode/ripgrep-universal": "^1.18.0", "@vscode/sandbox-runtime": "0.0.1", "@vscode/spdlog": "^0.15.8",