Skip to content
Merged
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
1 change: 1 addition & 0 deletions docs/update-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This section contains notes about recent updates to Roo Code, listed by version

## Version 3.25

* [3.25.13](/update-notes/v3.25.13) (2025-08-13)
* [3.25.12](/update-notes/v3.25.12) (2025-08-12)
* [3.25.11](/update-notes/v3.25.11) (2025-08-11)
* [3.25.10](/update-notes/v3.25.10) (2025-08-07)
Expand Down
31 changes: 31 additions & 0 deletions docs/update-notes/v3.25.13.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
description: Adds Sonnet 1M context support for AWS Bedrock, improves internationalization, and fixes search functionality.
keywords:
- roo code 3.25.13
- sonnet 1m context
- aws bedrock
- internationalization
- agent.md support
image: /img/social-share.jpg
---

# Roo Code 3.25.13 Release Notes (2025-08-13)

This release adds Sonnet 1M context support for AWS Bedrock, improves internationalization, and fixes search functionality.

## Features

* **Sonnet 1M Context Support**: Enable 1M token context window for Claude 3.5 Sonnet when using AWS Bedrock, allowing you to process much larger documents and have longer conversations ([#7032](https://github.com/RooCodeInc/Roo-Code/pull/7032))

## QOL Improvements

* **Internationalization**: The Account button now displays in your selected language instead of always showing in English (thanks zhangtony239!) ([#6978](https://github.com/RooCodeInc/Roo-Code/pull/6978))

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not 100% sure this made it in

* **Agent File Flexibility**: Roo Code now recognizes both AGENT.md and AGENTS.md files for agent rules, with AGENTS.md checked first for compatibility (thanks Brendan-Z!) ([#6913](https://github.com/RooCodeInc/Roo-Code/pull/6913))

## Bug Fixes

* **Search Tool Reliability**: Fixed the search_files tool failing when encountering permission-denied files - it now continues working and returns results from accessible files (thanks R-omk!) ([#6757](https://github.com/RooCodeInc/Roo-Code/pull/6757))

## Provider Updates

* **OpenAI**: Removed the deprecated GPT-4.5 Preview model from available options as it was removed from the OpenAI API (thanks PeterDaveHello!) ([#6948](https://github.com/RooCodeInc/Roo-Code/pull/6948))
5 changes: 5 additions & 0 deletions docs/update-notes/v3.25.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ This feature provides peace of mind when using expensive models or running long

Small changes that make a big difference in your daily workflow:

* **Sonnet 1M Context Support**: Enable 1M token context window for Claude 3.5 Sonnet when using AWS Bedrock, allowing you to process much larger documents and have longer conversations
* **Internationalization**: The Account button now displays in your selected language instead of always showing in English
* **Agent File Flexibility**: Roo Code now recognizes both AGENT.md and AGENTS.md files for agent rules, with AGENTS.md checked first for compatibility
* **Chat Input Focus**: The chat input now automatically focuses when creating a new chat via the + button, allowing you to start typing immediately
* **Gemini 2.5 Pro Thinking Budget Flexibility**: The minimum thinking budget is reduced from 1024 to 128 tokens, perfect for tasks that need quick, focused responses without extensive reasoning. You'll need to manually adjust the thinking budget to 128 in your settings to take advantage of this feature.
* **Multi-Folder Workspace Support**: Code indexing now works correctly across all folders in multi-folder workspaces
Expand Down Expand Up @@ -176,6 +179,7 @@ Critical fixes that improve stability and compatibility:
* **Tool Repetition Detector**: Fixed a bug where setting the "Errors and Repetition Limit" to 1 would incorrectly block the first tool call
* **`max_tokens` Calculation**: Fixed an error for models with very large context windows where requests would fail due to incorrect calculation of maximum output tokens
* **AWS Bedrock Connection**: Fixed a connection issue when using AWS Bedrock with LiteLLM
* **Search Tool Reliability**: Fixed the search_files tool failing when encountering permission-denied files - it now continues working and returns results from accessible files

### Provider Updates

Expand All @@ -202,6 +206,7 @@ Critical fixes that improve stability and compatibility:
* **Databricks**: Added support for /invocations endpoints pattern (thanks adambrand!) ([#6317](https://github.com/RooCodeInc/Roo-Code/pull/6317))
* **Codex Mini Model Support**: Added support for the `codex-mini-latest` model in the OpenAI Native provider
* **IO Intelligence Provider**: Added IO Intelligence as a new provider, giving users access to a wide range of AI models
* **OpenAI**: Removed the deprecated GPT-4.5 Preview model from available options as it was removed from the OpenAI API

### Misc. Improvements

Expand Down
1 change: 1 addition & 0 deletions sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ const sidebars: SidebarsConfig = {
label: '3.25',
items: [
{ type: 'doc', id: 'update-notes/v3.25', label: '3.25 Combined' },
{ type: 'doc', id: 'update-notes/v3.25.13', label: '3.25.13' },
{ type: 'doc', id: 'update-notes/v3.25.12', label: '3.25.12' },
{ type: 'doc', id: 'update-notes/v3.25.11', label: '3.25.11' },
{ type: 'doc', id: 'update-notes/v3.25.10', label: '3.25.10' },
Expand Down