Skip to content

Commit f170165

Browse files
authored
0.136.0 (#8666)
1 parent f62ad7f commit f170165

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

CHANGELOG.md

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

3+
## 0.136.0
4+
5+
### Changes
6+
7+
- Add tool to create pull requests.
8+
- Add tool to resolve review comments.
9+
- Offer to delete worktrees from the clean up command.
10+
- Include line numbers in "Apply suggestion using AI" context for code review comments.
11+
12+
### Fixes
13+
14+
- Resolving comments doesn't update state on server. https://github.com/microsoft/vscode-pull-request-github/issues/8649
15+
- PR description filled differently than on github.com. https://github.com/microsoft/vscode-pull-request-github/issues/8630
16+
- Can't checkout PR locally when already on the same branch. https://github.com/microsoft/vscode-pull-request-github/issues/8624
17+
- Parent folder checkbox not auto-checked when all children are marked as viewed. https://github.com/microsoft/vscode-pull-request-github/issues/8584
18+
- Escape file names in processed links.
19+
320
## 0.134.0
421

522
### Changes

package-lock.json

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
"bugs": {
1111
"url": "https://github.com/Microsoft/vscode-pull-request-github/issues"
1212
},
13-
"engines": {
14-
"node": ">=20"
15-
},
1613
"enabledApiProposals": [
1714
"activeComment",
1815
"chatContextProvider",
@@ -44,9 +41,10 @@
4441
"treeItemMarkdownLabel",
4542
"treeViewMarkdownMessage"
4643
],
47-
"version": "0.134.0",
44+
"version": "0.136.0",
4845
"publisher": "GitHub",
4946
"engines": {
47+
"node": ">=20",
5048
"vscode": "^1.110.0"
5149
},
5250
"categories": [

src/@types/vscode.proposed.chatSessionsProvider.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -594,8 +594,15 @@ declare module 'vscode' {
594594
/**
595595
* The initial option selections for the session, provided with the first request.
596596
* Contains the options the user selected (or defaults) before the session was created.
597+
*
598+
* @deprecated Use `inputState` instead
597599
*/
598600
readonly initialSessionOptions?: ReadonlyArray<{ optionId: string; value: string | ChatSessionProviderOptionItem }>;
601+
602+
/**
603+
* The current input state of the chat session.
604+
*/
605+
readonly inputState: ChatSessionInputState;
599606
}
600607

601608
export interface ChatSessionCapabilities {
@@ -692,6 +699,8 @@ declare module 'vscode' {
692699
*
693700
* These commands will be displayed at the bottom of the group.
694701
*
702+
* For extensions using the legacy `commands` API, these commands are passed the sessionResource as the first argument.
703+
*
695704
* For extensions that use the new `provideChatSessionInputState` API, these commands are passed a context object
696705
* `{ inputState: ChatSessionInputState; sessionResource: Uri | undefined }` that they can use to determine which session and options they are being invoked for.
697706
*/

0 commit comments

Comments
 (0)