|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## 0.126.0 |
| 4 | + |
| 5 | +### Changes |
| 6 | + |
| 7 | +- A multi-diff editor can be opened for a pull request by URI. For example, `vscode-insiders://github.vscode-pull-request-github/open-pull-request-changes?uri=https://github.com/microsoft/vscode-css-languageservice/pull/460`. |
| 8 | +- There's an option to "Checkout on Codespace" from the pull request description webview. |
| 9 | +- ctrl/cmd + R when the pull request description webview is focused will refresh the webview. |
| 10 | +- You can "Reveal in Explorer" from files in the "Changes in Pull Request" view and the "Pull Requests" views. |
| 11 | +- Commit SHAs in PR file comments will be linkified. |
| 12 | +- Set `"githubPullRequests.pullRequestDescription": "branchName"` to have the pull request title pre-filled with the branch name when creating a new pull request. |
| 13 | +- The command "GitHub Issues: Open Issue on GitHub" can be used when your cursor is in an issue reference (e.g., `#1234`) in a text file to open the issue on GitHub. |
| 14 | +- Set `"githubPullRequests.commentExpandState": "collapsePreexisting"` to have pre-existing comments collapsed by default when opening a pull request description webview, while new comments remain expanded. |
| 15 | +- Choose which PR template to use when creating a new pull request (requires that `"githubPullRequests.pullRequestDescription": "template"` is set). |
| 16 | + |
| 17 | + |
| 18 | + |
| 19 | +- Metadata from issue templates (e.g., `assignees`, `labels`) is now applied when creating a new issue from a template. |
| 20 | +- Issues created from `TODO` comments are assigned to the current user by default. |
| 21 | +- `"githubPullRequests.createOnPublishBranch"` can be set to `"always"` to always create a pull request when publishing a branch. |
| 22 | +- Open pull requests can be converted to drafts from the pull request description webview. |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | +- We attempt to unwrap shortened commit lines in the pull request description webview to improve readability. |
| 27 | +- Copilot can generate descriptions for existing pull requests. "Edit" the description then use the sparkle icon to have Copilot generate a description. |
| 28 | + |
| 29 | + |
| 30 | + |
| 31 | +- Instead of checking out the default branch when you're done with a PR, you can configure that the PR base branch is checked out with `"githubPullRequests.postDone": "checkoutPullRequestBaseBranch"`. |
| 32 | +- You can change the base branch of a PR from the pull request description webview. |
| 33 | + |
| 34 | + |
| 35 | + |
| 36 | +- PR branches can be configured to be automatically deleted when the PR is merged from this extension with the setting `"githubPullRequests.deleteBranchAfterMerge": true`. |
| 37 | +- When opening a folder for the first time, existing PR branches will be discovered and added to the "Local Pull Request Branches" view. |
| 38 | + |
| 39 | +### Fixes |
| 40 | + |
| 41 | +- Switch branch quick pick is not showing all branches. https://github.com/microsoft/vscode-pull-request-github/issues/8351 |
| 42 | +- Auto-merge options aren't properly updated when base repo changes. https://github.com/microsoft/vscode-pull-request-github/issues/8195 |
| 43 | +- Required check item renders strangely. https://github.com/microsoft/vscode-pull-request-github/issues/8176 |
| 44 | +- Request review from Copilot. https://github.com/microsoft/vscode-pull-request-github/issues/6830 |
| 45 | +- Make clear in which repo a pull request is stored. https://github.com/microsoft/vscode-pull-request-github/issues/6674 |
| 46 | +- Show Changes Since Last Review should not consider pending reviews as "Last Review". https://github.com/microsoft/vscode-pull-request-github/issues/6226 |
| 47 | +- Extension mistakenly thinks I'm using GH Enterprise with global "url aliasing". https://github.com/microsoft/vscode-pull-request-github/issues/4551 |
| 48 | + |
3 | 49 | ## 0.124.1 |
4 | 50 |
|
5 | 51 | ### Fixes |
|
0 commit comments