Compare commits

...

2 commits

Author SHA1 Message Date
Chris Estreich
c5135dac56
Update CHANGELOG.md 2025-05-06 10:05:26 -07:00
github-actions[bot]
570a30ec8a changeset version bump 2025-05-06 16:57:56 +00:00
7 changed files with 25 additions and 45 deletions

View file

@ -1,5 +0,0 @@
---
"roo-cline": patch
---
Organize provider settings into separate components

View file

@ -1,5 +0,0 @@
---
"roo-cline": patch
---
Split Cline.getEnvironmentDetails out into a standalone function

View file

@ -1,5 +0,0 @@
---
"roo-cline": patch
---
Enable Gemini prompt caching by default

View file

@ -1,27 +0,0 @@
---
"roo-cline": minor
---
## New Features
- Add Groq and Chutes API providers (thanks @shariqriazz!)
- Clickable code references in model responses navigate to source lines (thanks @KJ7LNW!)
## Improvements
- Organize provider settings into separate components (thanks @cte!)
- Move remaining provider settings into separate components (thanks @cte!)
- Use Lucide icons and translations in the code block (thanks @mrubens!)
- Improve accessibility of Auto-Approve Toggles (thanks @Deon588!)
- Add support for tests that use ESM libraries (thanks @cte!)
## Fixes
- Requesty provider fixes (thanks @dtrugman!)
- Fix migration and persistence of modeApiConfigs for per-mode API profiles (thanks @alasano!)
## Code Quality
- Webview message handler + terminal settings cleanup (thanks @cte!)
- Tidy up the Cline class (thanks @cte!)
- Move environment details to a separate module, add tests (thanks @cte!)

View file

@ -1,5 +1,27 @@
# Roo Code Changelog
## [3.16.0] - 2025-05-06
- Add vertical tab navigation to the settings (thanks @dlab-anton)
- Add Groq and Chutes API providers (thanks @shariqriazz)
- Clickable code references in code block (thanks @KJ7LNW)
- Improve accessibility of ato-approve toggles (thanks @Deon588)
- Requesty provider fixes (thanks @dtrugman)
- Fix migration and persistence of per-mode API profiles (thanks @alasano)
- Fix usage of `path.basename` in the extension webview (thanks @samhvw8)
- Fix display issue of the programming language dropdown in the code block component (thanks @zhangtony239)
- MCP server errors are now captured and shown in a new "Errors" tab (thanks @robertheadley)
- Error logging will no longer break MCP functionality if the server is properly connected (thanks @ksze)
- You can now toggle the `terminal.integrated.inheritEnv` VSCode setting directly for the Roo Code settings (thanks @KJ7LNW)
- Add `gemini-2.5-pro-preview-05-06` to the Vertex and Gemini providers (thanks @zetaloop)
- Ensure evals exercises are up-to-date before running evals (thanks @shariqriazz)
- Lots of general UI improvements (thanks @elianiva)
- Organize provider settings into separate components
- Improved icons and translations for the code block component
- Add support for tests that use ESM libraries
- Move environment detail generation to a separate module
- Enable prompt caching by default for supported Gemini models
## [3.15.5] - 2025-05-05
- Update @google/genai to 0.12 (includes some streaming completion bug fixes)

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "roo-cline",
"version": "3.15.5",
"version": "3.16.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "roo-cline",
"version": "3.15.5",
"version": "3.16.0",
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.10.2",
"@anthropic-ai/sdk": "^0.37.0",

View file

@ -3,7 +3,7 @@
"displayName": "%extension.displayName%",
"description": "%extension.description%",
"publisher": "RooVeterinaryInc",
"version": "3.15.5",
"version": "3.16.0",
"icon": "assets/icons/icon.png",
"galleryBanner": {
"color": "#617A91",