Skip to content

Commit 6571b2b

Browse files
docs: add release notes for v3.36.1 and v3.36.2 (#440)
1 parent 3a35c34 commit 6571b2b

File tree

6 files changed

+72
-0
lines changed

6 files changed

+72
-0
lines changed

docs/update-notes/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ image: /img/social-share.jpg
1919

2020
### Version 3.36
2121

22+
* [3.36.2](/update-notes/v3.36.2) (2025-12-05)
23+
* [3.36.1](/update-notes/v3.36.1) (2025-12-04)
2224
* [3.36.0](/update-notes/v3.36.0) (2025-12-04)
2325

2426
---

docs/update-notes/v3.36.1.mdx

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
description: Message management improvements, GPT-5.1 Codex Max support, symlink support for slash commands, and stability fixes.
3+
keywords:
4+
- roo code 3.36.1
5+
- gpt-5.1 codex max
6+
- slash commands symlinks
7+
- message management
8+
- bug fixes
9+
image: /img/v3.36.1/v3.36.1.png
10+
---
11+
12+
# Roo Code 3.36.1 Release Notes (2025-12-04)
13+
14+
This release adds GPT-5.1 Codex Max support, enables symlinks for slash commands, improves message management with better checkpoint restore, and fixes several stability issues.
15+
16+
<img src="/img/v3.36.1/v3.36.1.png" alt="Roo Code v3.36.1 Release" width="600" />
17+
18+
## GPT-5.1 Codex Max Support
19+
20+
Roo Code now supports GPT-5.1 Codex Max ([#9848](https://github.com/RooCodeInc/Roo-Code/pull/9848)), OpenAI's most intelligent coding model optimized for long-horizon, agentic coding tasks. This release also adds model defaults for gpt-5.1, gpt-5, and gpt-5-mini variants with optimized configurations.
21+
22+
> **📚 Documentation**: See [OpenAI Provider](/providers/openai) for configuration details.
23+
24+
## QOL Improvements
25+
26+
* **Symlink support for slash commands**: Share and organize commands across projects using symlinks for individual files or directories, with command names derived from symlink names for easy aliasing ([#9838](https://github.com/RooCodeInc/Roo-Code/pull/9838))
27+
* **Smoother chat scroll**: Chat view maintains scroll position more reliably during streaming, eliminating disruptive jumps ([#8999](https://github.com/RooCodeInc/Roo-Code/pull/8999))
28+
* **Improved error messages**: Clearer, more actionable error messages with proper attribution and direct links to documentation ([#9777](https://github.com/RooCodeInc/Roo-Code/pull/9777))
29+
30+
## Bug Fixes
31+
32+
* **Extension freeze prevention**: The extension no longer freezes when a model attempts to call a non-existent tool (thanks daniel-lxs!) ([#9834](https://github.com/RooCodeInc/Roo-Code/pull/9834))
33+
* **Checkpoint restore reliability**: MessageManager layer ensures consistent message history handling across all rewind operations ([#9842](https://github.com/RooCodeInc/Roo-Code/pull/9842))
34+
* **Context truncation fix**: Prevent cascading truncation loops by only truncating visible messages ([#9844](https://github.com/RooCodeInc/Roo-Code/pull/9844))
35+
* **Reasoning models**: Models that require reasoning now always receive valid reasoning effort values ([#9836](https://github.com/RooCodeInc/Roo-Code/pull/9836))
36+
* **Terminal input handling**: Inline terminal no longer hangs when commands require user input ([#9827](https://github.com/RooCodeInc/Roo-Code/pull/9827))
37+
* **Large file safety**: Safer large file reads with proper token budget accounting for model output ([#9843](https://github.com/RooCodeInc/Roo-Code/pull/9843))
38+
* **Follow-up button styling**: Fixed overly rounded corners on follow-up question suggestions ([#9829](https://github.com/RooCodeInc/Roo-Code/pull/9829))
39+
40+
## Misc Improvements
41+
42+
* **Evals UI enhancements**: Added filtering by timeframe/model/provider, bulk delete actions, tool column consolidation, and run notes ([#9837](https://github.com/RooCodeInc/Roo-Code/pull/9837))
43+
* **Multi-model evals launch**: Launch identical test runs across multiple models with automatic staggering ([#9845](https://github.com/RooCodeInc/Roo-Code/pull/9845))
44+
* **New pricing page**: Updated website pricing page with clearer feature explanations ([#9821](https://github.com/RooCodeInc/Roo-Code/pull/9821))

docs/update-notes/v3.36.2.mdx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
description: Dynamic API settings for Roo models, optimized GPT-5 tool configuration, and Chutes provider fix.
3+
keywords:
4+
- roo code 3.36.2
5+
- dynamic settings
6+
- gpt-5 apply_patch
7+
- chutes provider
8+
image: /img/v3.36.2/v3.36.2.png
9+
---
10+
11+
# Roo Code 3.36.2 Release Notes (2025-12-05)
12+
13+
This release adds dynamic API settings support for Roo models, optimizes GPT-5 model configurations, and fixes Chutes provider model fetching.
14+
15+
<img src="/img/v3.36.2/v3.36.2.png" alt="Roo Code v3.36.2 Release" width="600" />
16+
17+
## Provider Updates
18+
19+
* **Dynamic model settings**: Roo models now receive configuration dynamically from the API, enabling faster iteration on model-specific settings without extension updates ([#9852](https://github.com/RooCodeInc/Roo-Code/pull/9852))
20+
* **Optimized GPT-5 tool configuration**: GPT-5.x, GPT-5.1.x, and GPT-4.1 models now use only the `apply_patch` tool for file editing, improving code editing performance ([#9853](https://github.com/RooCodeInc/Roo-Code/pull/9853))
21+
22+
## Bug Fixes
23+
24+
* **Chutes provider fix**: Resolved model fetching errors for the Chutes provider by making schema validation more robust for optional fields ([#9854](https://github.com/RooCodeInc/Roo-Code/pull/9854))

sidebars.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,8 @@ const sidebars: SidebarsConfig = {
223223
type: 'category',
224224
label: '3.36',
225225
items: [
226+
{ type: 'doc', id: 'update-notes/v3.36.2', label: '3.36.2' },
227+
{ type: 'doc', id: 'update-notes/v3.36.1', label: '3.36.1' },
226228
{ type: 'doc', id: 'update-notes/v3.36.0', label: '3.36.0' },
227229
],
228230
},

static/img/v3.36.1/v3.36.1.png

2.27 MB
Loading

static/img/v3.36.2/v3.36.2.png

1.24 MB
Loading

0 commit comments

Comments
 (0)