Skip to content

Commit e60355f

Browse files
committed
Merge branch 'main' into human-relay
2 parents 7b3bfca + 8f35671 commit e60355f

File tree

297 files changed

+30960
-11679
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+30960
-11679
lines changed

.dockerignore

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/code-qa.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ jobs:
6262
run: npm run knip
6363

6464
test-extension:
65-
runs-on: ubuntu-latest
65+
runs-on: ${{ matrix.os }}
66+
strategy:
67+
matrix:
68+
os: [ubuntu-latest, windows-latest]
6669
steps:
6770
- name: Checkout code
6871
uses: actions/checkout@v4
@@ -73,11 +76,16 @@ jobs:
7376
cache: 'npm'
7477
- name: Install dependencies
7578
run: npm run install:all
79+
- name: Compile (to build and copy WASM files)
80+
run: npm run compile
7681
- name: Run unit tests
7782
run: npx jest --silent
7883

7984
test-webview:
80-
runs-on: ubuntu-latest
85+
runs-on: ${{ matrix.os }}
86+
strategy:
87+
matrix:
88+
os: [ubuntu-latest, windows-latest]
8189
steps:
8290
- name: Checkout code
8391
uses: actions/checkout@v4

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs v20.18.1

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.vscode-test/**
66
out/**
77
out-integration/**
8-
benchmark/**
8+
evals/**
99
e2e/**
1010
node_modules/**
1111
src/**

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Roo Code Changelog
22

3+
## [3.11.5] - 2025-04-03
4+
5+
- Add prompt caching for Amazon Bedrock (thanks @Smartsheet-JB-Brown!)
6+
- Add support for configuring the current working directory of MCP servers (thanks @shoopapa!)
7+
- Add profile management functions to API (thanks @gtaylor!)
8+
- Improvements to diff editing functionality, tests, and error messages (thanks @p12tic!)
9+
- Fix for follow-up questions grabbing the focus (thanks @diarmidmackenzie!)
10+
- Show menu buttons when popping the extension out into a new tab (thanks @benny123tw!)
11+
12+
## [3.11.4] - 2025-04-02
13+
14+
- Correctly post state to webview when the current task is cleared (thanks @wkordalski!)
15+
- Fix unit tests to run properly on Windows (thanks @StevenTCramer!)
16+
- Tree-sitter enhancements: TSX, TypeScript, JSON, and Markdown support (thanks @KJ7LNW!)
17+
- Fix issue with line number stripping for deletions in apply_diff
18+
- Update history selection mode button spacing (thanks @kyle-apex!)
19+
- Limit dropdown menu height to 80% of the viewport (thanks @axmo!)
20+
- Update dependencies via `npm audit fix` (thanks @PeterDaveHello!)
21+
- Enable model select when api fails (thanks @kyle-apex!)
22+
- Fix issue where prompts and settings tabs were not scrollable when accessed from dropdown menus
23+
- Update AWS region dropdown menu to the most recent data (thanks @Smartsheet-JB-Brown!)
24+
- Fix prompt enhancement for Bedrock (thanks @Smartsheet-JB-Brown!)
25+
- Allow processes to access the Roo Code API via a unix socket
26+
- Improve zh-TW Traditional Chinese translations (thanks @PeterDaveHello!)
27+
- Add support for Azure AI Inference Service with DeepSeek-V3 model (thanks @thomasjeung!)
28+
- Fix off-by-one error in tree-sitter line numbers
29+
- Remove the experimental unified diff
30+
- Make extension icon more visible in different themes
31+
332
## [3.11.3] - 2025-03-31
433

534
- Revert mention changes in case they're causing performance issues/crashes

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2025 Roo Veterinary Inc.
189+
Copyright 2025 Roo Code, Inc.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.
@@ -198,4 +198,4 @@
198198
distributed under the License is distributed on an "AS IS" BASIS,
199199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200200
See the License for the specific language governing permissions and
201-
limitations under the License.
201+
limitations under the License.

README.md

Lines changed: 23 additions & 22 deletions
Large diffs are not rendered by default.

assets/icons/icon.png

1.86 KB
Loading

benchmark/.env.local.sample

Lines changed: 0 additions & 2 deletions
This file was deleted.

benchmark/Dockerfile

Lines changed: 0 additions & 89 deletions
This file was deleted.

0 commit comments

Comments
 (0)