mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Changeset version bump (#3020)
* changeset version bump * Update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Chris Estreich <cestreich@gmail.com>
This commit is contained in:
parent
2fd7d13624
commit
d990f0ea2d
9 changed files with 21 additions and 55 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"roo-cline": patch
|
||||
---
|
||||
|
||||
Use gemini provider when using Gemini on vertex ai
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"roo-cline": patch
|
||||
---
|
||||
|
||||
Add a kill command button to the execute command component
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"roo-cline": patch
|
||||
---
|
||||
|
||||
Overhaul CodeBlock rendering
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"roo-cline": patch
|
||||
---
|
||||
|
||||
Use a fallback terminal if VSCode shell integration fails
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"roo-cline": minor
|
||||
---
|
||||
|
||||
Add Reasoning Effort setting for OpenAI Compatible provider
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
"roo-cline": minor
|
||||
---
|
||||
|
||||
# Changelog: v3.14.3 → v3.15.0
|
||||
|
||||
## 🚀 Features
|
||||
|
||||
- **Prompt caching for Vertex**: Added prompt caching support for Vertex AI, improving response times and reducing API costs (thanks @arafatkatze!)
|
||||
- **Terminal fallback when VSCode terminal shell integration fails**: Implemented a fallback mechanism when VSCode terminal shell integration is unavailable, ensuring more reliable terminal operations
|
||||
- **Improved code snippets in chat**: Enhanced code snippet rendering and interaction in the chat interface for better readability and usability
|
||||
|
||||
## 🔧 Fixes
|
||||
|
||||
- Fixed unit test set-up and CI workflow (thanks @BarreiroT!)
|
||||
- Lowered the Gemini Caching TTL time to 15 minutes for better performance (thanks @arafatkatze!)
|
||||
- Fixed output calculation by setting the default output cost (thanks @BarreiroT!)
|
||||
|
||||
## ⚙️ Internal Changes
|
||||
|
||||
- Added OpenRouter balance display next to provider (thanks @arafatkatze!)
|
||||
- Added support for custom timeout configuration (thanks @WingsDrafterwork!)
|
||||
- Improved Markdown copy functionality (thanks @weshoke!)
|
||||
- Added Java options to protobufs (thanks @sjf!)
|
||||
- Added PROTOBUS: addRemoteServer message (thanks @DaveFres!)
|
||||
- Expanded task header by default for better visibility (thanks @pashpashpash!)
|
||||
- Removed showMcpView message (thanks @celestial-vault!)
|
||||
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -1,5 +1,23 @@
|
|||
# Roo Code Changelog
|
||||
|
||||
## 3.15.0 - 2025-04-30
|
||||
|
||||
- Add prompt caching to the Google Vertex provider (thanks @ashktn)
|
||||
- Add a fallback mechanism for executing terminal commands if VSCode terminal shell integration fails
|
||||
- Improve the UI/UX of code snippets in the chat (thanks @KJ7LNW)
|
||||
- Add a reasoning effort setting for the OpenAI Compatible provider (thanks @mr-ryan-james)
|
||||
- Allow terminal commands to be stopped directly from the chat UI
|
||||
- Adjust chat view padding to accommodate small width layouts (thanks @zhangtony239)
|
||||
- Fix file mentions for filenames containing spaces
|
||||
- Improve the auto-approve toggle buttons for some high-contrast VSCode themes
|
||||
- Offload expensive count token operations to a web worker (thanks @samhvw8)
|
||||
- Improve support for mult-root workspaces (thanks @snoyiatk)
|
||||
- Simplify and streamline Roo Code's quick actions
|
||||
- Allow Roo Code settings to be imported from the welcome screen (thanks @julionav)
|
||||
- Remove unused types (thanks @wkordalski)
|
||||
- Improve the performance of mode switching (thanks @dlab-anton)
|
||||
- Fix importing & exporting of custom modes (thanks @julionav)
|
||||
|
||||
## [3.14.3] - 2025-04-25
|
||||
|
||||
- Add Boomerang Orchestrator as a built-in mode
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "roo-cline",
|
||||
"version": "3.14.3",
|
||||
"version": "3.15.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "roo-cline",
|
||||
"version": "3.14.3",
|
||||
"version": "3.15.0",
|
||||
"dependencies": {
|
||||
"@anthropic-ai/bedrock-sdk": "^0.10.2",
|
||||
"@anthropic-ai/sdk": "^0.37.0",
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"displayName": "%extension.displayName%",
|
||||
"description": "%extension.description%",
|
||||
"publisher": "RooVeterinaryInc",
|
||||
"version": "3.14.3",
|
||||
"version": "3.15.0",
|
||||
"icon": "assets/icons/icon.png",
|
||||
"galleryBanner": {
|
||||
"color": "#617A91",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue