Skip to content

Commit 22eb360

Browse files
authored
Merge branch 'RooCodeInc:main' into feat/finer-grained-control-gemini
2 parents d18b143 + 0c014f0 commit 22eb360

File tree

263 files changed

+7069
-1802
lines changed

Some content is hidden

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

263 files changed

+7069
-1802
lines changed

.github/workflows/nightly-publish.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
name: Nightly Publish
22

33
on:
4-
workflow_run:
5-
workflows: ["Code QA Roo Code"]
6-
types:
7-
- completed
4+
push:
85
branches: [main]
96
workflow_dispatch: # Allows manual triggering.
107

.roo/rules-issue-fixer-orchestrator/5_pull_request_workflow.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<after_creation>
9595
1. Comment on original issue with PR link:
9696
<execute_command>
97-
<command>gh issue comment [issue-number] --repo [owner]/[repo] --body "PR #[pr-number] has been created to address this issue: [PR URL]"</command>
97+
<command>gh issue comment [issue-number] --repo [owner]/[repo] --body "PR #[pr-number] has been created to address this issue"</command>
9898
</execute_command>
9999
2. Inform user of successful creation
100100
3. Provide next steps and tracking info

.roo/rules-issue-fixer/1_Workflow.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@
478478
3. Inform the user of the successful creation
479479

480480
<execute_command>
481-
<command>gh issue comment [original issue number] --repo [owner]/[repo] --body "PR #[new PR number] has been created to address this issue: [PR URL]"</command>
481+
<command>gh issue comment [original issue number] --repo [owner]/[repo] --body "PR #[new PR number] has been created to address this issue"</command>
482482
</execute_command>
483483

484484
Final message to user:

.roo/rules-issue-fixer/5_pull_request_workflow.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<after_creation>
4141
1. Comment on original issue with PR link:
4242
<execute_command>
43-
<command>gh issue comment [issue-number] --repo [owner]/[repo] --body "PR #[pr-number] has been created to address this issue: [PR URL]"</command>
43+
<command>gh issue comment [issue-number] --repo [owner]/[repo] --body "PR #[pr-number] has been created to address this issue"</command>
4444
</execute_command>
4545
2. Inform user of successful creation
4646
3. Provide next steps and tracking info

CHANGELOG.md

Lines changed: 51 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# Roo Code Changelog
22

3+
## [3.23.9] - 2025-07-14
4+
5+
- Enable Claude Code provider to run natively on Windows (thanks @SannidhyaSah!)
6+
- Add gemini-embedding-001 model to code-index service (thanks @daniel-lxs!)
7+
- Resolve vector dimension mismatch error when switching embedding models
8+
- Return the cwd in the exec tool's response so that the model is not lost after subsequent calls (thanks @chris-garrett!)
9+
- Add configurable timeout for command execution in VS Code settings
10+
11+
## [3.23.8] - 2025-07-13
12+
13+
- Add enable/disable toggle for code indexing (thanks @daniel-lxs!)
14+
- Add a command auto-deny list to auto-approve settings
15+
- Add navigation link to history tab in HistoryPreview
16+
17+
## [3.23.7] - 2025-07-11
18+
19+
- Fix Mermaid syntax warning (thanks @MuriloFP!)
20+
- Expand Vertex AI region config to include all available regions in GCP Vertex AI (thanks @shubhamgupta731!)
21+
- Handle Qdrant vector dimension mismatch when switching embedding models (thanks @daniel-lxs!)
22+
- Fix typos in comment & document (thanks @noritaka1166!)
23+
- Improve the display of codebase search results
24+
- Correct translation fallback logic for embedding errors (thanks @daniel-lxs!)
25+
- Clean up MCP tool disabling
26+
- Link to marketplace from modes and MCP tab
27+
- Fix TTS button display (thanks @sensei-woo!)
28+
- Add Devstral Medium model support
29+
- Add comprehensive error telemetry to code-index service (thanks @daniel-lxs!)
30+
- Exclude cache tokens from context window calculation (thanks @daniel-lxs!)
31+
- Enable dynamic tool selection in architect mode for context discovery
32+
- Add configurable max output tokens setting for claude-code
33+
34+
## [3.23.6] - 2025-07-10
35+
36+
- Grok 4
37+
38+
## [3.23.5] - 2025-07-09
39+
40+
- Fix: use decodeURIComponent in openFile (thanks @vivekfyi!)
41+
- Fix(embeddings): Translate error messages before sending to UI (thanks @daniel-lxs!)
42+
- Make account tab visible
43+
44+
## [3.23.4] - 2025-07-09
45+
46+
- Update chat area icons for better discoverability & consistency
47+
- Fix a bug that allowed `list_files` to return directory results that should be excluded by .gitignore
48+
- Add an overflow header menu to make the UI a little tidier (thanks @dlab-anton)
49+
- Fix a bug the issue where null custom modes configuration files cause a 'Cannot read properties of null' error (thanks @daniel-lxs!)
50+
- Replace native title attributes with StandardTooltip component for consistency (thanks @daniel-lxs!)
51+
352
## [3.23.3] - 2025-07-09
453

554
- Remove erroneous line from announcement modal
@@ -365,7 +414,7 @@
365414
- Fix vscode-material-icons in the filer picker
366415
- Fix global settings export
367416
- Respect user-configured terminal integration timeout (thanks @KJ7LNW)
368-
- Contex condensing enhancements (thanks @SannidhyaSah)
417+
- Context condensing enhancements (thanks @SannidhyaSah)
369418

370419
## [3.18.1] - 2025-05-22
371420

@@ -877,7 +926,7 @@
877926

878927
## [3.10.1] - 2025-03-20
879928

880-
- Make the suggested responses optional to not break overriden system prompts
929+
- Make the suggested responses optional to not break overridden system prompts
881930

882931
## [3.10.0] - 2025-03-20
883932

README.md

Lines changed: 38 additions & 37 deletions
Large diffs are not rendered by default.

apps/vscode-e2e/src/suite/tools/apply-diff.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ function validateInput(input) {
224224
},
225225
text: `Use apply_diff on the file ${testFile.name} to change "Hello World" to "Hello Universe". The file already exists with this content:
226226
${testFile.content}\nAssume the file exists and you can modify it directly.`,
227-
}) //Temporary meassure since list_files ignores all the files inside a tmp workspace
227+
}) //Temporary measure since list_files ignores all the files inside a tmp workspace
228228

229229
console.log("Task ID:", taskId)
230230
console.log("Test filename:", testFile.name)

apps/vscode-e2e/src/suite/tools/use-mcp-tool.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type { ClineMessage } from "@roo-code/types"
99
import { waitFor, sleep } from "../utils"
1010
import { setDefaultSuiteTimeout } from "../test-utils"
1111

12-
suite("Roo Code use_mcp_tool Tool", function () {
12+
suite.skip("Roo Code use_mcp_tool Tool", function () {
1313
setDefaultSuiteTimeout(this)
1414

1515
let tempDir: string
@@ -557,7 +557,7 @@ suite("Roo Code use_mcp_tool Tool", function () {
557557
}
558558
})
559559

560-
test("Should request MCP filesystem directory_tree tool and complete successfully", async function () {
560+
test.skip("Should request MCP filesystem directory_tree tool and complete successfully", async function () {
561561
const api = globalThis.api
562562
const messages: ClineMessage[] = []
563563
let _taskCompleted = false

apps/web-roo-code/src/app/evals/evals.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export function Evals({
203203
</ScatterChart>
204204
</ChartContainer>
205205
<div className="py-4 text-xs opacity-50">
206-
(Note: Very expensive models are exluded from the scatter plot.)
206+
(Note: Very expensive models are excluded from the scatter plot.)
207207
</div>
208208
</TableCaption>
209209
</Table>

0 commit comments

Comments
 (0)