Skip to content

Commit 0e9954d

Browse files
committed
Merge branch 'main' into will/edit-w-checkpoints
2 parents 2c77f32 + fb374b3 commit 0e9954d

File tree

276 files changed

+8955
-2178
lines changed

Some content is hidden

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

276 files changed

+8955
-2178
lines changed

.github/workflows/changeset-release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ jobs:
3131
ref: ${{ env.GIT_REF }}
3232
- name: Setup Node.js and pnpm
3333
uses: ./.github/actions/setup-node-pnpm
34-
with:
35-
skip-checkout: 'true'
3634

3735
# Check if there are any new changesets to process
3836
- name: Check for changesets

.github/workflows/marketplace-publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525
ref: ${{ env.GIT_REF }}
2626
- name: Setup Node.js and pnpm
2727
uses: ./.github/actions/setup-node-pnpm
28-
with:
29-
skip-checkout: 'true'
3028
- name: Configure Git
3129
run: |
3230
git config user.name "github-actions[bot]"

.github/workflows/nightly-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
- name: Setup Node.js and pnpm
2121
uses: ./.github/actions/setup-node-pnpm
2222
with:
23-
skip-checkout: 'true'
2423
install-args: '--frozen-lockfile'
2524
- name: Forge numeric Nightly version
2625
id: version

.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: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# Roo Code Changelog
22

3+
## [3.23.12] - 2025-07-15
4+
5+
- Update the max-token calculation in model-params to better support Kimi K2 and others
6+
7+
## [3.23.11] - 2025-07-14
8+
9+
- Add Kimi K2 model to Groq along with fixes to context condensing math
10+
- Add Cmd+Shift+. keyboard shortcut for previous mode switching
11+
12+
## [3.23.10] - 2025-07-14
13+
14+
- Prioritize built-in model dimensions over custom dimensions (thanks @daniel-lxs!)
15+
- Add padding to the index model options
16+
17+
## [3.23.9] - 2025-07-14
18+
19+
- Enable Claude Code provider to run natively on Windows (thanks @SannidhyaSah!)
20+
- Add gemini-embedding-001 model to code-index service (thanks @daniel-lxs!)
21+
- Resolve vector dimension mismatch error when switching embedding models
22+
- Return the cwd in the exec tool's response so that the model is not lost after subsequent calls (thanks @chris-garrett!)
23+
- Add configurable timeout for command execution in VS Code settings
24+
25+
## [3.23.8] - 2025-07-13
26+
27+
- Add enable/disable toggle for code indexing (thanks @daniel-lxs!)
28+
- Add a command auto-deny list to auto-approve settings
29+
- Add navigation link to history tab in HistoryPreview
30+
31+
## [3.23.7] - 2025-07-11
32+
33+
- Fix Mermaid syntax warning (thanks @MuriloFP!)
34+
- Expand Vertex AI region config to include all available regions in GCP Vertex AI (thanks @shubhamgupta731!)
35+
- Handle Qdrant vector dimension mismatch when switching embedding models (thanks @daniel-lxs!)
36+
- Fix typos in comment & document (thanks @noritaka1166!)
37+
- Improve the display of codebase search results
38+
- Correct translation fallback logic for embedding errors (thanks @daniel-lxs!)
39+
- Clean up MCP tool disabling
40+
- Link to marketplace from modes and MCP tab
41+
- Fix TTS button display (thanks @sensei-woo!)
42+
- Add Devstral Medium model support
43+
- Add comprehensive error telemetry to code-index service (thanks @daniel-lxs!)
44+
- Exclude cache tokens from context window calculation (thanks @daniel-lxs!)
45+
- Enable dynamic tool selection in architect mode for context discovery
46+
- Add configurable max output tokens setting for claude-code
47+
348
## [3.23.6] - 2025-07-10
449

550
- Grok 4

README.md

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

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
@@ -61,7 +61,7 @@ export function Evals({
6161
<div className="flex flex-col gap-4">
6262
<div>
6363
Roo Code tests each frontier model against{" "}
64-
<a href="https://github.com/cte/evals/" className="underline">
64+
<a href="https://github.com/RooCodeInc/Roo-Code-Evals" className="underline">
6565
a suite of hundreds of exercises
6666
</a>{" "}
6767
across 5 programming languages with varying difficulty. These results can help you find the right

0 commit comments

Comments
 (0)