Skip to content

Commit e3c0b11

Browse files
docs: add v3.34.4 release notes and update combined 3.34 (#423)
1 parent 662f2d2 commit e3c0b11

File tree

5 files changed

+41
-1
lines changed

5 files changed

+41
-1
lines changed

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.34
2121

2222
* [3.34](/update-notes/v3.34) (Combined)
23+
* [3.34.4](/update-notes/v3.34.4) (2025-11-25)
2324
* [3.34.2](/update-notes/v3.34.2) (2025-11-24)
2425
* [3.34.1](/update-notes/v3.34.1) (2025-11-23)
2526
* [3.34.0](/update-notes/v3.34.0) (2025-11-21)

docs/update-notes/v3.34.4.mdx

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
description: This patch release adds free Black Forest Labs image generation models on Roo Code Cloud and OpenRouter and improves reliability when using native MCP tools with context condensing.
3+
keywords:
4+
- roo code 3.34.4
5+
- black forest labs flux 2
6+
- image generation
7+
- mcp native tools
8+
- context condensing
9+
image: /img/v3.34.4/v3.34.4.png
10+
---
11+
12+
# Roo Code 3.34.4 Release Notes (2025-11-25)
13+
14+
This patch release adds free Black Forest Labs image generation models on Roo Code Cloud and OpenRouter, and makes native MCP tools more reliable by preserving tool names and tool_use blocks during context condensing.
15+
16+
<img src="/img/v3.34.4/v3.34.4.png" alt="Roo Code v3.34.4 Release" width="600" />
17+
18+
## Black Forest Labs image generation on Roo Code Cloud
19+
20+
New Black Forest Labs FLUX.2 models are now wired through Roo Code’s image pipeline for Roo Code Cloud image generation ([#9587](https://github.com/RooCodeInc/Roo-Code/pull/9587)):
21+
22+
- **Free image generation on Roo Code Cloud**: Use the `bfl/flux-2-pro:free` model on Roo Code Cloud for high-quality image generation without worrying about unexpected image charges.
23+
- **Native images API support**: The `images_api` image generation method is supported for compatible models, improving parity with provider-native image APIs and giving better forwards compatibility as providers add new features.
24+
25+
> **📚 Documentation**: See [Image Generation](/features/image-generation) for how to use image generation in Roo Code.
26+
27+
## Bug Fixes
28+
29+
- **Native MCP tool names preserved in history**: Native mode now keeps the real dynamic MCP tool names (such as `mcp_serverName_toolName`) in the API history instead of teaching the model a fake `use_mcp_tool` name, so follow-up calls pick the right tools and tool suggestions stay consistent ([#9559](https://github.com/RooCodeInc/Roo-Code/pull/9559)).
30+
- **Native tools condensing keeps tool_use context**: When condensing long conversations that use native tools, required `tool_use` and `tool_result` blocks are preserved in the summary message, preventing 400 errors and avoiding lost context during follow-up turns ([#9582](https://github.com/RooCodeInc/Roo-Code/pull/9582)).
31+
32+
## Provider Updates
33+
34+
- **Black Forest Labs models on OpenRouter**: Adds Black Forest Labs FLUX.2 Flex and FLUX.2 Pro image generation models via OpenRouter, giving you additional high-quality options when you prefer to use your OpenRouter account for image generation ([#9589](https://github.com/RooCodeInc/Roo-Code/pull/9589)).

docs/update-notes/v3.34.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ image: /img/v3.34.0/v3.34.0.png
1414

1515
# Roo Code 3.34 Release Notes (2025-11-21)
1616

17-
Roo Code 3.34 combines Browser Use 2.0, the Baseten provider, OpenAI-compatible improvements, and refined onboarding and native tool descriptions with patches that add Roo Code Cloud eval support, clearer image generation prompts, todo list cleanup, cloud sync fixes, and Claude Opus 4.5 across Roo Code Cloud, OpenRouter, Anthropic, and Vertex plus new provider reliability and model updates.
17+
Roo Code 3.34 combines Browser Use 2.0, the Baseten provider, OpenAI-compatible improvements, and refined onboarding and native tool descriptions with patches that add Roo Code Cloud eval support, clearer image generation prompts, todo list cleanup, cloud sync fixes, Claude Opus 4.5 across Roo Code Cloud, OpenRouter, Anthropic, and Vertex, plus new provider reliability and model updates, free Black Forest Labs image generation on Roo Code Cloud, and native MCP tool reliability fixes.
1818

1919
<img src="/img/v3.34.0/v3.34.0.png" alt="Roo Code v3.34 Release" width="600" />
2020

@@ -47,6 +47,8 @@ Browser Use now supports a more capable "2.0" experience ([#8941](https://github
4747
- **Cloud message deduplication**: Fixed cloud message syncing so duplicate copies of the same reasoning or assistant message are no longer re-synced, keeping task histories cleaner and less confusing ([#9518](https://github.com/RooCodeInc/Roo-Code/pull/9518), [#9522](https://github.com/RooCodeInc/Roo-Code/pull/9522)).
4848
- **Gemini 3 reasoning_details support**: Fixes 400 INVALID_ARGUMENT errors when using Gemini 3 models via OpenRouter by fully supporting the newer `reasoning_details` format, so multi-turn and tool-calling conversations now work reliably without dropping reasoning context ([#9506](https://github.com/RooCodeInc/Roo-Code/pull/9506))).
4949
- **Skip unsupported Gemini content blocks safely**: Gemini conversations on Vertex AI now skip unsupported metadata blocks (such as certain reasoning or document types) with a warning instead of failing the entire thread, keeping long-running chats stable ([#9537](https://github.com/RooCodeInc/Roo-Code/pull/9537))).
50+
- **Native MCP tool names preserved in history**: Native mode now keeps the real dynamic MCP tool names (such as `mcp_serverName_toolName`) in the API history instead of teaching the model a fake `use_mcp_tool` name, so follow-up calls pick the right tools and tool suggestions stay consistent ([#9559](https://github.com/RooCodeInc/Roo-Code/pull/9559)).
51+
- **Native tools condensing keeps tool_use context**: When condensing long conversations that use native tools, required `tool_use` and `tool_result` blocks are preserved in the summary message, preventing 400 errors and avoiding lost context during follow-up turns ([#9582](https://github.com/RooCodeInc/Roo-Code/pull/9582)).
5052

5153
## Provider Updates
5254

@@ -56,3 +58,5 @@ Browser Use now supports a more capable "2.0" experience ([#8941](https://github
5658
- **Roo Code Cloud image generation provider**: Roo Code Cloud is now available as an image generation provider, so you can generate images directly through Roo Code Cloud instead of relying only on third-party image APIs ([#9528](https://github.com/RooCodeInc/Roo-Code/pull/9528))).
5759
- **Cerebras model list clean-up**: The Cerebras provider model list now only shows currently supported models, reducing errors from deprecated Cerebras/Qwen variants and keeping the model picker aligned with what the API actually serves ([#9527](https://github.com/RooCodeInc/Roo-Code/pull/9527))).
5860
- **Reliable LiteLLM model refresh after credential changes**: Clicking **Refresh Models** after changing your LiteLLM API key or base URL now immediately reloads the model list using the new credentials, so you do not need to clear caches or restart VS Code, while background refreshes still benefit from caching for speed ([#9536](https://github.com/RooCodeInc/Roo-Code/pull/9536))).
61+
- **Black Forest Labs image generation on Roo Code Cloud**: Use the free `bfl/flux-2-pro:free` model on Roo Code Cloud for high-quality image generation without unexpected charges, powered by the `images_api` image generation method for compatible models ([#9587](https://github.com/RooCodeInc/Roo-Code/pull/9587)).
62+
- **Black Forest Labs models on OpenRouter**: Adds Black Forest Labs FLUX.2 Flex and FLUX.2 Pro image generation models via OpenRouter, giving you additional high-quality options when you prefer to use your OpenRouter account for image generation ([#9589](https://github.com/RooCodeInc/Roo-Code/pull/9589)).

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.34',
224224
items: [
225225
{ type: 'doc', id: 'update-notes/v3.34', label: '3.34 Combined' },
226+
{ type: 'doc', id: 'update-notes/v3.34.4', label: '3.34.4' },
226227
{ type: 'doc', id: 'update-notes/v3.34.2', label: '3.34.2' },
227228
{ type: 'doc', id: 'update-notes/v3.34.1', label: '3.34.1' },
228229
{ type: 'doc', id: 'update-notes/v3.34.0', label: '3.34.0' },

static/img/v3.34.4/v3.34.4.png

1.3 MB
Loading

0 commit comments

Comments
 (0)