Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions docs/update-notes/index.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
- [3.15](/update-notes/v3.15) (2025-04-30)
* [3.15.2](/update-notes/v3.15.2) (2025-05-02)
* [3.15.1](/update-notes/v3.15.1) (2025-04-30)
* [3.15.0](/update-notes/v3.15.0) (2025-04-30)
# Update Notes

This section contains notes about recent updates to Roo Code, listed by version number.

## Version 3.15

* [3.15](/update-notes/v3.15) (2025-05-05)
* [3.15.5](/update-notes/v3.15.5) (2025-05-05)
* [3.15.4](/update-notes/v3.15.4) (2025-05-04)
* [3.15.3](/update-notes/v3.15.3) (2025-05-02)
* [3.15.2](/update-notes/v3.15.2) (2025-05-02)
* [3.15.1](/update-notes/v3.15.1) (2025-04-30)
* [3.15.0](/update-notes/v3.15.0) (2025-04-30)

## Version 3.14

* [3.14](/update-notes/v3.14) (2025-04-24)
Expand Down
13 changes: 13 additions & 0 deletions docs/update-notes/v3.15.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Roo Code 3.15.3 Release Notes (2025-05-02)

This release includes terminal fixes and performance improvements.

## Bug Fixes

* Terminal: Fix empty command bug.
* Terminal: More robust process killing.

## Misc Improvements

* Optimize Gemini prompt caching for OpenRouter.
* Chat view performance improvements.
11 changes: 11 additions & 0 deletions docs/update-notes/v3.15.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Roo Code 3.15.4 Release Notes (2025-05-04)

This release fixes a critical hang issue and improves caching.

## Bug Fixes

* Fix a nasty bug that would cause Roo Code to hang, particularly in orchestrator mode.

## Misc Improvements

* Improve Gemini caching efficiency.
11 changes: 11 additions & 0 deletions docs/update-notes/v3.15.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Roo Code 3.15.5 Release Notes (2025-05-05)

This release updates the Google GenAI provider and improves rendering performance.

## Provider Updates

* Update `@google/genai` to `0.12` (includes some streaming completion bug fixes).

## QOL Improvements

* Rendering performance improvements for code blocks in chat (thanks KJ7LNW!).
12 changes: 10 additions & 2 deletions docs/update-notes/v3.15.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Roo Code 3.15 Release Notes (2025-05-02)
# Roo Code 3.15 Release Notes (2025-05-05)

This release introduces prompt caching for Google Vertex, improved terminal command handling, UI/UX enhancements, provider updates, and several other improvements and bug fixes.
This release introduces prompt caching for Google Vertex, improved terminal command handling, UI/UX enhancements, provider updates, performance improvements, and several other improvements and bug fixes across versions 3.15.0 to 3.15.5.

## Prompt Caching for Google Vertex

Expand Down Expand Up @@ -47,9 +47,13 @@ This release introduces prompt caching for Google Vertex, improved terminal comm
* Improved the reliability of stopping terminal commands.
* Refined inline code styling in chat for better readability (thanks dicharkan!).
* Clarified tool group display in the Modes view when no tool groups are present.
* Rendering performance improvements for code blocks in chat (thanks KJ7LNW!).

## Bug Fixes

* Fix a nasty bug that would cause Roo Code to hang, particularly in orchestrator mode.
* Terminal: Fix empty command bug.
* Terminal: More robust process killing.
* Made retries respect the global auto-approve checkbox.
* Fixed a selection mode bug in the history view (thanks jr!).
* Fixed file mentions for filenames containing spaces.
Expand All @@ -61,7 +65,11 @@ This release introduces prompt caching for Google Vertex, improved terminal comm
* Added a reasoning effort setting for OpenAI Compatible providers (thanks mr-ryan-james).
* Added support for custom API base URLs for OpenAI/OpenAI Compatible providers (thanks gongzhongqiang!).
* Added support for custom headers for OpenAI Compatible providers.
* Update `@google/genai` to `0.12` (includes some streaming completion bug fixes).
* Improve Gemini caching efficiency.
* Optimize Gemini prompt caching for OpenRouter.

## Misc Improvements

* Chat view performance improvements.
* Removed unused types (thanks wkordalski).
5 changes: 4 additions & 1 deletion sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,10 @@ const sidebars: SidebarsConfig = {
label: '3.15',
items: [
{ type: 'doc', id: 'update-notes/v3.15', label: '3.15 Combined' },
{ type: 'doc', id: 'update-notes/v3.15.2', label: '3.15.2' },
{ type: 'doc', id: 'update-notes/v3.15.5', label: '3.15.5' },
{ type: 'doc', id: 'update-notes/v3.15.4', label: '3.15.4' },
{ type: 'doc', id: 'update-notes/v3.15.3', label: '3.15.3' },
{ type: 'doc', id: 'update-notes/v3.15.2', label: '3.15.2' },
{ type: 'doc', id: 'update-notes/v3.15.1', label: '3.15.1' },
{ type: 'doc', id: 'update-notes/v3.15.0', label: '3.15.0' },
],
Expand Down