Skip to content

Commit fac2dfd

Browse files
Merge main branch content into feat-6100
1 parent 03540ba commit fac2dfd

Some content is hidden

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

63 files changed

+3053
-1102
lines changed

.changeset/kind-horses-sniff.md

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

CHANGELOG.md

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

3+
## [3.24.0] - 2025-07-25
4+
5+
- Add Hugging Face provider with support for open source models (thanks @TGlide!)
6+
- Add terminal command permissions UI to chat interface
7+
- Add support for Agent Rules standard via AGENTS.md (thanks @sgryphon!)
8+
- Add settings to control diagnostic messages
9+
- Fix auto-approve checkbox to be toggled at any time (thanks @KJ7LNW!)
10+
- Add efficiency warning for single SEARCH/REPLACE blocks in apply_diff (thanks @KJ7LNW!)
11+
- Fix respect maxReadFileLine setting for file mentions to prevent context exhaustion (thanks @sebinseban!)
12+
- Fix Ollama API URL normalization by removing trailing slashes (thanks @Naam!)
13+
- Fix restore list styles for markdown lists in chat interface (thanks @village-way!)
14+
- Add support for bedrock api keys
15+
- Add confirmation dialog and proper cleanup for marketplace mode removal
16+
- Fix cancel auto-approve timer when editing follow-up suggestion (thanks @hassoncs!)
17+
- Fix add error message when no workspace folder is open for code indexing
18+
319
## [3.23.19] - 2025-07-23
420

521
- Add Roo Code Cloud Waitlist CTAs (thanks @brunobergher!)

README.md

Lines changed: 43 additions & 42 deletions
Large diffs are not rendered by default.

apps/vscode-e2e/src/suite/tools/list-files.test.ts

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ This directory contains various files and subdirectories for testing the list_fi
242242
// Verify the tool returned the expected files (non-recursive)
243243
assert.ok(listResults, "Tool execution results should be captured")
244244

245-
// Check that expected root-level files are present (excluding hidden files due to current bug)
246-
const expectedFiles = ["root-file-1.txt", "root-file-2.js", "config.yaml", "README.md"]
245+
// Check that expected root-level files are present (including hidden files now that bug is fixed)
246+
const expectedFiles = ["root-file-1.txt", "root-file-2.js", "config.yaml", "README.md", ".hidden-file"]
247247
const expectedDirs = ["nested/"]
248248

249249
const results = listResults as string
@@ -255,13 +255,9 @@ This directory contains various files and subdirectories for testing the list_fi
255255
assert.ok(results.includes(dir), `Tool results should include directory ${dir}`)
256256
}
257257

258-
// BUG: Hidden files are currently excluded in non-recursive mode
259-
// This should be fixed - hidden files should be included when using --hidden flag
260-
console.log("BUG DETECTED: Hidden files are excluded in non-recursive mode")
261-
assert.ok(
262-
!results.includes(".hidden-file"),
263-
"KNOWN BUG: Hidden files are currently excluded in non-recursive mode",
264-
)
258+
// Verify hidden files are now included (bug has been fixed)
259+
console.log("Verifying hidden files are included in non-recursive mode")
260+
assert.ok(results.includes(".hidden-file"), "Hidden files should be included in non-recursive mode")
265261

266262
// Verify nested files are NOT included (non-recursive)
267263
const nestedFiles = ["nested-file-1.md", "nested-file-2.json", "deep-nested-file.ts"]

locales/ca/README.md

Lines changed: 46 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

locales/de/README.md

Lines changed: 46 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

locales/es/README.md

Lines changed: 46 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

locales/fr/README.md

Lines changed: 46 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

locales/hi/README.md

Lines changed: 46 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

locales/id/README.md

Lines changed: 46 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)