Skip to content

Commit 11c6f88

Browse files
authored
0.144.0 (#8743)
1 parent 14b6c05 commit 11c6f88

5 files changed

Lines changed: 36 additions & 3 deletions

File tree

CHANGELOG.md

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

3+
## 0.144.0
4+
5+
### Changes
6+
7+
- Support uploading images to pull requests with a button and with paste.
8+
9+
![Use paste to upload an image](./documentation/changelog/0.144.0/upload-an-image.gif)
10+
11+
- Use a more descriptive folder name when checking out pull requests in a worktree.
12+
- `"githubIssues.issueBranchTitle"` now supports the `${issueType}` template variable.
13+
14+
### Fixes
15+
16+
- VS Code hangs with "the upstream ref origin/master for branch master is not a github repo". https://github.com/microsoft/vscode-pull-request-github/issues/8729
17+
- `getAssignableUsers` and `getMentionableUsers` bypass `globalState` cache when fetch promise already exists. https://github.com/microsoft/vscode-pull-request-github/issues/8669
18+
- Bad Credentials error. https://github.com/microsoft/vscode-pull-request-github/issues/8603
19+
20+
**_Thank You_**
21+
22+
* [@MaxDNG](https://github.com/MaxDNG): Re-parent pulled-up directory children to ensure proper checkbox refresh [PR #8679](https://github.com/microsoft/vscode-pull-request-github/pull/8679)
23+
324
## 0.142.0
425

526
### Changes
98.3 KB
Loading

package-lock.json

Lines changed: 2 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"treeItemMarkdownLabel",
4242
"treeViewMarkdownMessage"
4343
],
44-
"version": "0.142.0",
44+
"version": "0.144.0",
4545
"publisher": "GitHub",
4646
"engines": {
4747
"node": ">=20",

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,12 @@ declare module 'vscode' {
299299
chatSessionResource?: Uri;
300300
chatInteractionId?: string;
301301
terminalCommand?: string;
302+
/**
303+
* The working directory URI for the session, if set.
304+
* In the agents window, each session can have its own working directory
305+
* that differs from the current workspace folders.
306+
*/
307+
workingDirectory?: Uri;
302308
/**
303309
* Unique ID for the subagent invocation, used to group tool calls from the same subagent run together.
304310
*/
@@ -334,6 +340,12 @@ declare module 'vscode' {
334340
chatRequestId?: string;
335341
chatSessionResource?: Uri;
336342
chatInteractionId?: string;
343+
/**
344+
* The working directory URI for the session, if set.
345+
* In the agents window, each session can have its own working directory
346+
* that differs from the current workspace folders.
347+
*/
348+
workingDirectory?: Uri;
337349
/**
338350
* If set, tells the tool that it should include confirmation messages.
339351
*/

0 commit comments

Comments
 (0)