From 55b06b771f7026cda2aa09ab84b0fe340783f4cc Mon Sep 17 00:00:00 2001 From: Alex Ross <38270282+alexr00@users.noreply.github.com> Date: Tue, 28 Jul 2026 16:37:17 +0200 Subject: [PATCH 1/2] 0.162.0 --- CHANGELOG.md | 10 ++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75ca5b2f3d..2ce3c05400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.162.0 + +### Changes + +- Confirm before discarding pull request creation with unsaved changes. This can be disabled with the `"githubPullRequests.showPullRequestCancelConfirmation"` setting. + +**_Thank You_** + +* [@Eiji-Kudo (Eiji)](https://github.com/Eiji-Kudo): Fix the Files node parent in the pull request changes tree. [PR #8846](https://github.com/microsoft/vscode-pull-request-github/pull/8846) + ## 0.160.0 ### Changes diff --git a/package-lock.json b/package-lock.json index 96a579895c..76f102c461 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-pull-request-github", - "version": "0.160.0", + "version": "0.162.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-pull-request-github", - "version": "0.160.0", + "version": "0.162.0", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 6fe434ff85..a46b7d0ea1 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "treeItemMarkdownLabel", "treeViewMarkdownMessage" ], - "version": "0.160.0", + "version": "0.162.0", "publisher": "GitHub", "engines": { "node": ">=20", From 466eee49b64696649cb271482c3a3b9887e2ac70 Mon Sep 17 00:00:00 2001 From: Alex Ross <38270282+alexr00@users.noreply.github.com> Date: Tue, 28 Jul 2026 16:42:39 +0200 Subject: [PATCH 2/2] Fix setting --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ce3c05400..4d87b1791c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ### Changes -- Confirm before discarding pull request creation with unsaved changes. This can be disabled with the `"githubPullRequests.showPullRequestCancelConfirmation"` setting. +- Confirm before discarding pull request creation with unsaved changes. This can be disabled with the `"githubPullRequests.showCreatePullRequestCancelConfirmation"` setting. **_Thank You_**