Skip to content

Commit c2ab3af

Browse files
docs: Update release notes for versions 3.15.3, 3.15.4, and 3.15.5; adjust sidebar entries (#170)
1 parent 60e43a1 commit c2ab3af

File tree

6 files changed

+59
-7
lines changed

6 files changed

+59
-7
lines changed

docs/update-notes/index.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
- [3.15](/update-notes/v3.15) (2025-04-30)
2-
* [3.15.2](/update-notes/v3.15.2) (2025-05-02)
3-
* [3.15.1](/update-notes/v3.15.1) (2025-04-30)
4-
* [3.15.0](/update-notes/v3.15.0) (2025-04-30)
51
# Update Notes
62

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

5+
## Version 3.15
6+
7+
* [3.15](/update-notes/v3.15) (2025-05-05)
8+
* [3.15.5](/update-notes/v3.15.5) (2025-05-05)
9+
* [3.15.4](/update-notes/v3.15.4) (2025-05-04)
10+
* [3.15.3](/update-notes/v3.15.3) (2025-05-02)
11+
* [3.15.2](/update-notes/v3.15.2) (2025-05-02)
12+
* [3.15.1](/update-notes/v3.15.1) (2025-04-30)
13+
* [3.15.0](/update-notes/v3.15.0) (2025-04-30)
14+
915
## Version 3.14
1016

1117
* [3.14](/update-notes/v3.14) (2025-04-24)

docs/update-notes/v3.15.3.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Roo Code 3.15.3 Release Notes (2025-05-02)
2+
3+
This release includes terminal fixes and performance improvements.
4+
5+
## Bug Fixes
6+
7+
* Terminal: Fix empty command bug.
8+
* Terminal: More robust process killing.
9+
10+
## Misc Improvements
11+
12+
* Optimize Gemini prompt caching for OpenRouter.
13+
* Chat view performance improvements.

docs/update-notes/v3.15.4.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Roo Code 3.15.4 Release Notes (2025-05-04)
2+
3+
This release fixes a critical hang issue and improves caching.
4+
5+
## Bug Fixes
6+
7+
* Fix a nasty bug that would cause Roo Code to hang, particularly in orchestrator mode.
8+
9+
## Misc Improvements
10+
11+
* Improve Gemini caching efficiency.

docs/update-notes/v3.15.5.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Roo Code 3.15.5 Release Notes (2025-05-05)
2+
3+
This release updates the Google GenAI provider and improves rendering performance.
4+
5+
## Provider Updates
6+
7+
* Update `@google/genai` to `0.12` (includes some streaming completion bug fixes).
8+
9+
## QOL Improvements
10+
11+
* Rendering performance improvements for code blocks in chat (thanks KJ7LNW!).

docs/update-notes/v3.15.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Roo Code 3.15 Release Notes (2025-05-02)
1+
# Roo Code 3.15 Release Notes (2025-05-05)
22

3-
This release introduces prompt caching for Google Vertex, improved terminal command handling, UI/UX enhancements, provider updates, and several other improvements and bug fixes.
3+
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.
44

55
## Prompt Caching for Google Vertex
66

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

5152
## Bug Fixes
5253

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

6572
## Misc Improvements
6673

74+
* Chat view performance improvements.
6775
* Removed unused types (thanks wkordalski).

sidebars.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,10 @@ const sidebars: SidebarsConfig = {
171171
label: '3.15',
172172
items: [
173173
{ type: 'doc', id: 'update-notes/v3.15', label: '3.15 Combined' },
174-
{ type: 'doc', id: 'update-notes/v3.15.2', label: '3.15.2' },
174+
{ type: 'doc', id: 'update-notes/v3.15.5', label: '3.15.5' },
175+
{ type: 'doc', id: 'update-notes/v3.15.4', label: '3.15.4' },
176+
{ type: 'doc', id: 'update-notes/v3.15.3', label: '3.15.3' },
177+
{ type: 'doc', id: 'update-notes/v3.15.2', label: '3.15.2' },
175178
{ type: 'doc', id: 'update-notes/v3.15.1', label: '3.15.1' },
176179
{ type: 'doc', id: 'update-notes/v3.15.0', label: '3.15.0' },
177180
],

0 commit comments

Comments
 (0)