Skip to content

Commit 00c5f14

Browse files
authored
0.152.0 (#8809)
1 parent 06cc785 commit 00c5f14

6 files changed

Lines changed: 17 additions & 9 deletions

CHANGELOG.md

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

3+
## 0.152.0
4+
5+
### Fixes
6+
7+
- Upload file renders on top of text in the input. https://github.com/microsoft/vscode-pull-request-github/issues/8776
8+
39
## 0.150.0
410

511
### Fixes

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.150.0",
44+
"version": "0.152.0",
4545
"publisher": "GitHub",
4646
"engines": {
4747
"node": ">=20",

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -857,6 +857,11 @@ declare module 'vscode' {
857857
*/
858858
readonly outputBuffer?: number;
859859

860+
/**
861+
* The number of copilot credits consumed by this request.
862+
*/
863+
readonly copilotCredits?: number;
864+
860865
/**
861866
* Optional breakdown of prompt token usage by category and label.
862867
* If the percentages do not sum to 100%, the remaining will be shown as "Uncategorized".
@@ -1078,6 +1083,7 @@ declare module 'vscode' {
10781083
readonly name: string;
10791084
readonly content: string;
10801085
readonly toolReferences?: readonly ChatLanguageModelToolReference[];
1086+
readonly allowedSubagents?: readonly string[];
10811087
readonly metadata?: Record<string, boolean | string | number>;
10821088
/**
10831089
* Whether the mode is a builtin mode (e.g. Ask, Edit, Agent) rather than a user or extension-defined custom mode.

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -457,12 +457,6 @@ declare module 'vscode' {
457457
export interface LanguageModelToolInformation {
458458
/**
459459
* The full reference name of this tool as used in agent definition files.
460-
*
461-
* For MCP tools, this is the canonical name in the format `serverShortName/toolReferenceName`
462-
* (e.g., `github/search_issues`). This can be used to map between the tool names specified
463-
* in agent `.md` files and the tool's internal {@link LanguageModelToolInformation.name id}.
464-
*
465-
* This property is only set for MCP tools. For other tool types, it is `undefined`.
466460
*/
467461
readonly fullReferenceName?: string;
468462
}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,9 +708,11 @@ declare module 'vscode' {
708708
readonly inputCost?: number;
709709
readonly outputCost?: number;
710710
readonly cacheCost?: number;
711+
readonly cacheWriteCost?: number;
711712
readonly longContextInputCost?: number;
712713
readonly longContextOutputCost?: number;
713714
readonly longContextCacheCost?: number;
715+
readonly longContextCacheWriteCost?: number;
714716
readonly priceCategory?: string;
715717
readonly maxInputTokens?: number;
716718
readonly maxOutputTokens?: number;

0 commit comments

Comments
 (0)