Skip to content

Commit 2d9d5b1

Browse files
docs: add v3.36.14 release notes (#464)
1 parent 13ca67a commit 2d9d5b1

File tree

5 files changed

+33
-0
lines changed

5 files changed

+33
-0
lines changed

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.14](/update-notes/v3.36.14) (2025-12-18)
2728
* [3.36.13](/update-notes/v3.36.13) (2025-12-18)
2829
* [3.36.12](/update-notes/v3.36.12) (2025-12-18)
2930
* [3.36.11](/update-notes/v3.36.11) (2025-12-17)

docs/update-notes/v3.36.14.mdx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
description: Native tool calling for Claude models on Vertex AI, improved error handling with grace retry, and MCP compatibility fixes for OpenAI providers.
3+
keywords:
4+
- roo code 3.36.14
5+
- vertex ai
6+
- native tool calling
7+
- error handling
8+
- mcp compatibility
9+
image: /img/v3.36.14/v3.36.14.png
10+
---
11+
12+
# Roo Code v3.36.14 Release Notes (2025-12-18)
13+
14+
This release adds native tool calling for Claude models on Vertex AI, improves error handling with a grace retry mechanism, and fixes MCP compatibility with OpenAI providers.
15+
16+
<img src="/img/v3.36.14/v3.36.14.png" alt="Roo Code v3.36.14 Release" width="600" />
17+
18+
## Provider Updates
19+
20+
* **Native Tool Calling for Claude on Vertex AI**: All Claude models on Vertex AI now use native tool calling by default, matching the behavior of direct Anthropic API access ([#10197](https://github.com/RooCodeInc/Roo-Code/pull/10197))
21+
22+
## QOL Improvements
23+
24+
* **Grace Retry for Tool Errors**: When models fail to use tools, Roo Code now silently retries before showing errors. Clearer "Model Response Incomplete" messages appear only after consecutive failures ([#10196](https://github.com/RooCodeInc/Roo-Code/pull/10196))
25+
26+
## Bug Fixes
27+
28+
* **MCP Compatibility with OpenAI Providers**: Fixes an issue where MCP servers using `format: "uri"` in their tool schemas would fail with OpenAI providers ([#10198](https://github.com/RooCodeInc/Roo-Code/pull/10198))

docs/update-notes/v3.36.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ Models that support native tool calling now default to using native protocol ins
7676
* **Improved File Editing with Gemini Models**: New edit_file tool makes Gemini models more effective at editing files ([#9983](https://github.com/RooCodeInc/Roo-Code/pull/9983))
7777
* **VS Code LM Native Tools**: Native tool calling now works with VS Code's built-in Copilot models ([#10191](https://github.com/RooCodeInc/Roo-Code/pull/10191))
7878
* **Smarter Tool Defaults for Gemini and OpenAI**: Gemini and OpenAI models now use better default tools for file editing, improving reliability out of the box. ([#10170](https://github.com/RooCodeInc/Roo-Code/pull/10170))
79+
* **Grace Retry for Tool Errors**: When models fail to use tools, Roo Code now silently retries before showing errors. Clearer "Model Response Incomplete" messages appear only after consecutive failures ([#10196](https://github.com/RooCodeInc/Roo-Code/pull/10196))
7980

8081
## Bug Fixes
8182

@@ -130,6 +131,7 @@ Models that support native tool calling now default to using native protocol ins
130131
* **LiteLLM Tool Protocol Dropdown**: The Native/XML protocol selector now appears correctly for LiteLLM models ([#10187](https://github.com/RooCodeInc/Roo-Code/pull/10187))
131132
* **Task Resumption**: Tasks no longer break when resuming after changing the Native Tool Calling setting ([#10192](https://github.com/RooCodeInc/Roo-Code/pull/10192))
132133
* **Bedrock Embedder CloudTrail Fix**: AWS Bedrock users now see Roo Code identified in CloudTrail logs when using Codebase Indexing. (thanks jackrein!) ([#10166](https://github.com/RooCodeInc/Roo-Code/pull/10166))
134+
* **MCP Compatibility with OpenAI Providers**: Fixes an issue where MCP servers using `format: "uri"` in their tool schemas would fail with OpenAI providers ([#10198](https://github.com/RooCodeInc/Roo-Code/pull/10198))
133135

134136
## Misc Improvements
135137

@@ -182,3 +184,4 @@ Models that support native tool calling now default to using native protocol ins
182184
* **Z.ai Native Tool Calling**: Z.ai models (GLM-4.5 series, GLM-4.6, etc.) now use native tool calling by default ([#10158](https://github.com/RooCodeInc/Roo-Code/pull/10158))
183185
* **OpenAI Compatible Native Tools**: OpenAI Compatible providers now use native tool calling by default ([#10159](https://github.com/RooCodeInc/Roo-Code/pull/10159))
184186
* **AWS GovCloud and China Region Support**: Users in AWS GovCloud and China regions can now use custom ARNs with the Bedrock provider (thanks wisestmumbler!) ([#10157](https://github.com/RooCodeInc/Roo-Code/pull/10157))
187+
* **Native Tool Calling for Claude on Vertex AI**: All Claude models on Vertex AI now use native tool calling by default, matching the behavior of direct Anthropic API access ([#10197](https://github.com/RooCodeInc/Roo-Code/pull/10197))

sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ const sidebars: SidebarsConfig = {
173173
label: '3.36',
174174
items: [
175175
{ type: 'doc', id: 'update-notes/v3.36', label: '3.36 Combined' },
176+
{ type: 'doc', id: 'update-notes/v3.36.14', label: '3.36.14' },
176177
{ type: 'doc', id: 'update-notes/v3.36.13', label: '3.36.13' },
177178
{ type: 'doc', id: 'update-notes/v3.36.12', label: '3.36.12' },
178179
{ type: 'doc', id: 'update-notes/v3.36.11', label: '3.36.11' },

static/img/v3.36.14/v3.36.14.png

1.11 MB
Loading

0 commit comments

Comments
 (0)