Skip to content

Commit 0669ab4

Browse files
fix: update Docker run command for Qdrant setup with optimizations (#371)
* fix: update Docker run command for Qdrant setup with optimizations * feat: add release notes for version 3.28.10 with Claude 4.5 support and bug fixes * fix: correct model identifier for Claude Sonnet 4.5 on AWS Bedrock
1 parent 47277f0 commit 0669ab4

File tree

7 files changed

+59
-2
lines changed

7 files changed

+59
-2
lines changed

docs/features/codebase-indexing.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,16 @@ Before enabling codebase indexing, you'll need two components:
8181

8282
Using Docker:
8383
```bash
84-
docker run -p 6333:6333 qdrant/qdrant
84+
docker run -d \
85+
--name qdrant \
86+
--restart unless-stopped \
87+
-p 6333:6333 \
88+
-v qdrant_data:/qdrant/storage \
89+
qdrant/qdrant
8590
```
8691

8792
Using Docker Compose:
8893
```yaml
89-
version: '3.8'
9094
services:
9195
qdrant:
9296
image: qdrant/qdrant

docs/update-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ image: /img/social-share.jpg
2020
### Version 3.28
2121

2222
* [3.28](/update-notes/v3.28) (Combined)
23+
* [3.28.10](/update-notes/v3.28.10) (2025-09-29)
2324
* [3.28.9](/update-notes/v3.28.9) (2025-09-26)
2425
* [3.28.8](/update-notes/v3.28.8) (2025-09-25)
2526
* [3.28.7](/update-notes/v3.28.7) (2025-09-23)

docs/update-notes/v3.28.10.mdx

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
description: Claude 4.5 Sonnet support, GPT-5 LiteLLM fix, and UI improvements.
3+
keywords:
4+
- roo code 3.28.10
5+
- claude 4.5 sonnet
6+
- gpt-5 litellm
7+
- bug fixes
8+
image: /img/v3.28.10/v3.28.10.png
9+
---
10+
11+
# Roo Code 3.28.10 Release Notes (2025-09-29)
12+
13+
This release adds support for Claude 4.5 Sonnet across all providers, fixes GPT-5 compatibility with LiteLLM, and includes UI improvements.
14+
15+
<img src="/img/v3.28.10/v3.28.10.png" alt="Roo Code v3.28.10 Release" width="600" />
16+
17+
## Claude 4.5 Sonnet Support
18+
19+
We've added support for Anthropic's latest Claude 4.5 Sonnet model across all Claude-supporting providers ([#8368](https://github.com/RooCodeInc/Roo-Code/pull/8368)).
20+
21+
According to [Anthropic's announcement](https://www.anthropic.com/news/claude-sonnet-4-5), Claude 4.5 Sonnet is:
22+
23+
- State-of-the-art on SWE-bench Verified, maintaining focus for more than 30 hours on complex, multi-step tasks
24+
- Showing a significant leap forward on computer use with 61.4% on OSWorld benchmark (up from 42.2% just four months ago)
25+
- Delivering substantial gains in reasoning, math, and domain-specific knowledge across finance, law, medicine, and STEM
26+
27+
<img src="/img/v3.28.10/v3.28.10-1.png" alt="Claude 4.5 Sonnet model selection" width="600" />
28+
29+
The model is now available in the model selection dropdown for all supported providers.
30+
31+
## Bug Fixes
32+
33+
* **AWS Bedrock Claude Sonnet 4.5**: Corrected model identifier for Claude Sonnet 4.5 on AWS Bedrock (thanks sunhyung!) ([#8371](https://github.com/RooCodeInc/Roo-Code/pull/8371))
34+
* **GPT-5 LiteLLM Compatibility**: Fixed GPT-5 models failing with LiteLLM provider by using correct `max_completion_tokens` parameter (thanks lx1054331851!) ([#6980](https://github.com/RooCodeInc/Roo-Code/pull/6980))
35+
36+
## QOL Improvements
37+
38+
* **Chat Icon Sizing**: Chat interface icons now maintain consistent size in limited space ([#8343](https://github.com/RooCodeInc/Roo-Code/pull/8343))
39+
40+
## Misc Improvements
41+
42+
* **Telemetry Tracking**: Enhanced analytics to track when users change telemetry settings ([#8339](https://github.com/RooCodeInc/Roo-Code/pull/8339))
43+
* **Website Testimonials**: Updated website with enhanced testimonials section ([#8360](https://github.com/RooCodeInc/Roo-Code/pull/8360))
44+
* **Contributor Recognition**: Improved contributor badge workflow with automated cache refreshing ([#8083](https://github.com/RooCodeInc/Roo-Code/pull/8083))

docs/update-notes/v3.28.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ This gives teams a higher-capacity OpenAI option without extra configuration.[#8
6565
## QOL Improvements
6666

6767
* **Cloud Account Management**: Added account switcher and "Create Team Account" option for logged-in users, making it easier to manage multiple accounts ([#8291](https://github.com/RooCodeInc/Roo-Code/pull/8291))
68+
* **Chat Icon Sizing**: Chat interface icons now maintain consistent size in limited space ([#8343](https://github.com/RooCodeInc/Roo-Code/pull/8343))
6869
* **Social Media Sharing**: Improved OpenGraph images for better preview cards when sharing Roo Code links on Slack, Twitter, and Facebook ([#8285](https://github.com/RooCodeInc/Roo-Code/pull/8285))
6970
* **Auto-approve keyboard shortcut**: Toggle approvals with Cmd/Ctrl+Alt+A from anywhere in the editor so you can stay in the flow while reviewing changes (via [#8214](https://github.com/RooCodeInc/Roo-Code/pull/8214))
7071
* **Click-to-Edit Chat Messages**: Click directly on any message text to edit it, with ESC to cancel and improved padding consistency ([#7790](https://github.com/RooCodeInc/Roo-Code/pull/7790))
@@ -99,6 +100,8 @@ This gives teams a higher-capacity OpenAI option without extra configuration.[#8
99100

100101
## Bug Fixes
101102

103+
* **AWS Bedrock Claude Sonnet 4.5**: Corrected model identifier for Claude Sonnet 4.5 on AWS Bedrock (thanks sunhyung!) ([#8371](https://github.com/RooCodeInc/Roo-Code/pull/8371))
104+
* **GPT-5 LiteLLM Compatibility**: Fixed GPT-5 models failing with LiteLLM provider by using correct `max_completion_tokens` parameter (thanks lx1054331851!) ([#6980](https://github.com/RooCodeInc/Roo-Code/pull/6980))
102105
* **Fixed "No tool used" Errors**: Resolved the situation where LLMs would sometimes not make tool calls in their response which improves Roo's overall flow. ([#8292](https://github.com/RooCodeInc/Roo-Code/pull/8292))
103106
* **Context Condensing**: Fixed an issue where the initial task request was being lost during context condensing, causing Roo to try to re-answer the original task ask when resuming after condensing ([#8298](https://github.com/RooCodeInc/Roo-Code/pull/8298))
104107
* **Roo provider stays signed in**: Roo provider tokens refresh automatically and the local evals app binds to port 3446 for predictable scripts (via [#8224](https://github.com/RooCodeInc/Roo-Code/pull/8224))
@@ -132,6 +135,7 @@ This gives teams a higher-capacity OpenAI option without extra configuration.[#8
132135

133136
## Provider Updates
134137

138+
* **Claude 4.5 Sonnet**: Added support for Anthropic's latest Claude 4.5 Sonnet model across all providers (Anthropic, AWS Bedrock, Claude Code, Google Vertex AI, and OpenRouter) with 1M context window support ([#8368](https://github.com/RooCodeInc/Roo-Code/pull/8368))
135139
* **New Free Models**: Added two more free models to the Roo provider - xai/grok-4-fast and deepseek/deepseek-chat-v3.1 ([#8304](https://github.com/RooCodeInc/Roo-Code/pull/8304))
136140
* **Vertex AI Models**: Added support for 6 new models including DeepSeek-V3, GPT-OSS, and Qwen models, plus the us-south1 region (thanks ssweens!) ([#7727](https://github.com/RooCodeInc/Roo-Code/pull/7727))
137141
* **DeepSeek Pricing**: Updated to new unified rates effective September 5, 2025 - $0.56/M input tokens, $1.68/M output tokens (thanks NaccOll!) ([#7687](https://github.com/RooCodeInc/Roo-Code/pull/7687))
@@ -145,6 +149,9 @@ This gives teams a higher-capacity OpenAI option without extra configuration.[#8
145149
## Misc Improvements
146150

147151
* **Website improvements**: New pricing page, clearer homepage messaging, and tighter navigation/visuals (including mobile). No changes to the extension UX. ([#8303](https://github.com/RooCodeInc/Roo-Code/pull/8303), [#8326](https://github.com/RooCodeInc/Roo-Code/pull/8326))
152+
* **Telemetry Tracking**: Enhanced analytics to track when users change telemetry settings ([#8339](https://github.com/RooCodeInc/Roo-Code/pull/8339))
153+
* **Website Testimonials**: Updated website with enhanced testimonials section ([#8360](https://github.com/RooCodeInc/Roo-Code/pull/8360))
154+
* **Contributor Recognition**: Improved contributor badge workflow with automated cache refreshing ([#8083](https://github.com/RooCodeInc/Roo-Code/pull/8083))
148155
* **Internal cleanup**: Removes the deprecated pr-reviewer mode. No changes to the extension UX. ([#8222](https://github.com/RooCodeInc/Roo-Code/pull/8222))
149156
* **Infrastructure**: Set port 3446 for web-evals service in production mode ([#8288](https://github.com/RooCodeInc/Roo-Code/pull/8288))
150157
* **Cloud Task Button**: Added a new button for opening tasks in Roo Code Cloud with QR codes and shareable URLs ([#7572](https://github.com/RooCodeInc/Roo-Code/pull/7572))

sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ const sidebars: SidebarsConfig = {
223223
label: '3.28',
224224
items: [
225225
{ type: 'doc', id: 'update-notes/v3.28', label: '3.28 Combined' },
226+
{ type: 'doc', id: 'update-notes/v3.28.10', label: '3.28.10' },
226227
{ type: 'doc', id: 'update-notes/v3.28.9', label: '3.28.9' },
227228
{ type: 'doc', id: 'update-notes/v3.28.8', label: '3.28.8' },
228229
{ type: 'doc', id: 'update-notes/v3.28.7', label: '3.28.7' },

static/img/v3.28.10/v3.28.10-1.png

609 KB
Loading

static/img/v3.28.10/v3.28.10.png

1.27 MB
Loading

0 commit comments

Comments
 (0)