Skip to content

Commit 780aee0

Browse files
authored
Release: Roo Code v3.25.11 (#306)
1 parent 079cd75 commit 780aee0

File tree

5 files changed

+108
-1
lines changed

5 files changed

+108
-1
lines changed

docs/providers/io-intelligence.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
description: This page explains how to configure and use the IO Intelligence provider with Roo Code.
3+
keywords:
4+
- io intelligence
5+
- provider
6+
- ai models
7+
- llama
8+
- deepseek
9+
- qwen
10+
- mistral
11+
image: /img/social-share.jpg
12+
---
13+
14+
# IO Intelligence Provider
15+
16+
The IO Intelligence provider gives you access to a wide range of AI models, including those from Llama, DeepSeek, Qwen, and Mistral, through a unified API.
17+
18+
## Configuration
19+
20+
To use the IO Intelligence provider, you will need to add it to your `~/.roo/config.json` file.
21+
22+
1. **Get your API key**: You can get an API key from the [IO Intelligence website](https://io.net/).
23+
2. **Add the provider to your config**: Add the following to your `config.json` file:
24+
25+
```json
26+
{
27+
"providers": [
28+
{
29+
"id": "io-intelligence",
30+
"apiKey": "YOUR_IO_INTELLIGENCE_API_KEY"
31+
}
32+
]
33+
}
34+
```
35+
36+
## Available Models
37+
38+
The IO Intelligence provider supports the following models:
39+
40+
* `llama-3-70b`
41+
* `deepseek-coder-v2`
42+
* `qwen-2-72b`
43+
* `mistral-large`
44+
45+
You can specify which model to use in your API configuration profiles.

docs/update-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ This section contains notes about recent updates to Roo Code, listed by version
1919

2020
## Version 3.25
2121

22+
* [3.25.11](/update-notes/v3.25.11) (2025-08-11)
2223
* [3.25.10](/update-notes/v3.25.10) (2025-08-07)
2324
* [3.25.9](/update-notes/v3.25.9) (2025-08-07)
2425
* [3.25.8](/update-notes/v3.25.8) (2025-08-06)

docs/update-notes/v3.25.11.mdx

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
description: This release enhances GPT-5 support, adds the new IO Intelligence provider, and includes several new features, QOL improvements, and bug fixes.
3+
keywords:
4+
- roo code 3.25.11
5+
- new features
6+
- bug fixes
7+
- gpt-5
8+
- io intelligence
9+
image: /img/social-share.jpg
10+
---
11+
12+
# Roo Code 3.25.11 Release Notes (2025-08-11)
13+
14+
This release enhances GPT-5 support, adds the new IO Intelligence provider, and includes several new features, quality-of-life improvements, and bug fixes.
15+
16+
## Enhanced GPT-5 Support
17+
18+
We've enhanced our GPT-5 integration, enabling you to leverage more advanced capabilities for streaming, multi-turn conversations, and efficient token management. This release also adds support for the new GPT-5 models from OpenAI, including `gpt-5-2025-08-07`, `gpt-5-mini-2025-08-07`, and `gpt-5-nano-2025-08-07`.
19+
20+
> **📚 Documentation**: See the [OpenAI Provider documentation](/providers/openai) for more details.
21+
22+
## New IO Intelligence Provider
23+
24+
We've added IO Intelligence as a new provider, giving you access to a wide range of AI models like Llama, DeepSeek, Qwen, and Mistral through a unified API ([#6875](https://github.com/RooCodeInc/Roo-Code/pull/6875)).
25+
26+
> **📚 Documentation**: See the [IO Intelligence Provider documentation](/providers/io-intelligence) for more information.
27+
28+
## Codex Mini Model Support
29+
30+
We've added support for the `codex-mini-latest` model in the OpenAI Native provider, allowing you to leverage its specialized code-related capabilities directly (thanks KJ7LNW!) ([#6931](https://github.com/RooCodeInc/Roo-Code/pull/6931)).
31+
32+
## QOL Improvements
33+
34+
* **`codebase_search` Tool**: Clarified that the `path` parameter is optional and the tool searches the entire workspace by default ([#6877](https://github.com/RooCodeInc/Roo-Code/pull/6877)).
35+
* **`@roo-code/cloud` Linking**: Improved the developer workflow by allowing `@roo-code/cloud` to be directly linked from a local repository, with HMR support ([#6799](https://github.com/RooCodeInc/Roo-Code/pull/6799)).
36+
* **Chat Input Focus**: The chat input is now automatically focused when creating a new chat from the extension's top menu ([#6689](https://github.com/RooCodeInc/Roo-Code/pull/6689)).
37+
* **Token Usage Reporting**: Fixed an issue where token usage and cost were underreported, providing more accurate cost tracking (thanks chrarnoldus!) ([#6122](https://github.com/RooCodeInc/Roo-Code/pull/6122)).
38+
39+
## Bug Fixes
40+
41+
* **MCP Server Startup**: Fixed an issue where MCP servers would fail to start and removed unnecessary refresh notifications ([#6878](https://github.com/RooCodeInc/Roo-Code/pull/6878)).
42+
* **Tool Repetition Detector**: Fixed a bug where setting the "Errors and Repetition Limit" to 1 would incorrectly block the first tool call (thanks NaccOll!) ([#6836](https://github.com/RooCodeInc/Roo-Code/pull/6836)).
43+
* **MCP Error Messages**: Fixed an issue where MCP server error messages were displaying raw translation keys ([#6821](https://github.com/RooCodeInc/Roo-Code/pull/6821)).
44+
* **`apply_diff` Tool**: Fixed a bug that caused XML parsing errors when working with complex XML content ([#6811](https://github.com/RooCodeInc/Roo-Code/pull/6811)).
45+
* **`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 (thanks markp018!) ([#6808](https://github.com/RooCodeInc/Roo-Code/pull/6808)).
46+
* **Scroll Jitter**: Fixed a scroll jitter issue that occurred during message streaming, especially with code blocks ([#6780](https://github.com/RooCodeInc/Roo-Code/pull/6780)).
47+
* **MCP Server Refresh**: Fixed an issue where MCP servers would unnecessarily refresh when unrelated settings were saved ([#6779](https://github.com/RooCodeInc/Roo-Code/pull/6779)).
48+
* **AWS Bedrock Connection**: Fixed a connection issue when using AWS Bedrock with LiteLLM ([#6778](https://github.com/RooCodeInc/Roo-Code/pull/6778)).
49+
50+
## Provider Updates
51+
52+
* **Fireworks**: Added support for four new models: GLM-4.5, GLM-4.5-Air, gpt-oss-20b, and gpt-oss-120b (thanks alexfarlander!) ([#6784](https://github.com/RooCodeInc/Roo-Code/pull/6784)).

docs/update-notes/v3.25.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ Small changes that make a big difference in your daily workflow:
126126
* **Task Resumption Message**: Improved LLM instructions by removing misleading message about resuming tasks (thanks KJ7LNW!) ([#5851](https://github.com/RooCodeInc/Roo-Code/pull/5851))
127127
* **AGENTS.md Support**: Added symlink support for AGENTS.md file loading ([#6326](https://github.com/RooCodeInc/Roo-Code/pull/6326))
128128
* **Marketplace Updates**: Auto-refresh marketplace data when organization settings change ([#6446](https://github.com/RooCodeInc/Roo-Code/pull/6446))
129+
* **`codebase_search` Tool**: Clarified that the `path` parameter is optional and the tool searches the entire workspace by default
130+
* **Token Usage Reporting**: Fixed an issue where token usage and cost were underreported, providing more accurate cost tracking
129131

130132
### Bug Fixes
131133

@@ -171,6 +173,9 @@ Critical fixes that improve stability and compatibility:
171173
* **Claude Code Output Tokens**: Fixed truncated responses by increasing default max output tokens from 8k to 16k (thanks bpeterson1991!) ([#6312](https://github.com/RooCodeInc/Roo-Code/pull/6312))
172174
* **Execute Command Kill Button**: Fixed the kill button functionality for the execute_command tool ([#6457](https://github.com/RooCodeInc/Roo-Code/pull/6457))
173175
* **Token Counting**: Fixed accuracy issues by extracting text from messages using VSCode LM API (thanks NaccOll!) ([#6424](https://github.com/RooCodeInc/Roo-Code/pull/6424))
176+
* **Tool Repetition Detector**: Fixed a bug where setting the "Errors and Repetition Limit" to 1 would incorrectly block the first tool call
177+
* **`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
178+
* **AWS Bedrock Connection**: Fixed a connection issue when using AWS Bedrock with LiteLLM
174179

175180
### Provider Updates
176181

@@ -195,6 +200,8 @@ Critical fixes that improve stability and compatibility:
195200
* **Horizon Beta Stealth Model via OpenRouter**: Optimized support for OpenRouter's new stealth model Horizon Beta with 32k max tokens for better response times. Thanks to OpenRouter for providing this free, improved version of Horizon Alpha!
196201
* **Type Definitions**: Updated @roo-code/types to v1.41.0 for latest type compatibility
197202
* **Databricks**: Added support for /invocations endpoints pattern (thanks adambrand!) ([#6317](https://github.com/RooCodeInc/Roo-Code/pull/6317))
203+
* **Codex Mini Model Support**: Added support for the `codex-mini-latest` model in the OpenAI Native provider
204+
* **IO Intelligence Provider**: Added IO Intelligence as a new provider, giving users access to a wide range of AI models
198205

199206
### Misc. Improvements
200207

sidebars.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ const sidebars: SidebarsConfig = {
168168
'providers/groq',
169169
'providers/huggingface',
170170
'providers/human-relay',
171+
'providers/io-intelligence',
171172
'providers/lmstudio',
172173
'providers/litellm',
173174
'providers/mistral',
@@ -211,7 +212,8 @@ const sidebars: SidebarsConfig = {
211212
label: '3.25',
212213
items: [
213214
{ type: 'doc', id: 'update-notes/v3.25', label: '3.25 Combined' },
214-
{ type: 'doc', id: 'update-notes/v3.25.10', label: '3.25.10' },
215+
{ type: 'doc', id: 'update-notes/v3.25.11', label: '3.25.11' },
216+
{ type: 'doc', id: 'update-notes/v3.25.10', label: '3.25.10' },
215217
{ type: 'doc', id: 'update-notes/v3.25.9', label: '3.25.9' },
216218
{ type: 'doc', id: 'update-notes/v3.25.8', label: '3.25.8' },
217219
{ type: 'doc', id: 'update-notes/v3.25.7', label: '3.25.7' },

0 commit comments

Comments
 (0)