Skip to content

Commit bf6e449

Browse files
Merge branch 'main' into feature/add-valkey
2 parents 75d36c4 + a8aea14 commit bf6e449

File tree

278 files changed

+11643
-2622
lines changed

Some content is hidden

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

278 files changed

+11643
-2622
lines changed

.roo/commands/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ argument-hint: patch | minor | major
44
---
55

66
1. Identify the SHA corresponding to the most recent release using GitHub CLI: `gh release view --json tagName,targetCommitish,publishedAt`
7-
2. Analyze changes since the last release using: `gh pr list --state merged --json number,title,author,url,mergedAt,closingIssuesReferences --limit 1000 -q '[.[] | select(.mergedAt > "TIMESTAMP") | {number, title, author: .author.login, url, mergedAt, issues: .closingIssuesReferences}] | sort_by(.number)'`
7+
2. Analyze changes since the last release using: `gh pr list --state merged --base main --json number,title,author,url,mergedAt,closingIssuesReferences --limit 1000 -q '[.[] | select(.mergedAt > "TIMESTAMP") | {number, title, author: .author.login, url, mergedAt, issues: .closingIssuesReferences}] | sort_by(.number)'`
88
3. For each PR with linked issues, fetch the issue details to get the issue reporter: `gh issue view ISSUE_NUMBER --json number,author -q '{number, reporter: .author.login}'`
99
4. Summarize the changes. If the user did not specify, ask them whether this should be a major, minor, or patch release.
1010
5. Create a changeset in .changeset/v[version].md instead of directly modifying package.json. The format is:

.roo/roomotes.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,6 @@ github_events:
2020
- event: pull_request.opened
2121
action:
2222
name: github.pr.review
23-
- event: pull_request.opened
24-
action:
25-
name: general.task
26-
prompt: |
27-
1. Run the script `node scripts/find-missing-translations.js` and carefully review its output for any missing translations.
28-
2. If the script reports missing translations, switch into `translate` mode and add them in all supported languages.
29-
3. If you've added new translations, commit and push them to the existing PR.
30-
4. If you get a permission error trying to push to the PR just give up (i.e don't create a new PR instead).
3123
- event: pull_request_review_comment.created
3224
action:
3325
name: github.pr.comment.respond

CHANGELOG.md

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

3+
## [3.25.17] - 2025-08-17
4+
5+
- Fix: Resolve terminal reuse logic issues
6+
7+
## [3.25.16] - 2025-08-16
8+
9+
- Add support for OpenAI gpt-5-chat-latest model (#7057 by @PeterDaveHello, PR by @app/roomote)
10+
- Fix: Use native Ollama API instead of OpenAI compatibility layer (#7070 by @LivioGama, PR by @daniel-lxs)
11+
- Fix: Prevent XML entity decoding in diff tools (#7107 by @indiesewell, PR by @app/roomote)
12+
- Fix: Add type check before calling .match() on diffItem.content (#6905 by @pwilkin, PR by @app/roomote)
13+
- Refactor task execution system: improve call stack management (thanks @catrielmuller!)
14+
- Fix: Enable save button for provider dropdown and checkbox changes (thanks @daniel-lxs!)
15+
- Add an API for resuming tasks by ID (thanks @mrubens!)
16+
- Emit event when a task ask requires interaction (thanks @cte!)
17+
- Make enhance with task history default to true (thanks @liwilliam2021!)
18+
- Fix: Use cline.cwd as primary source for workspace path in codebaseSearchTool (thanks @NaccOll!)
19+
- Hotfix multiple folder workspace checkpoint (thanks @NaccOll!)
20+
21+
## [3.25.15] - 2025-08-14
22+
23+
- Fix: Remove 500-message limit to prevent scrollbar jumping in long conversations (#7052, #7063 by @daniel-lxs, PR by @app/roomote)
24+
- Fix: Reset condensing state when switching tasks (#6919 by @f14XuanLv, PR by @f14XuanLv)
25+
- Fix: Implement sitemap generation in TypeScript and remove XML file (#5231 by @abumalick, PR by @abumalick)
26+
- Fix: allowedMaxRequests and allowedMaxCost values not showing in the settings UI (thanks @chrarnoldus!)
27+
28+
## [3.25.14] - 2025-08-13
29+
30+
- Fix: Only include verbosity parameter for models that support it (#7054 by @eastonmeth, PR by @app/roomote)
31+
- Fix: AWS Bedrock 1M context - Move anthropic_beta to additionalModelRequestFields (thanks @daniel-lxs!)
32+
- Fix: Make cancelling requests more responsive by reverting recent changes
33+
34+
## [3.25.13] - 2025-08-12
35+
36+
- Add Sonnet 1M context checkbox to Bedrock
37+
- Fix: add --no-messages flag to ripgrep to suppress file access errors (#6756 by @R-omk, PR by @app/roomote)
38+
- Add support for AGENT.md alongside AGENTS.md (#6912 by @Brendan-Z, PR by @app/roomote)
39+
- Remove deprecated GPT-4.5 Preview model (thanks @PeterDaveHello!)
40+
41+
## [3.25.12] - 2025-08-12
42+
43+
- Update: Claude Sonnet 4 context window configurable to 1 million tokens in Anthropic provider (thanks @daniel-lxs!)
44+
- Add: Minimal reasoning support to OpenRouter (thanks @daniel-lxs!)
45+
- Fix: Add configurable API request timeout for local providers (#6521 by @dabockster, PR by @app/roomote)
46+
- Fix: Add --no-sandbox flag to browser launch options (#6632 by @QuinsZouls, PR by @QuinsZouls)
47+
- Fix: Ensure JSON files respect .rooignore during indexing (#6690 by @evermoving, PR by @app/roomote)
48+
- Add: New Chutes provider models (#6698 by @fstandhartinger, PR by @app/roomote)
49+
- Add: OpenAI gpt-oss models to Amazon Bedrock dropdown (#6752 by @josh-clanton-powerschool, PR by @app/roomote)
50+
- Fix: Correct tool repetition detector to not block first tool call when limit is 1 (#6834 by @NaccOll, PR by @app/roomote)
51+
- Fix: Improve checkpoint service initialization handling (thanks @NaccOll!)
52+
- Update: Improve zh-TW Traditional Chinese locale (thanks @PeterDaveHello!)
53+
- Add: Task expand and collapse translations (thanks @app/roomote!)
54+
- Update: Exclude GPT-5 models from 20% context window output token cap (thanks @app/roomote!)
55+
- Fix: Truncate long model names in model selector to prevent overflow (thanks @app/roomote!)
56+
- Add: Requesty base url support (thanks @requesty-JohnCosta27!)
57+
58+
## [3.25.11] - 2025-08-11
59+
60+
- Add: Native OpenAI provider support for Codex Mini model (#5386 by @KJ7LNW, PR by @daniel-lxs)
61+
- Add: IO Intelligence Provider support (thanks @ertan2002!)
62+
- Fix: MCP startup issues and remove refresh notifications (thanks @hannesrudolph!)
63+
- Fix: Improvements to GPT-5 OpenAI provider configuration (thanks @hannesrudolph!)
64+
- Fix: Clarify codebase_search path parameter as optional and improve tool descriptions (thanks @app/roomote!)
65+
- Fix: Bedrock provider workaround for LiteLLM passthrough issues (thanks @jr!)
66+
- Fix: Token usage and cost being underreported on cancelled requests (thanks @chrarnoldus!)
67+
68+
## [3.25.10] - 2025-08-07
69+
70+
- Add support for GPT-5 (thanks Cline and @app/roomote!)
71+
- Fix: Use CDATA sections in XML examples to prevent parser errors (#4852 by @hannesrudolph, PR by @hannesrudolph)
72+
- Fix: Add missing MCP error translation keys (thanks @app/roomote!)
73+
74+
## [3.25.9] - 2025-08-07
75+
76+
- Fix: Resolve rounding issue with max tokens (#6806 by @markp018, PR by @mrubens)
77+
- Add support for GLM-4.5 and OpenAI gpt-oss models in Fireworks provider (#6753 by @alexfarlander, PR by @app/roomote)
78+
- Improve UX by focusing chat input when clicking plus button in extension menu (thanks @app/roomote!)
79+
380
## [3.25.8] - 2025-08-06
481

582
- Fix: Prevent disabled MCP servers from starting processes and show correct status (#6036 by @hannesrudolph, PR by @app/roomote)

0 commit comments

Comments
 (0)