Skip to content

Commit 9a87d95

Browse files
feat: add release notes for version 3.28.12 with bug fixes for Anthro… (#375)
* feat: add release notes for version 3.28.12 with bug fixes for Anthropic Sonnet 4.5 model ID and Bedrock 1M context checkbox * feat: add release notes for version 3.28.13 with bug fixes for Vertex AI and AWS Bedrock * Refactor code structure for improved readability and maintainability
1 parent 3087839 commit 9a87d95

File tree

7 files changed

+78
-0
lines changed

7 files changed

+78
-0
lines changed

docs/update-notes/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ image: /img/social-share.jpg
2020
### Version 3.28
2121

2222
* [3.28](/update-notes/v3.28) (Combined)
23+
* [3.28.14](/update-notes/v3.28.14) (2025-09-30)
24+
* [3.28.13](/update-notes/v3.28.13) (2025-09-29)
25+
* [3.28.12](/update-notes/v3.28.12) (2025-09-29)
2326
* [3.28.11](/update-notes/v3.28.11) (2025-09-29)
2427
* [3.28.10](/update-notes/v3.28.10) (2025-09-29)
2528
* [3.28.9](/update-notes/v3.28.9) (2025-09-26)

docs/update-notes/v3.28.12.mdx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
description: Fixes Anthropic Sonnet 4.5 model ID and adds Bedrock 1M context checkbox.
3+
keywords:
4+
- roo code 3.28.12
5+
- anthropic sonnet 4.5
6+
- bedrock 1m context
7+
- bug fixes
8+
image: /img/social-share.jpg
9+
---
10+
11+
# Roo Code 3.28.12 Release Notes (2025-09-29)
12+
13+
This release fixes the Anthropic Sonnet 4.5 model ID and adds Bedrock 1M context checkbox support.
14+
15+
## Bug Fixes
16+
17+
* **Anthropic Sonnet 4.5 Model ID**: Corrects the model ID to the official `claude-sonnet-4-5`, resolving API errors when using Claude Sonnet 4.5 ([#8384](https://github.com/RooCodeInc/Roo-Code/pull/8384))
18+
19+
## QOL Improvements
20+
21+
* **Bedrock 1M Context Checkbox**: Adds checkbox to enable 1M context window support for Claude Sonnet 4 and 4.5 on Bedrock, providing more flexibility for large-scale projects ([#8384](https://github.com/RooCodeInc/Roo-Code/pull/8384))

docs/update-notes/v3.28.13.mdx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
description: Fixes Vertex AI Sonnet 4.5 configuration and removes AWS Bedrock topP to improve reliability.
3+
keywords:
4+
- roo code 3.28.13
5+
- new features
6+
- bug fixes
7+
image: /img/social-share.jpg
8+
---
9+
10+
# Roo Code 3.28.13 Release Notes (2025-09-29)
11+
12+
This patch improves provider reliability: Vertex AI Sonnet 4.5 now works with the correct model ID and AWS Bedrock requests avoid conflicts by removing topP.
13+
14+
15+
## Bug Fixes
16+
17+
* Vertex AI: Fix Sonnet 4.5 model configuration so requests no longer 404; sets the correct default ID and enables computer‑use via LiteLLM (thanks nickcatal!) ([#8391](https://github.com/RooCodeInc/Roo-Code/pull/8391))
18+
* AWS Bedrock: Remove topP parameter to avoid conflicts with extended thinking, improving reliability for streaming and non‑streaming responses (thanks ronyblum!) ([#8388](https://github.com/RooCodeInc/Roo-Code/pull/8388))

docs/update-notes/v3.28.14.mdx

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
description: Adds GLM-4.6 support for the z.ai provider with a 200k context window and availability across international and mainland APIs.
3+
keywords:
4+
- roo code 3.28.14
5+
- new features
6+
- bug fixes
7+
image: /img/v3.28.14/v3.28.14.png
8+
---
9+
10+
# Roo Code 3.28.14 Release Notes (2025-09-30)
11+
12+
This patch adds GLM-4.6 support for the z.ai provider, enabling a 200k context window and availability across both international and mainland APIs.
13+
14+
<img src="/img/v3.28.14/v3.28.14.png" alt="Roo Code v3.28.14 Release" width="600" />
15+
16+
## Provider Updates
17+
18+
### GLM‑4.6 on Z.ai
19+
20+
We’ve added the GLM‑4.6 model to the Z.ai provider (thanks dmarkey!) ([#8408](https://github.com/RooCodeInc/Roo-Code/pull/8408)). What you get:
21+
22+
- 200k (204,800) token context window for longer files and multi‑turn conversations
23+
- Better real‑world coding performance, including cleaner front‑end output
24+
- Improved reasoning with tool‑use support for steadier multi‑step tasks
25+
- Stronger agent behavior for search/tool workflows
26+
27+
To use it, select GLM‑4.6 under the Z.ai provider in Settings.

docs/update-notes/v3.28.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ This gives teams a higher-capacity OpenAI option without extra configuration.[#8
9797
* **Welcome screen Roo provider experiment**: Surfaces the Roo provider on the welcome screen (localized, with click telemetry) to speed up setup. ([#8317](https://github.com/RooCodeInc/Roo-Code/pull/8317))
9898
* **Cleaner prompts (no “thinking” tags)**: Removes `<thinking>` tags for cleaner output, fewer tokens, and better model compatibility; preserves the plain‑language rule to confirm tool success. ([#8319](https://github.com/RooCodeInc/Roo-Code/pull/8319))
9999
* **Simpler Requesty model refresh**: Removes an unnecessary warning when refreshing the Requesty models list so you can fetch new policies without leaving the screen. ([#7710](https://github.com/RooCodeInc/Roo-Code/pull/7710))
100+
* **Bedrock 1M Context Checkbox**: Adds checkbox to enable 1M context window support for Claude Sonnet 4 and 4.5 on Bedrock, providing more flexibility for large-scale projects ([#8384](https://github.com/RooCodeInc/Roo-Code/pull/8384))
100101

101102
## Bug Fixes
102103

@@ -133,6 +134,10 @@ This gives teams a higher-capacity OpenAI option without extra configuration.[#8
133134

134135

135136
* **Tool‑use guidance clarity**: Clarifies the retry suggestion so the model selects the correct file‑reading step during apply‑diff retries, reducing failed file edits. ([#8315](https://github.com/RooCodeInc/Roo-Code/pull/8315))
137+
* **Anthropic Sonnet 4.5 Model ID**: Corrects the model ID to the official `claude-sonnet-4-5`, resolving API errors when using Claude Sonnet 4.5 ([#8384](https://github.com/RooCodeInc/Roo-Code/pull/8384))
138+
139+
* **AWS Bedrock**: Removed `topP` parameter to avoid conflicts with extended thinking, improving reliability for streaming and non‑streaming responses (thanks ronyblum!) ([#8388](https://github.com/RooCodeInc/Roo-Code/pull/8388))
140+
* **Vertex AI**: Fixed Sonnet 4.5 model configuration to prevent 404s and align with the correct default model ID (thanks nickcatal!) ([#8391](https://github.com/RooCodeInc/Roo-Code/pull/8391))
136141

137142
## Provider Updates
138143

@@ -146,6 +151,7 @@ This gives teams a higher-capacity OpenAI option without extra configuration.[#8
146151
* **SambaNova models**: Added DeepSeek-V3.1 and GPT-OSS 120B to the SambaNova provider (thanks snova-jorgep!) ([#8186](https://github.com/RooCodeInc/Roo-Code/pull/8186))
147152

148153
* **Supernova 1M context**: Upgrades the default Supernova to roo/code-supernova-1-million (1,000,000‑token context). Existing settings auto‑migrate; expect fewer truncations on long tasks. ([#8330](https://github.com/RooCodeInc/Roo-Code/pull/8330))
154+
* **Z.ai GLM‑4.6**: Adds GLM‑4.6 model support with a 200k (204,800) context window and availability across both international and mainland API lines (thanks dmarkey!) ([#8408](https://github.com/RooCodeInc/Roo-Code/pull/8408))
149155

150156
## Misc Improvements
151157

sidebars.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,9 @@ const sidebars: SidebarsConfig = {
223223
label: '3.28',
224224
items: [
225225
{ type: 'doc', id: 'update-notes/v3.28', label: '3.28 Combined' },
226+
{ type: 'doc', id: 'update-notes/v3.28.14', label: '3.28.14' },
227+
{ type: 'doc', id: 'update-notes/v3.28.13', label: '3.28.13' },
228+
{ type: 'doc', id: 'update-notes/v3.28.12', label: '3.28.12' },
226229
{ type: 'doc', id: 'update-notes/v3.28.11', label: '3.28.11' },
227230
{ type: 'doc', id: 'update-notes/v3.28.10', label: '3.28.10' },
228231
{ type: 'doc', id: 'update-notes/v3.28.9', label: '3.28.9' },

static/img/v3.28.14/v3.28.14.png

1.19 MB
Loading

0 commit comments

Comments
 (0)