You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: This release fixes critical command parsing issues and improves error handling with better UI resilience.
3
+
keywords:
4
+
- roo code 3.23.18
5
+
- bash command fixes
6
+
- error handling
7
+
- todo list fix
8
+
image: /img/social-share.jpg
9
+
---
10
+
11
+
# Roo Code 3.23.18 Release Notes (2025-01-24)
12
+
13
+
This release fixes critical command parsing issues and improves error handling with better UI resilience.
14
+
15
+
## Bug Fixes
16
+
17
+
***Command Parsing**: Fixed crashes when running complex bash commands with special syntax like BASH_REMATCH arrays. Users can now create and use GitHub CLI aliases with advanced bash features (thanks daniel-lxs, KJ7LNW!) ([#5743](https://github.com/RooCodeInc/Roo-Code/pull/5743))
18
+
***Error Handling**: Added ErrorBoundary component that prevents the entire UI from crashing. Instead of showing a blank screen, errors now display helpful messages with stack traces (thanks KJ7LNW, elianiva, wolverin0!) ([#5085](https://github.com/RooCodeInc/Roo-Code/pull/5085))
19
+
***Todo List**: Fixed the todo list toggle feature so users can properly enable or disable automatic todo list tracking in their tasks (thanks chrarnoldus!) ([#6103](https://github.com/RooCodeInc/Roo-Code/pull/6103))
20
+
21
+
## Misc Improvements
22
+
23
+
***Command Timeouts**: Improved reliability when terminating unresponsive commands - processes that timeout are now forcefully terminated with SIGKILL, preventing hanging operations ([#6071](https://github.com/RooCodeInc/Roo-Code/pull/6071))
description: This release introduces Roo Code Cloud waitlist access and improves command handling with smarter validation.
3
+
keywords:
4
+
- roo code 3.23.19
5
+
- roo code cloud
6
+
- command handling
7
+
- auto-deny improvements
8
+
image: /img/social-share.jpg
9
+
---
10
+
11
+
# Roo Code 3.23.19 Release Notes (2025-01-24)
12
+
13
+
This release introduces Roo Code Cloud waitlist access and improves command handling with smarter validation.
14
+
15
+
## Roo Code Cloud Waitlist
16
+
17
+
We're excited to announce early access to Roo Code Cloud! You can now join the waitlist directly from Roo Code (thanks brunobergher!) ([#6104](https://github.com/RooCodeInc/Roo-Code/pull/6104)):
18
+
19
+
-**Easy Discovery**: Prominent call-to-action buttons appear in the website header and extension interface (for users with 3+ tasks).
20
+
-**Quick Signup**: Join the waitlist with just a click to get early access to cloud features.
21
+
-**Seamless Integration**: The waitlist CTAs are thoughtfully placed to be helpful without being intrusive.
22
+
23
+
Get ready for the future of cloud-powered AI coding assistance!
24
+
25
+
## QOL Improvements
26
+
27
+
***Command Parsing**: Multi-line commands are now properly parsed as separate commands, making it easier to work with scripts or multi-step command sequences ([#6121](https://github.com/RooCodeInc/Roo-Code/pull/6121))
28
+
***Smarter Auto-Deny**: Commands with subshells are now more intelligently validated - they're only auto-denied if they contain denied prefixes, reducing false denials and making command execution more flexible ([#6123](https://github.com/RooCodeInc/Roo-Code/pull/6123))
Copy file name to clipboardExpand all lines: docs/update-notes/v3.23.mdx
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ import Codicon from '@site/src/components/Codicon';
14
14
15
15
# Roo Code 3.23 Release Notes
16
16
17
-
This release graduates codebase indexing to a stable feature, introduces a powerful new todo list for managing complex tasks, and includes critical performance improvements and bug fixes!
17
+
This release graduates codebase indexing to a stable feature, introduces a powerful new todo list for managing complex tasks, adds Roo Code Cloud waitlist access, and includes critical performance improvements and bug fixes!
18
18
19
19
## Codebase Indexing: Always On, Always Ready
20
20
@@ -42,6 +42,16 @@ We've added the ability to automatically reject unwanted commands in your workfl
42
42
43
43
This gives you better control over command execution in automated workflows.
44
44
45
+
## Roo Code Cloud Waitlist
46
+
47
+
We're excited to announce early access to Roo Code Cloud! You can now join the waitlist directly from Roo Code (thanks brunobergher!):
48
+
49
+
-**Easy Discovery**: Prominent call-to-action buttons appear in the website header and extension interface (for users with 3+ tasks).
50
+
-**Quick Signup**: Join the waitlist with just a click to get early access to cloud features.
51
+
-**Seamless Integration**: The waitlist CTAs are thoughtfully placed to be helpful without being intrusive.
52
+
53
+
Get ready for the future of cloud-powered AI coding assistance!
54
+
45
55
## Windows Support for Claude Code
46
56
47
57
We've added native Windows support for the Claude Code provider (thanks SannidhyaSah, kwk9892!) ([#5615](https://github.com/RooCodeInc/Roo-Code/pull/5615)):
@@ -104,6 +114,8 @@ We've added native Windows support for the Claude Code provider (thanks Sannidhy
104
114
-**MCP Content Optimization**: Automatically omits MCP-related prompts when no servers are configured
105
115
-**Git Installation Check**: Shows clear warning with download link when Git is not installed for checkpoints feature (thanks MuriloFP!)
106
116
-**Configurable Eval Timeouts**: Added slider to set evaluation timeouts between 5-10 minutes
117
+
-**Command Parsing**: Multi-line commands are now properly parsed as separate commands, making it easier to work with scripts or multi-step command sequences
118
+
-**Smarter Auto-Deny**: Commands with subshells are now more intelligently validated - they're only auto-denied if they contain denied prefixes, reducing false denials and making command execution more flexible
107
119
108
120
## Bug Fixes
109
121
@@ -150,6 +162,9 @@ We've added native Windows support for the Claude Code provider (thanks Sannidhy
150
162
-**Vitest Command**: Added missing run parameter to prevent tests hanging in watch mode (thanks KJ7LNW!)
151
163
-**Evaluation System**: Fixed evaluation timeout handling that was broken in a previous update
152
164
-**Cloud Session Handling**: Improved session error handling to prevent unnecessary logouts during service issues
165
+
-**Command Parsing**: Fixed crashes when running complex bash commands with special syntax like BASH_REMATCH arrays. Users can now create and use GitHub CLI aliases with advanced bash features (thanks daniel-lxs, KJ7LNW!)
166
+
-**Error Handling**: Added ErrorBoundary component that prevents the entire UI from crashing. Instead of showing a blank screen, errors now display helpful messages with stack traces (thanks KJ7LNW, elianiva, wolverin0!)
167
+
-**Todo List**: Fixed the todo list toggle feature so users can properly enable or disable automatic todo list tracking in their tasks (thanks chrarnoldus!)
153
168
154
169
## Provider Updates
155
170
@@ -184,6 +199,7 @@ We've added native Windows support for the Claude Code provider (thanks Sannidhy
184
199
-**Merge Resolver Mode**: Added intelligent merge conflict resolution mode that analyzes commit history to make smart decisions about which changes to keep (thanks daniel-lxs!)
185
200
-**Token Fallback Logic**: Improved sliding window with consistent 8192 token fallback for more predictable context handling
186
201
-**Todo List Clarification**: Updated documentation to clarify that todo list tool is for complicated tasks, not just multi-step ones
202
+
-**Command Timeouts**: Improved reliability when terminating unresponsive commands - processes that timeout are now forcefully terminated with SIGKILL, preventing hanging operations
0 commit comments