Skip to content

Commit 2e2e0a3

Browse files
authored
Merge branch 'microsoft:main' into main
2 parents a2cc75f + 4eed9e5 commit 2e2e0a3

File tree

70 files changed

+1829
-915
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1829
-915
lines changed

.vscode/tasks.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,29 @@
2424
},
2525
"isBackground": true,
2626
"problemMatcher": ["$ts-checker-webpack-watch", "$ts-checker-eslint-webpack-watch"]
27+
},
28+
{
29+
"label": "Serve local web extension",
30+
"dependsOn": ["serve web", "tunnel web"],
31+
"isBackground": true,
32+
"problemMatcher": [],
33+
"presentation": { "group": "vscode-web" }
34+
},
35+
{
36+
"label": "serve web",
37+
"type": "shell",
38+
"command": "npx serve --cors -l 5000",
39+
"isBackground": true,
40+
"presentation": { "group": "vscode-web" },
41+
"problemMatcher": []
42+
},
43+
{
44+
"label": "tunnel web",
45+
"type": "shell",
46+
"command": "npx localtunnel -p 5000",
47+
"isBackground": true,
48+
"presentation": { "group": "vscode-web" },
49+
"problemMatcher": []
2750
}
2851
]
2952
}

CHANGELOG.md

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

3+
## 0.42.0
4+
5+
### Changes
6+
7+
- New actions to go to github.com/owner/repo/issues and github.com/owner/repo/pulls
8+
9+
![Open on GitHub](documentation/changelog/0.42.0/open-on-github.png)
10+
- Support for multiline comments
11+
12+
![Multiline comments](documentation/changelog/0.42.0/multiline-comments.gif)
13+
- Commit changes can now show in a tree or list depending on the value of `githubPullRequests.fileListLayout`
14+
- "Create Permalink" works on github.dev and vscode.dev from a tag or commit number.
15+
- "Mark as Viewed" and "Mark as Unviewed" are available in the editor toolbar
16+
17+
![Mark file as viewed from the editor toolbar](documentation/changelog/0.42.0/mark-as-viewed-toolbar.png)
18+
- Better defaults for `githubIssues.ignoreCompletionTrigger`.
19+
20+
### Fixes
21+
22+
- Invisible Button/Input Text in High Contrast Themes. https://github.com/microsoft/vscode-pull-request-github/issues/3342
23+
- Create PR icon dissapears from Source Control view. https://github.com/microsoft/vscode-pull-request-github/issues/3410
24+
- Don't make potentially expensive getObjectDetails and detectObjectType calls for known file extensions. https://github.com/microsoft/vscode-pull-request-github/issues/3446
25+
- Web: Broken state for deleting branch in repo that deletes on merge. https://github.com/microsoft/vscode-pull-request-github/issues/3453
26+
- Can't leave a comment in PR webviewview without a pending review. https://github.com/microsoft/vscode-pull-request-github/issues/3480
27+
- Text suggestions load forever on first column. https://github.com/microsoft/vscode-pull-request-github/issues/3485
28+
29+
**_Thank You_**
30+
31+
* [@hoontae24](https://github.com/hoontae24): Support the copied permalink for Github Enterprise URL [PR #3460](https://github.com/microsoft/vscode-pull-request-github/pull/3460)
32+
33+
## 0.40.0
34+
35+
### Changes
36+
37+
- @user completions works in CODEOWNERS files
38+
- There is a new setting for "Don't show again" on the notification shown when a branch is published: `githubPullRequests.createOnPublishBranch`.
39+
40+
### Fixes
41+
42+
- Sorting order of issues in SCM commit box is off. https://github.com/microsoft/vscode-pull-request-github/issues/3365
43+
- Comments panel - comment appears twice. https://github.com/microsoft/vscode-pull-request-github/issues/3349
44+
45+
## 0.38.0
46+
47+
### Changes
48+
49+
- The **Mark File as Viewed** and **Mark File as Unviewed** actions have new icons, and we've generally tried to improve the UX around marking as viewed/unviewed.
50+
51+
![Mark file as viewed UX](documentation/changelog/0.38.0/mark-file-viewed.gif)
52+
53+
### Fixes
54+
55+
- "We couldn't find an open repository for...". https://github.com/microsoft/vscode-pull-request-github/issues/3242
56+
- Placeholder title when creating a PR does not behave like GitHub website. https://github.com/microsoft/vscode-pull-request-github/issues/2988
57+
- Github.dev: Weird Default Description When Creating PR. https://github.com/microsoft/vscode-pull-request-github/issues/3316
58+
- New pull requests on branches off master try to merge into a wrong branch. https://github.com/microsoft/vscode-pull-request-github/issues/3303
59+
60+
## 0.36.2
61+
62+
### Fixes
63+
64+
- "The current repository does not have a push remote for..." when trying to create a PR from github.dev. https://github.com/microsoft/vscode-pull-request-github/issues/3309
65+
66+
## 0.36.1
67+
68+
### Fixes
69+
70+
- After making a change to a PR that was made on a fork the "Files" tree is empty. https://github.com/microsoft/vscode-pull-request-github/issues/3294
71+
- Commenting ranges often don't show when using github.dev or vscode.dev. https://github.com/microsoft/vscode-pull-request-github/issues/3306
72+
373
## 0.36.0
474

575
### Changes

0 commit comments

Comments
 (0)