From 957a7d9e8345089e1dde7bd7a269b0de205cc81b Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Mon, 11 Aug 2025 16:57:45 -0400 Subject: [PATCH 1/2] Only look at PRs merged into main --- .roo/commands/release.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.roo/commands/release.md b/.roo/commands/release.md index ec54b804d1..702c5ba892 100644 --- a/.roo/commands/release.md +++ b/.roo/commands/release.md @@ -4,7 +4,7 @@ argument-hint: patch | minor | major --- 1. Identify the SHA corresponding to the most recent release using GitHub CLI: `gh release view --json tagName,targetCommitish,publishedAt` -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)'` +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)'` 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}'` 4. Summarize the changes. If the user did not specify, ask them whether this should be a major, minor, or patch release. 5. Create a changeset in .changeset/v[version].md instead of directly modifying package.json. The format is: From e7e55960ea3c8f32d976b7f1975de915e4d88411 Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Mon, 11 Aug 2025 17:01:19 -0400 Subject: [PATCH 2/2] chore: add changeset for v3.25.11 --- .changeset/v3.25.11.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changeset/v3.25.11.md diff --git a/.changeset/v3.25.11.md b/.changeset/v3.25.11.md new file mode 100644 index 0000000000..b2fa262b4b --- /dev/null +++ b/.changeset/v3.25.11.md @@ -0,0 +1,11 @@ +--- +"roo-cline": patch +--- + +- Fix: Token usage and cost often being underreported (thanks @chrarnoldus!) +- Add: Native OpenAI provider support for Codex Mini model (#5386 by @KJ7LNW, PR by @daniel-lxs) +- Add: IO Intelligence Provider support (thanks @ertan2002!) +- Fix: MCP startup issues and remove refresh notifications (thanks @hannesrudolph!) +- Fix: GPT5 OpenAI provider configuration (thanks @hannesrudolph!) +- Fix: Clarify codebase_search path parameter as optional and improve tool descriptions (thanks @app/roomote!) +- Fix: Bedrock provider workaround for LiteLLM passthrough issues (thanks @jr!)