Skip to content

Commit 3fb788b

Browse files
authored
Merge branch 'main' into web-sitemap
2 parents 1c30381 + e5d93f2 commit 3fb788b

File tree

236 files changed

+8492
-1929
lines changed

Some content is hidden

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

236 files changed

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

3+
## [3.25.14] - 2025-08-13
4+
5+
- Fix: Only include verbosity parameter for models that support it (#7054 by @eastonmeth, PR by @app/roomote)
6+
- Fix: AWS Bedrock 1M context - Move anthropic_beta to additionalModelRequestFields (thanks @daniel-lxs!)
7+
- Fix: Make cancelling requests more responsive by reverting recent changes
8+
9+
## [3.25.13] - 2025-08-12
10+
11+
- Add Sonnet 1M context checkbox to Bedrock
12+
- Fix: add --no-messages flag to ripgrep to suppress file access errors (#6756 by @R-omk, PR by @app/roomote)
13+
- Add support for AGENT.md alongside AGENTS.md (#6912 by @Brendan-Z, PR by @app/roomote)
14+
- Remove deprecated GPT-4.5 Preview model (thanks @PeterDaveHello!)
15+
16+
## [3.25.12] - 2025-08-12
17+
18+
- Update: Claude Sonnet 4 context window configurable to 1 million tokens in Anthropic provider (thanks @daniel-lxs!)
19+
- Add: Minimal reasoning support to OpenRouter (thanks @daniel-lxs!)
20+
- Fix: Add configurable API request timeout for local providers (#6521 by @dabockster, PR by @app/roomote)
21+
- Fix: Add --no-sandbox flag to browser launch options (#6632 by @QuinsZouls, PR by @QuinsZouls)
22+
- Fix: Ensure JSON files respect .rooignore during indexing (#6690 by @evermoving, PR by @app/roomote)
23+
- Add: New Chutes provider models (#6698 by @fstandhartinger, PR by @app/roomote)
24+
- Add: OpenAI gpt-oss models to Amazon Bedrock dropdown (#6752 by @josh-clanton-powerschool, PR by @app/roomote)
25+
- Fix: Correct tool repetition detector to not block first tool call when limit is 1 (#6834 by @NaccOll, PR by @app/roomote)
26+
- Fix: Improve checkpoint service initialization handling (thanks @NaccOll!)
27+
- Update: Improve zh-TW Traditional Chinese locale (thanks @PeterDaveHello!)
28+
- Add: Task expand and collapse translations (thanks @app/roomote!)
29+
- Update: Exclude GPT-5 models from 20% context window output token cap (thanks @app/roomote!)
30+
- Fix: Truncate long model names in model selector to prevent overflow (thanks @app/roomote!)
31+
- Add: Requesty base url support (thanks @requesty-JohnCosta27!)
32+
33+
## [3.25.11] - 2025-08-11
34+
35+
- Add: Native OpenAI provider support for Codex Mini model (#5386 by @KJ7LNW, PR by @daniel-lxs)
36+
- Add: IO Intelligence Provider support (thanks @ertan2002!)
37+
- Fix: MCP startup issues and remove refresh notifications (thanks @hannesrudolph!)
38+
- Fix: Improvements to GPT-5 OpenAI provider configuration (thanks @hannesrudolph!)
39+
- Fix: Clarify codebase_search path parameter as optional and improve tool descriptions (thanks @app/roomote!)
40+
- Fix: Bedrock provider workaround for LiteLLM passthrough issues (thanks @jr!)
41+
- Fix: Token usage and cost being underreported on cancelled requests (thanks @chrarnoldus!)
42+
43+
## [3.25.10] - 2025-08-07
44+
45+
- Add support for GPT-5 (thanks Cline and @app/roomote!)
46+
- Fix: Use CDATA sections in XML examples to prevent parser errors (#4852 by @hannesrudolph, PR by @hannesrudolph)
47+
- Fix: Add missing MCP error translation keys (thanks @app/roomote!)
48+
349
## [3.25.9] - 2025-08-07
450

551
- Fix: Resolve rounding issue with max tokens (#6806 by @markp018, PR by @mrubens)

README.md

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

knip.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"webview-ui": {
1919
"entry": ["src/index.tsx"],
20-
"project": ["src/**/*.{ts,tsx}"]
20+
"project": ["src/**/*.{ts,tsx}", "../src/shared/*.ts"]
2121
},
2222
"packages/{build,cloud,evals,ipc,telemetry,types}": {
2323
"project": ["src/**/*.ts"]

0 commit comments

Comments
 (0)