Skip to content

Releases: microsoft/vscode-pull-request-github

0.46.1

25 Jul 10:34
c995ef3
Compare
Choose a tag to compare

0.46.1

Fixes

  • Unable to Sign in - TypeError: t.contains is not a function. #3692

0.46.0

06 Jul 13:01
0259b30
Compare
Choose a tag to compare

0.46.0

Changes

  • Use the setting "githubPullRequests.ignoredPullRequestBranches" to ignore branches for pull requests.

  • The setting "githubPullRequests.overrideDefaultBranch" lets you override the default branch from github.com locally.

  • The "Publish branch?" dialog can be skipped when creating a PR using the setting "githubPullRequests.pushBranch".

  • The auto-merge checkbox is availabe in the "Overview" editor.

    Auto-merge in the overview

Fixes

  • "Exit Review Mode" changed to "Checkout default Branch". #3637
  • Comments showed when opening a PR despite having "comments.openView": "never" set. #3652
  • Can't comment on a new file (via github.dev web editor). #3646
  • Cannot view more than 100 and few files in PR. #3623
  • The Copy GitHub Permalink command copies wrong commit hash. #3566

Thank You

0.44.0

09 Jun 13:02
166dda2
Compare
Choose a tag to compare

0.44.0

Changes

  • Auto-merge support from the "Create" view.

    Auto-merge from the create view

Fixes

  • Creating a pull request doesn't use commit message for PR description when the base branch has more commits. #3350
  • Fails to activate with "Timed out waiting for authentication provider to register". #3469
  • Prompted about updates to PR after pushing to the PR branch. #3479
  • Pull requests created from a fork on a topic branch aren't discovered. #3511
  • Unable to create PR in web. #3528

Thank You

0.42.0

05 May 11:52
c1a3920
Compare
Choose a tag to compare

0.42.0

Changes

  • New actions to go to github.com/owner/repo/issues and github.com/owner/repo/pulls

    Open on GitHub

  • Support for multiline comments

    Multiline comments

  • Commit changes can now show in a tree or list depending on the value of githubPullRequests.fileListLayout

  • "Create Permalink" works on github.dev and vscode.dev from a tag or commit number.

  • "Mark as Viewed" and "Mark as Unviewed" are available in the editor toolbar

    Mark file as viewed from the editor toolbar

  • Better defaults for githubIssues.ignoreCompletionTrigger.

Fixes

  • Invisible Button/Input Text in High Contrast Themes. #3342
  • Create PR icon dissapears from Source Control view. #3410
  • Don't make potentially expensive getObjectDetails and detectObjectType calls for known file extensions. #3446
  • Web: Broken state for deleting branch in repo that deletes on merge. #3453
  • Can't leave a comment in PR webviewview without a pending review. #3480
  • Text suggestions load forever on first column. #3485

Thank You

0.40.0

31 Mar 08:39
413742b
Compare
Choose a tag to compare

0.40.0

Changes

  • @user completions works in CODEOWNERS files
  • There is a new setting for "Don't show again" on the notification shown when a branch is published: githubPullRequests.createOnPublishBranch.

Fixes

  • Sorting order of issues in SCM commit box is off. #3365
  • Comments panel - comment appears twice. #3349

0.38.1

10 Mar 15:57
6e43916
Compare
Choose a tag to compare

0.38.1

Fixes

  • The extension got extremely large with v0.38.0. #3392

0.38.0

07 Mar 13:59
565ea1c
Compare
Choose a tag to compare

0.38.0

Changes

  • 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.

    Mark file as viewed UX

Fixes

  • "We couldn't find an open repository for...". #3242
  • Placeholder title when creating a PR does not behave like GitHub website. #2988
  • Github.dev: Weird Default Description When Creating PR. #3316
  • New pull requests on branches off master try to merge into a wrong branch. #3303

0.36.2

17 Feb 12:53
865034e
Compare
Choose a tag to compare

0.36.2

Fixes

  • "The current repository does not have a push remote for..." when trying to create a PR from github.dev. #3309

0.36.1

10 Feb 15:37
ae3028a
Compare
Choose a tag to compare

0.36.1

Fixes

  • After making a change to a PR that was made on a fork the "Files" tree is empty. #3294
  • Commenting ranges often don't show when using github.dev or vscode.dev. #3306

0.36.0

03 Feb 16:32
362d450
Compare
Choose a tag to compare

0.36.0

Changes

  • Pull request loading performance in vscode.dev and github.dev (and to a lesser extension, desktop VS Code) is significantly improved. As part of this:
    • The "changes in pull request" tree shows faster.
    • Individual file diffs are not loaded until the diff is opened.
    • Comments load in with a delay.
  • There is a new setting that can disable review mode for merged and/or closed pull requests.
"githubPullRequests.useReviewMode" {
	"closed": false,
	"merged": true
}
  • Added a "Don't show again" button to the "Do you want to create a pull request" notification to better surface the associated setting.
    Notification with don't show again button
  • There's a new command "Open All Diffs".
  • Comments now show a timestamp using the new VS Code comment timestamp API.

Fixes

  • Markdown content escaped when editing comments. #3254
  • Many spurious user mentions inserted in text. #3257
  • Issues loading forever in folder with git not initialized. #3160
  • Not able to mention people in my code. #3251
  • Losing focus/switching tabs while a comment entered (but not submitted) loses comment. #3200
  • Comments appear being pending instead of submitted. #3232

Thank You