Skip to content
Merged

0.152.0 #8809

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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.152.0

### Fixes

- Upload file renders on top of text in the input. https://github.com/microsoft/vscode-pull-request-github/issues/8776

## 0.150.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.150.0",
"version": "0.152.0",
"publisher": "GitHub",
"engines": {
"node": ">=20",
Expand Down
6 changes: 6 additions & 0 deletions src/@types/vscode.proposed.chatParticipantAdditions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,11 @@ declare module 'vscode' {
*/
readonly outputBuffer?: number;

/**
* The number of copilot credits consumed by this request.
*/
readonly copilotCredits?: number;

/**
* Optional breakdown of prompt token usage by category and label.
* If the percentages do not sum to 100%, the remaining will be shown as "Uncategorized".
Expand Down Expand Up @@ -1078,6 +1083,7 @@ declare module 'vscode' {
readonly name: string;
readonly content: string;
readonly toolReferences?: readonly ChatLanguageModelToolReference[];
readonly allowedSubagents?: readonly string[];
readonly metadata?: Record<string, boolean | string | number>;
/**
* Whether the mode is a builtin mode (e.g. Ask, Edit, Agent) rather than a user or extension-defined custom mode.
Expand Down
6 changes: 0 additions & 6 deletions src/@types/vscode.proposed.chatParticipantPrivate.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,12 +457,6 @@ declare module 'vscode' {
export interface LanguageModelToolInformation {
/**
* The full reference name of this tool as used in agent definition files.
*
* For MCP tools, this is the canonical name in the format `serverShortName/toolReferenceName`
* (e.g., `github/search_issues`). This can be used to map between the tool names specified
* in agent `.md` files and the tool's internal {@link LanguageModelToolInformation.name id}.
*
* This property is only set for MCP tools. For other tool types, it is `undefined`.
*/
readonly fullReferenceName?: string;
}
Expand Down
2 changes: 2 additions & 0 deletions src/@types/vscode.proposed.chatSessionsProvider.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -708,9 +708,11 @@ declare module 'vscode' {
readonly inputCost?: number;
readonly outputCost?: number;
readonly cacheCost?: number;
readonly cacheWriteCost?: number;
readonly longContextInputCost?: number;
readonly longContextOutputCost?: number;
readonly longContextCacheCost?: number;
readonly longContextCacheWriteCost?: number;
readonly priceCategory?: string;
readonly maxInputTokens?: number;
readonly maxOutputTokens?: number;
Expand Down