Skip to content

Commit ad7d540

Browse files
Merge branch 'RooCodeInc:main' into main
2 parents 5a452e0 + d513b9c commit ad7d540

File tree

286 files changed

+8638
-2011
lines changed

Some content is hidden

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

286 files changed

+8638
-2011
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: 1 addition & 5 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

@@ -23,7 +20,6 @@ jobs:
2320
- name: Setup Node.js and pnpm
2421
uses: ./.github/actions/setup-node-pnpm
2522
with:
26-
skip-checkout: 'true'
2723
install-args: '--frozen-lockfile'
2824
- name: Forge numeric Nightly version
2925
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: 65 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,68 @@
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+
48+
## [3.23.6] - 2025-07-10
49+
50+
- Grok 4
51+
52+
## [3.23.5] - 2025-07-09
53+
54+
- Fix: use decodeURIComponent in openFile (thanks @vivekfyi!)
55+
- Fix(embeddings): Translate error messages before sending to UI (thanks @daniel-lxs!)
56+
- Make account tab visible
57+
58+
## [3.23.4] - 2025-07-09
59+
60+
- Update chat area icons for better discoverability & consistency
61+
- Fix a bug that allowed `list_files` to return directory results that should be excluded by .gitignore
62+
- Add an overflow header menu to make the UI a little tidier (thanks @dlab-anton)
63+
- Fix a bug the issue where null custom modes configuration files cause a 'Cannot read properties of null' error (thanks @daniel-lxs!)
64+
- Replace native title attributes with StandardTooltip component for consistency (thanks @daniel-lxs!)
65+
366
## [3.23.3] - 2025-07-09
467

568
- Remove erroneous line from announcement modal
@@ -365,7 +428,7 @@
365428
- Fix vscode-material-icons in the filer picker
366429
- Fix global settings export
367430
- Respect user-configured terminal integration timeout (thanks @KJ7LNW)
368-
- Contex condensing enhancements (thanks @SannidhyaSah)
431+
- Context condensing enhancements (thanks @SannidhyaSah)
369432

370433
## [3.18.1] - 2025-05-22
371434

@@ -877,7 +940,7 @@
877940

878941
## [3.10.1] - 2025-03-20
879942

880-
- Make the suggested responses optional to not break overriden system prompts
943+
- Make the suggested responses optional to not break overridden system prompts
881944

882945
## [3.10.0] - 2025-03-20
883946

0 commit comments

Comments
 (0)