Skip to content

Commit a5f67a4

Browse files
committed
chore: prepare for v3.16.0 release
1 parent 78b2083 commit a5f67a4

File tree

4 files changed

+39
-11
lines changed

4 files changed

+39
-11
lines changed

.changeset/v3.16.0.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
"roo-cline": minor
3+
---
4+
5+
## New Features
6+
7+
- Add Groq and Chutes API providers (thanks @shariqriazz!)
8+
- Clickable code references in model responses navigate to source lines (thanks @KJ7LNW!)
9+
10+
## Improvements
11+
12+
- Organize provider settings into separate components (thanks @cte!)
13+
- Move remaining provider settings into separate components (thanks @cte!)
14+
- Use Lucide icons and translations in the code block (thanks @mrubens!)
15+
- Improve accessibility of Auto-Approve Toggles (thanks @Deon588!)
16+
- Add support for tests that use ESM libraries (thanks @cte!)
17+
18+
## Fixes
19+
20+
- Requesty provider fixes (thanks @dtrugman!)
21+
- Fix migration and persistence of modeApiConfigs for per-mode API profiles (thanks @alasano!)
22+
23+
## Code Quality
24+
25+
- Webview message handler + terminal settings cleanup (thanks @cte!)
26+
- Tidy up the Cline class (thanks @cte!)
27+
- Move environment details to a separate module, add tests (thanks @cte!)

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,14 @@ Check out the [CHANGELOG](CHANGELOG.md) for detailed updates and fixes.
4949

5050
---
5151

52-
## 🎉 Roo Code 3.15 Released
52+
## 🎉 Roo Code 3.16 Released
5353

54-
Roo Code 3.15 brings new features and improvements based on your feedback!
54+
Roo Code 3.16 brings new features and improvements based on your feedback!
5555

56-
- **Prompt Caching for Vertex** - Vertex AI now supports prompt caching, improving response times and reducing API costs.
57-
- **Terminal Fallback** - Implemented a fallback mechanism when VSCode terminal shell integration fails, ensuring more reliable terminal operations.
58-
- **Improved Code Snippets** - Enhanced code snippet rendering and interaction in the chat interface for better readability and usability.
56+
- **Groq and Chutes API Providers** - Added support for Groq and Chutes API providers, expanding your model options.
57+
- **Clickable Code References** - Code references in model responses now navigate directly to source lines.
58+
- **MCP Stability Improvements** - Fixed several bugs to enhance the stability of MCP integrations.
59+
- **Accessibility Improvements** - Enhanced accessibility of Auto-Approve toggles and other UI elements.
5960

6061
---
6162

src/core/webview/ClineProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
7575

7676
public isViewLaunched = false
7777
public settingsImportedAt?: number
78-
public readonly latestAnnouncementId = "apr-30-2025-3-15" // Update for v3.15.0 announcement
78+
public readonly latestAnnouncementId = "may-06-2025-3-16" // Update for v3.16.0 announcement
7979
public readonly providerSettingsManager: ProviderSettingsManager
8080
public readonly customModesManager: CustomModesManager
8181

webview-ui/src/i18n/locales/en/chat.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,12 @@
195195
"description": "Auto-approve allows Roo Code to perform actions without asking for permission. Only enable for actions you fully trust. More detailed configuration available in <settingsLink>Settings</settingsLink>."
196196
},
197197
"announcement": {
198-
"title": "🎉 Roo Code 3.15 Released",
199-
"description": "Roo Code 3.15 brings new features and improvements based on your feedback.",
198+
"title": "🎉 Roo Code 3.16 Released",
199+
"description": "Roo Code 3.16 brings new features and improvements based on your feedback.",
200200
"whatsNew": "What's New",
201-
"feature1": "<bold>Prompt Caching for Vertex</bold>: Added prompt caching support for Vertex AI, improving response times and reducing API costs",
202-
"feature2": "<bold>Terminal Fallback</bold>: Implemented a fallback mechanism when VSCode terminal shell integration fails",
203-
"feature3": "<bold>Improved Code Snippets</bold>: Enhanced code snippet rendering and interaction in the chat interface",
201+
"feature1": "<bold>Groq and Chutes API Providers</bold>: Added support for Groq and Chutes API providers (thanks @shariqriazz!)",
202+
"feature2": "<bold>Clickable Code References</bold>: Code references in model responses now navigate to source lines (thanks @KJ7LNW!)",
203+
"feature3": "<bold>MCP Stability Improvements</bold>: Fixed several bugs to enhance the stability of MCP integrations",
204204
"hideButton": "Hide announcement",
205205
"detailsDiscussLinks": "Get more details and discuss in <discordLink>Discord</discordLink> and <redditLink>Reddit</redditLink> 🚀"
206206
},

0 commit comments

Comments
 (0)