Skip to content

Commit 183fbb2

Browse files
docs: add release notes for v3.36.5 (#451)
1 parent aadf53a commit 183fbb2

File tree

8 files changed

+57
-6
lines changed

8 files changed

+57
-6
lines changed

docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The two options are highly complementary and built on the same shared foundation
3737

3838
The most successful Roo users tend to embrace the following ideas:
3939

40-
- **Leverage model agnosticism:** Roo isn't an LLM model, it needs an [LLM provider](/providers/index) to work. But it's compatible with dozens of providers and hundreds of models, so you're free to experiment, optimize and switch around, by design. No lock-ins in a world where "the best model" changes every other week.
40+
- **Leverage model agnosticism:** Roo isn't an LLM model, it needs an [LLM provider](/providers) to work. But it's compatible with dozens of providers and hundreds of models, so you're free to experiment, optimize and switch around, by design. No lock-ins in a world where "the best model" changes every other week.
4141
- **Don't skimp on tokens:** expensive state-of-the-art models with lots of tokens will almost always beat cheap models using few tokens. Pay attention to your budget, but embrace the fact that tokens are cheaper than developer time.
4242
- **Trust roles:** The extension's customizable Modes (Architect, Code, etc) and the pre-defined Cloud Agent Types (Planner, Coder, etc) keep the models on track and focused on the task at hand, without stepping outside of their boundaries. Lean on them depending on the task you're working on.
4343
- **Be ambitious:** Roo works best the more you trust it. Out-of-the-box, the Extension will ask for your permission to everything, but as you become more comfortable and enable [Auto-Approve](/features/auto-approving-actions), you'll see it work for long periods on its own without getting stuck or making bad decisions. Once ready, throw large, complex projects at the [Orchestrator](/basic-usage/using-modes#orchestrator-mode-aka-boomerang-mode), who will coordinate tasks across Modes. In the Cloud, we handle all of this for you.

docs/providers/roo-code-cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ We curate the best models for coding and offer them directly to you.
5454

5555
## Pricing & Credits
5656

57-
Roo Code Cloud operates on a [Credit System](/roo-code-cloud/credits).
57+
Roo Code Cloud operates on a [Credit System](/roo-code-cloud/billing-subscriptions).
5858
- **Promotional Period**: Currently, all standard usage for the models listed above is **100% FREE**.
5959
- **Future Pricing**: We will introduce a transparent credit-based system for usage beyond the free tier. You will always be notified before any charges apply.
6060

docs/roo-code-cloud/cloud-agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Cloud Agents consume **Cloud Credits**. Usage is measured based on the model use
111111
- **Free Tier:** Includes access to free models for standard tasks.
112112
- **Pro Tier:** Unlocks concurrent agent execution and priority queueing.
113113

114-
There's a [whole page about credits](/roo-code-cloud/credits) if you want to learn more.
114+
There's a [whole page about credits](/roo-code-cloud/billing-subscriptions) if you want to learn more.
115115

116116
### Settings
117117

docs/update-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ If you want to live on the edge and try things out before it's released, we have
2424

2525
### Version 3.36
2626

27+
* [3.36.5](/update-notes/v3.36.5) (2025-12-11)
2728
* [3.36.4](/update-notes/v3.36.4) (2025-12-10)
2829
* [3.36.3](/update-notes/v3.36.3) (2025-12-10)
2930
* [3.36.2](/update-notes/v3.36.2) (2025-12-05)

docs/update-notes/v3.36.5.mdx

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
description: GPT-5.2 support, configurable Enter key behavior, Gemini stability fixes, and provider updates.
3+
keywords:
4+
- roo code 3.36.5
5+
- gpt-5.2
6+
- enter key behavior
7+
- gemini fixes
8+
image: /img/v3.36.5/v3.36.5.png
9+
---
10+
11+
# Roo Code 3.36.5 Release Notes (2025-12-11)
12+
13+
This release adds GPT-5.2 model support, a toggle to configure Enter key behavior in chat, and several bug fixes.
14+
15+
<img src="/img/v3.36.5/v3.36.5.png" alt="Roo Code v3.36.5 Release" width="600" />
16+
17+
## GPT-5.2 Model Support
18+
19+
GPT-5.2 is now available and set as the default model for the OpenAI provider ([#10024](https://github.com/RooCodeInc/Roo-Code/pull/10024)):
20+
21+
- 400K context window
22+
- 128K max output tokens
23+
- Configurable reasoning levels (none, low, medium, high, xhigh)
24+
- 24-hour prompt cache retention
25+
26+
## Enter Key Behavior Toggle
27+
28+
New setting to configure how Enter works in chat input (thanks lmtr0!) ([#10002](https://github.com/RooCodeInc/Roo-Code/pull/10002)):
29+
30+
- **Default**: Enter sends, Shift+Enter for newline
31+
- **Alternative**: Enter for newline, Ctrl/Cmd+Enter sends
32+
33+
Find it in **Settings > UI > Enter Key Behavior**. Useful for multiline prompts and CJK input methods where Enter confirms character composition.
34+
35+
## Bug Fixes
36+
37+
* **Gemini**: Fixed reasoning loops and empty response errors ([#10007](https://github.com/RooCodeInc/Roo-Code/pull/10007))
38+
39+
* **API errors**: Fixed "Expected toolResult blocks at messages" errors during parallel tool execution ([#10015](https://github.com/RooCodeInc/Roo-Code/pull/10015))
40+
41+
* **API errors**: Fixed `ToolResultIdMismatchError` when conversation history has orphaned tool_result blocks ([#10027](https://github.com/RooCodeInc/Roo-Code/pull/10027))
42+
43+
## Provider Updates
44+
45+
* **Z.ai**: Added API endpoint options for users on API billing instead of Coding plan (thanks richtong!) ([#9894](https://github.com/RooCodeInc/Roo-Code/pull/9894))
46+
47+
## Misc Improvements
48+
49+
* Removed deprecated `list_code_definition_names` tool ([#10005](https://github.com/RooCodeInc/Roo-Code/pull/10005))

sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ const sidebars: SidebarsConfig = {
180180
type: 'category',
181181
label: '3.36',
182182
items: [
183+
{ type: 'doc', id: 'update-notes/v3.36.5', label: '3.36.5' },
183184
{ type: 'doc', id: 'update-notes/v3.36.4', label: '3.36.4' },
184185
{ type: 'doc', id: 'update-notes/v3.36.3', label: '3.36.3' },
185186
{ type: 'doc', id: 'update-notes/v3.36.2', label: '3.36.2' },

src/css/custom.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,9 @@ div[style*="min-height:100vh"] {
349349
.video-title {
350350
font-weight: 500;
351351
color: var(--ifm-heading-color);
352-
display: box;
353-
line-clamp: 2;
354-
box-orient: vertical;
352+
display: -webkit-box;
353+
-webkit-line-clamp: 2;
354+
-webkit-box-orient: vertical;
355355
overflow: hidden;
356356
line-height: 1.4;
357357
max-height: 2.8em; /* 2 lines * 1.4 line-height */

static/img/v3.36.5/v3.36.5.png

1.17 MB
Loading

0 commit comments

Comments
 (0)