From c6d7a1dcb801a5ad4a4a120fd2308aae9b2abc68 Mon Sep 17 00:00:00 2001 From: Alex Ross <38270282+alexr00@users.noreply.github.com> Date: Mon, 2 Feb 2026 17:56:21 +0100 Subject: [PATCH 1/3] 0.128.0 changelog (#8462) --- CHANGELOG.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e64b94a70..8f33008770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## 0.128.0 + +### Changes + +- "Apply Suggestion with Copilot" is now available from the "Comments" view, in addition to the comment widget in the editor. When run from this context, it will open the Chat view. +- When a PR branch is automatically deleted after merge, a notification is shown to inform you that the branch was deleted and you were switched to another branch. +- The issue URL in the issue webview is now copyable via the right-click context menu. +- The "Pull Request" status bar item reflects the currently selected repo when using `"scm.repositories.selectionMode": "single"`. + +### Fixes + +- timelineItem nodes can be null. https://github.com/microsoft/vscode-pull-request-github/issues/8447 +- Branch auto delete does not work with merge queues. https://github.com/microsoft/vscode-pull-request-github/issues/8435 +- Error: we couldn't find commit. https://github.com/microsoft/vscode-pull-request-github/issues/8401 +- Multi-diff button for current pull request is gone. https://github.com/microsoft/vscode-pull-request-github/issues/8387 +- Do not create notifications for copilot PRs which are in progress. https://github.com/microsoft/vscode-pull-request-github/issues/8380 +- Error viewing PR descriptions in ghe. https://github.com/microsoft/vscode-pull-request-github/issues/8378 +- Marking a file as viewed on an older commit marks the file as viewed for all versions of the file. https://github.com/microsoft/vscode-pull-request-github/issues/8313 +- Use the GH GraphQL API UpdatePullRequestBranch for pulling in updates when there are no conflicts. https://github.com/microsoft/vscode-pull-request-github/issues/8231 +- "Copilot started work" should not be the same message for CCA and CCR. https://github.com/microsoft/vscode-pull-request-github/issues/8211 +- "Edit Description" button does nothing when using the Create Issue From Selection command. https://github.com/microsoft/vscode-pull-request-github/issues/8184 +- Avatar does not show in PR details page. https://github.com/microsoft/vscode-pull-request-github/issues/8152 + ## 0.126.0 ### Changes From 5c36ac3bd046688dfdd4c06169eb971d0da3ad70 Mon Sep 17 00:00:00 2001 From: Alex Ross <38270282+alexr00@users.noreply.github.com> Date: Tue, 3 Feb 2026 14:03:31 +0100 Subject: [PATCH 2/3] Fix activity bar PR webview refresh (#8470) * Fix activity bar PR webview refresh Fixes #8469 * Also finally * Copilot PR feedback --- src/github/activityBarViewProvider.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/github/activityBarViewProvider.ts b/src/github/activityBarViewProvider.ts index be1ddf19e8..65deb964fa 100644 --- a/src/github/activityBarViewProvider.ts +++ b/src/github/activityBarViewProvider.ts @@ -203,7 +203,12 @@ export class PullRequestViewProvider extends WebviewViewBase implements vscode.W this._folderRepositoryManager.mergeQueueMethodForBranch(pullRequestModel.base.ref, pullRequestModel.remote.owner, pullRequestModel.remote.repositoryName), ensureEmojis(this._folderRepositoryManager.context), ]); - this._updatingPromise = updatingPromise; + const clearingPromise = updatingPromise.finally(() => { + if (this._updatingPromise === clearingPromise) { + this._updatingPromise = undefined; + } + }); + this._updatingPromise = clearingPromise; const [pullRequest, repositoryAccess, timelineEvents, requestedReviewers, branchInfo, defaultBranch, currentUser, viewerCanEdit, hasReviewDraft, coAuthors, mergeQueueMethod] = await updatingPromise; if (!pullRequest) { From 299e8a305212e6fb65a8e8954e9ecf11d554fe8d Mon Sep 17 00:00:00 2001 From: Alex Ross <38270282+alexr00@users.noreply.github.com> Date: Wed, 4 Feb 2026 17:48:17 +0100 Subject: [PATCH 3/3] 0.128.0 (#8479) * 0.128.0 * Also bumpt engine version --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index dd92aa8db5..e85f77bb09 100644 --- a/package.json +++ b/package.json @@ -41,10 +41,10 @@ "treeItemMarkdownLabel", "treeViewMarkdownMessage" ], - "version": "0.126.0", + "version": "0.128.0", "publisher": "GitHub", "engines": { - "vscode": "^1.107.0" + "vscode": "^1.109.0" }, "categories": [ "Other",