Skip to content

Commit 089c425

Browse files
committed
Merge branch 'main' into gemini-cli
* main: fix: Resolve confusing auto-approve checkbox states (RooCodeInc#5602) fix: prevent empty mode names from being saved (RooCodeInc#5766) (RooCodeInc#5794) Format time in ISO 8601 (RooCodeInc#5793) fix: resolve DirectoryScanner memory leak and improve file limit handling (RooCodeInc#5785) Fix settings dirty check (RooCodeInc#5779) feat: increase Ollama API timeout values and extract as constants (RooCodeInc#5778) fix: Exclude Terraform and Terragrunt cache directories from checkpoints (RooCodeInc#4601) (RooCodeInc#5750) Move less commonly used provider settings into an advanced dropdown (RooCodeInc#5762) feat: Add configurable error & repetition limit with unified control (RooCodeInc#5654) (RooCodeInc#5752) list-files must include at least the first-level directory contents (RooCodeInc#5303) Update evals repo link (RooCodeInc#5758) Feature/vertex ai model name conversion (RooCodeInc#5728) fix(litellm): handle baseurl with paths correctly (RooCodeInc#5697) Add telemetry for todos (RooCodeInc#5746) feat: add undo functionality for enhance prompt feature (fixes RooCodeInc#5741) (RooCodeInc#5742) Fix max_tokens limit for moonshotai/kimi-k2-instruct on Groq (RooCodeInc#5740) Changeset version bump (RooCodeInc#5735) Add changeset for v3.23.12 patch release (RooCodeInc#5734) Update the max-token calculation in model-params to use the shared logic (RooCodeInc#5720) Changeset version bump (RooCodeInc#5719) chore: add changeset for v3.23.11 patch release (RooCodeInc#5718) Add Kimi K2 model and better support (RooCodeInc#5717) Fix: Remove invalid skip-checkout parameter from GitHub Actions workflows (RooCodeInc#5676) feat: add Cmd+Shift+. keyboard shortcut for previous mode switching (RooCodeInc#5695) Changeset version bump (RooCodeInc#5708) chore: add changeset for v3.23.10 patch release (RooCodeInc#5707) Add padding to the index model options (RooCodeInc#5706) fix: prioritize built-in model dimensions over custom dimensions (RooCodeInc#5705) Update CHANGELOG.md Changeset version bump (RooCodeInc#5702) chore: add changeset for v3.23.9 patch release (RooCodeInc#5701) Tweaks to command timeout error (RooCodeInc#5700) Update contributors list (RooCodeInc#5639) feat: enable Claude Code provider to run natively on Windows (RooCodeInc#5615) feat: Add configurable timeout for command execution (RooCodeInc#5668) feat: add gemini-embedding-001 model to code-index service (RooCodeInc#5698) fix: resolve vector dimension mismatch error when switching embedding models (RooCodeInc#5616) (RooCodeInc#5617) fix: [5424] return the cwd in the exec tool's response so that the model is not lost after subsequent calls (RooCodeInc#5667) Changeset version bump (RooCodeInc#5670) chore: add changeset for v3.23.8 patch release (RooCodeInc#5669)
2 parents 6f52edb + 6cf376f commit 089c425

File tree

162 files changed

+5195
-1169
lines changed

Some content is hidden

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

162 files changed

+5195
-1169
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

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
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+
331
## [3.23.7] - 2025-07-11
432

533
- Fix Mermaid syntax warning (thanks @MuriloFP!)

README.md

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

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

locales/ca/README.md

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

locales/de/README.md

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

locales/es/README.md

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

locales/fr/README.md

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

0 commit comments

Comments
 (0)