Skip to content

Commit 60a6ab9

Browse files
authored
Merge branch 'RooCodeInc:main' into main
2 parents 0257fea + 97f9686 commit 60a6ab9

35 files changed

+649
-161
lines changed

CHANGELOG.md

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

3+
## [3.28.15] - 2025-10-03
4+
5+
![3.28.15 Release - Kangaroo Sliding Down a Chute](/releases/3.28.15-release.png)
6+
7+
- Add new DeepSeek and GLM models with detailed descriptions to the Chutes provider (thanks @mohammad154!)
8+
- Fix: properly reset cost limit tracking when user clicks "Reset and Continue" (#6889 by @alecoot, PR by app/roomote)
9+
- Fix: improve save button activation in prompts settings (#5780 by @beccare, PR by app/roomote)
10+
- Fix: overeager 'there are unsaved changes' dialog in settings (thanks @brunobergher!)
11+
- Fix: show send button when only images are selected in chat textarea (thanks app/roomote!)
12+
- Fix: Claude Sonnet 4.5 compatibility improvements (thanks @mrubens!)
13+
- Add UsageStats schema and type for better analytics tracking (thanks app/roomote!)
14+
- Include reasoning messages in cloud tasks (thanks @mrubens!)
15+
- Security: update dependency vite to v6.3.6 (thanks app/renovate!)
16+
- Deprecate free grok 4 fast model (thanks @mrubens!)
17+
- Remove unsupported Gemini 2.5 Flash Image Preview free model (thanks @SannidhyaSah!)
18+
- Add structured data to the homepage for better SEO (thanks @mrubens!)
19+
- Update dependency glob to v11.0.3 (thanks app/renovate!)
20+
321
## [3.28.14] - 2025-09-30
422

523
![3.28.14 Release - GLM-4.6 Model Support](/releases/3.28.14-release.png)

packages/types/src/model.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ export const modelInfoSchema = z.object({
7676
minTokensPerCachePoint: z.number().optional(),
7777
maxCachePoints: z.number().optional(),
7878
cachableFields: z.array(z.string()).optional(),
79+
// Flag to indicate if the model is deprecated and should not be used
80+
deprecated: z.boolean().optional(),
7981
/**
8082
* Service tiers with pricing information.
8183
* Each tier can have a name (for OpenAI service tiers) and pricing overrides.

packages/types/src/providers/roo.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export const rooModels = {
3838
outputPrice: 0,
3939
description:
4040
"Grok 4 Fast is xAI's latest multimodal model with SOTA cost-efficiency and a 2M token context window. (Note: prompts and completions are logged by xAI and used to improve the model.)",
41+
deprecated: true,
4142
},
4243
"deepseek/deepseek-chat-v3.1": {
4344
maxTokens: 16_384,

0 commit comments

Comments
 (0)