Skip to content
Merged

0.140.0 #8709

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.140.0

### Changes

- New "Checkout Pull Request in Worktree" option added to the Pull Requests view context menu and the PR description view.

### Fixes

- `hasBranch` called with repository name (`pr.base.name`) instead of branch name (`pr.base.ref`) in `reviewManager.ts`. https://github.com/microsoft/vscode-pull-request-github/issues/8668

**_Thank You_**

* [@Will-hxw](https://github.com/Will-hxw): Use `pr.base.ref` instead of `pr.base.name` in `hasBranch` call [PR #8698](https://github.com/microsoft/vscode-pull-request-github/pull/8698)

## 0.138.0

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"treeItemMarkdownLabel",
"treeViewMarkdownMessage"
],
"version": "0.138.0",
"version": "0.140.0",
"publisher": "GitHub",
"engines": {
"node": ">=20",
Expand Down
9 changes: 9 additions & 0 deletions src/@types/vscode.proposed.chatParticipantPrivate.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,15 @@ declare module 'vscode' {

isRateLimited?: boolean;

/**
* If true, the error is an expected operational condition (e.g. user-actionable
* configuration, network connectivity, missing dependency) and should not be
* logged as a `chatAgentError` telemetry event. The error is still surfaced to
* the user. Throwing an `Error` whose `name` is `'ChatExpectedError'` from a
* chat participant handler will set this flag automatically.
*/
isExpectedError?: boolean;

level?: ChatErrorLevel;

code?: string;
Expand Down
5 changes: 5 additions & 0 deletions src/@types/vscode.proposed.chatSessionsProvider.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,11 @@ declare module 'vscode' {
* Represents the current state of user inputs for a chat session.
*/
export interface ChatSessionInputState {
/**
* Fired when the input state is disposed.
*/
readonly onDidDispose: Event<void>;

/**
* Fired when the input state is changed by the user.
*
Expand Down
Loading