Skip to content

Commit 1bf5b89

Browse files
authored
Changelog for 0.80.0 (#5688)
1 parent 2900b24 commit 1bf5b89

6 files changed

Lines changed: 65 additions & 0 deletions

File tree

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,70 @@
11
# Changelog
22

3+
## 0.80.0
4+
5+
### Changes
6+
7+
- Issue queries shown in the "Issues" view can be grouped by repository and milestone using the new `groupBy` property in the `githubIssues.queries` setting.
8+
```json
9+
"githubIssues.queries": [
10+
{
11+
"label": "Current",
12+
"query": "assignee:alexr00 is:open sort:updated-desc milestone:\"February 2024\" sort:updated-desc",
13+
"groupBy": [
14+
"milestone",
15+
"repository"
16+
]
17+
}
18+
],
19+
```
20+
21+
![Group by repository and milestone](/documentation/changelog/0.80.0/group-by-milestone-repo.png)
22+
- The setting `githubPullRequests.createDefaultBaseBranch` can be used to set the default base branch when creating a PR. By default, the branch that the current branch was created from is used (so long as that branch exists on the remote). Setting `repositoryDefault` will cause the repository's default branch to be used instead.
23+
- Added files are opened in a regular editor instead of a diff editor when viewing changes in a PR.
24+
- Merge commits are skipped when choosing a default PR title and description. This is to avoid the case where the merge commit message is used as the PR title and description.
25+
- GitHub permalinks in comments for a checked out PR can now be opened in VS Code instead of just taking you to the browser.
26+
27+
![Open permalink locally](/documentation/changelog/0.80.0/open-link-locally.gif)
28+
- The base branch can be merged into a checked out PR branch from the Pull Request Description.
29+
30+
![Merge base branch into PR branch](/documentation/changelog/0.80.0/merge-base-into-pr.png)
31+
-The setting `githubPullRequests.pullPullRequestBranchBeforeCheckout` also has new options to automatically fetch the base and merge it into the PR branch at checkout time.
32+
- Merge conflicts can be resolved from the Pull Request Description when the PR is checked out.
33+
34+
![Resolve merge conflicts](/documentation/changelog/0.80.0/resolve-merge-conflicts.png)
35+
- The hover on reactions now shows who left the reaction.
36+
37+
![Reaction hover](/documentation/changelog/0.80.0/reaction-hover.png)
38+
- Issue templates are now available when creating an issue.
39+
40+
### Fixes
41+
42+
- Comments for not-checked-out PRs should be removed from Comments view when no files from the PR are open. https://github.com/microsoft/vscode-pull-request-github/issues/5619
43+
- [Accessibility] No alert message is spoken to screen reader when completing a review. https://github.com/microsoft/vscode-pull-request-github/issues/5526
44+
- [Accessibility] Semantic heading tag is missing in issue and PR webview comments. https://github.com/microsoft/vscode-pull-request-github/issues/5524
45+
- Custom tree checkboxes have unexpected delayed reaction. https://github.com/microsoft/vscode-pull-request-github/issues/5676
46+
- Close Pull request Button is not working. https://github.com/microsoft/vscode-pull-request-github/issues/5598
47+
- Default Create Option: createDraft. https://github.com/microsoft/vscode-pull-request-github/issues/5584
48+
- collapses an open PR review tree on refresh. https://github.com/microsoft/vscode-pull-request-github/issues/5556
49+
- Queries apart from "All Open" don't work, output is full of rate limit errors. https://github.com/microsoft/vscode-pull-request-github/issues/5496
50+
- Opening multi-root workspace triggers rate-limiting error. https://github.com/microsoft/vscode-pull-request-github/issues/4351
51+
- Narrator is not announcing the state of Expanded/collapsed for "Create with Option" arrow button. https://github.com/microsoft/vscode-pull-request-github/issues/5483
52+
- Usabilty: At High contrast(Desert) mode for "Cancel,Create,Create with Option" button keyboard focus is not visible clearly.https://github.com/microsoft/vscode-pull-request-github/issues/5482
53+
- Create-PR view: sparkle icon doesn't visually indicate that it has focus. https://github.com/microsoft/vscode-pull-request-github/issues/5471
54+
- Unable to select default branch (main) on upstream repo, when working off a fork. https://github.com/microsoft/vscode-pull-request-github/issues/5470
55+
- Task list checkboxes aren't rendered. https://github.com/microsoft/vscode-pull-request-github/issues/5310
56+
- Copy Permalink fails frequently, seemingly on the first copy of the day. https://github.com/microsoft/vscode-pull-request-github/issues/5185
57+
- SCM title menu Create Pull Request action is unavailable when in a Remote window. https://github.com/microsoft/vscode-pull-request-github/issues/3911
58+
- Scroll position is not maintained. https://github.com/microsoft/vscode-pull-request-github/issues/1202
59+
60+
**_Thank You_**
61+
62+
* [@Balastrong (Leonardo Montini)](https://github.com/Balastrong): Create issue from markdown template [PR #5503](https://github.com/microsoft/vscode-pull-request-github/pull/5503)
63+
* [@joshuaobrien](https://github.com/joshuaobrien)
64+
* Batch mark/unmark files as viewed [PR #4700](https://github.com/microsoft/vscode-pull-request-github/pull/4700)
65+
* Remove a few unused variables 🌱 [PR #5510](https://github.com/microsoft/vscode-pull-request-github/pull/5510)
66+
* [@pouyakary (Pouya Kary ✨)](https://github.com/pouyakary): Fixes #5620 [PR #5621](https://github.com/microsoft/vscode-pull-request-github/pull/5621)
67+
368
## 0.78.1
469

570
### Fixes
84.2 KB
Loading
20.8 KB
Loading
2.51 MB
Loading
141 KB
Loading
17.9 KB
Loading

0 commit comments

Comments
Β (0)