Skip to content

Commit 44df430

Browse files
Changeset version bump (#11513)
* changeset version bump * fix: update changelog-config to support multi-line entries and restore full v3.48.0 CHANGELOG --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Hannes Rudolph <hrudolph@gmail.com>
1 parent 1b699d9 commit 44df430

File tree

4 files changed

+53
-56
lines changed

4 files changed

+53
-56
lines changed

.changeset/changelog-config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
const getReleaseLine = async (changeset) => {
2-
const [firstLine] = changeset.summary
2+
const lines = changeset.summary
33
.split("\n")
44
.map((l) => l.trim())
55
.filter(Boolean)
6-
return `- ${firstLine}`
6+
return lines.map((line) => (line.startsWith("- ") ? line : `- ${line}`)).join("\n")
77
}
88

99
const getDependencyReleaseLine = async () => {

.changeset/v3.48.0.md

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

CHANGELOG.md

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

3+
## [3.48.0]
4+
5+
- Add Anthropic Claude Sonnet 4.6 support across all providers — Anthropic, Bedrock, Vertex, OpenRouter, and Vercel AI Gateway (PR #11509 by @PeterDaveHello)
6+
- Add lock toggle to pin API config across all modes in a workspace (PR #11295 by @hannesrudolph)
7+
- Fix: Prevent parent task state loss during orchestrator delegation (PR #11281 by @hannesrudolph)
8+
- Fix: Resolve race condition in new_task delegation that loses parent task history (PR #11331 by @daniel-lxs)
9+
- Fix: Serialize taskHistory writes and fix delegation status overwrite race (PR #11335 by @hannesrudolph)
10+
- Fix: Prevent chat history loss during cloud/settings navigation (#11371 by @SannidhyaSah, PR #11372 by @SannidhyaSah)
11+
- Fix: Preserve condensation summary during task resume (#11487 by @SannidhyaSah, PR #11488 by @SannidhyaSah)
12+
- Fix: Resolve chat scroll anchoring and task-switch scroll race conditions (PR #11385 by @hannesrudolph)
13+
- Fix: Preserve pasted images in chatbox during chat activity (PR #11375 by @app/roomote)
14+
- Add disabledTools setting to globally disable native tools (PR #11277 by @daniel-lxs)
15+
- Rename search_and_replace tool to edit and unify edit-family UI (PR #11296 by @hannesrudolph)
16+
- Render nested subtasks as recursive tree in history view (PR #11299 by @hannesrudolph)
17+
- Remove 9 low-usage providers and add retired-provider UX (PR #11297 by @hannesrudolph)
18+
- Remove browser use functionality entirely (PR #11392 by @hannesrudolph)
19+
- Remove built-in skills and built-in skills mechanism (PR #11414 by @hannesrudolph)
20+
- Remove footgun prompting (file-based system prompt override) (PR #11387 by @hannesrudolph)
21+
- Batch consecutive tool calls in chat UI with shared utility (PR #11245 by @hannesrudolph)
22+
- Validate Gemini thinkingLevel against model capabilities and handle empty streams (PR #11303 by @hannesrudolph)
23+
- Add GLM-5 model support to Z.ai provider (PR #11440 by @app/roomote)
24+
- Fix: Prevent double notification sound playback (PR #11283 by @hannesrudolph)
25+
- Fix: Prevent false unsaved changes prompt with OpenAI Compatible headers (#8230 by @hannesrudolph, PR #11334 by @daniel-lxs)
26+
- Fix: Cancel backend auto-approval timeout when auto-approve is toggled off mid-countdown (PR #11439 by @SannidhyaSah)
27+
- Fix: Add follow_up param validation in AskFollowupQuestionTool (PR #11484 by @rossdonald)
28+
- Fix: Prevent webview postMessage crashes and make dispose idempotent (PR #11313 by @0xMink)
29+
- Fix: Avoid zsh process-substitution false positives in assignments (PR #11365 by @hannesrudolph)
30+
- Fix: Harden command auto-approval against inline JS false positives (PR #11382 by @hannesrudolph)
31+
- Fix: Make tab close best-effort in DiffViewProvider.open (PR #11363 by @0xMink)
32+
- Fix: Canonicalize core.worktree comparison to prevent Windows path mismatch failures (PR #11346 by @0xMink)
33+
- Fix: Make removeClineFromStack() delegation-aware to prevent orphaned parent tasks (PR #11302 by @app/roomote)
34+
- Fix task resumption in the API module (PR #11369 by @cte)
35+
- Make defaultTemperature required in getModelParams to prevent silent temperature overrides (PR #11218 by @app/roomote)
36+
- Remove noisy console.warn logs from NativeToolCallParser (PR #11264 by @daniel-lxs)
37+
- Consolidate getState calls in resolveWebviewView (PR #11320 by @0xMink)
38+
- Clean up repo-facing mode rules (PR #11410 by @hannesrudolph)
39+
- Implement ModelMessage storage layer with AI SDK response messages (PR #11409 by @daniel-lxs)
40+
- Extract translation and merge resolver modes into reusable skills (PR #11215 by @app/roomote)
41+
- Add blog section with initial posts to roocode.com (PR #11127 by @app/roomote)
42+
- Replace Roomote Control with Linear Integration in cloud features grid (PR #11280 by @app/roomote)
43+
- Add IPC query handlers for commands, modes, and models (PR #11279 by @cte)
44+
- Add stdin stream mode for the CLI (PR #11476 by @cte)
45+
- Make CLI auto-approve by default with require-approval opt-in (PR #11424 by @cte)
46+
- Update CLI default model from Opus 4.5 to Opus 4.6 (PR #11273 by @app/roomote)
47+
- Add linux-arm64 support for the Roo CLI (PR #11314 by @cte)
48+
- CLI release: v0.0.51 (PR #11274 by @cte)
49+
- CLI release: v0.0.52 (PR #11324 by @cte)
50+
- CLI release: v0.0.53 (PR #11425 by @cte)
51+
- CLI release: v0.0.54 (PR #11477 by @cte)
52+
353
## [3.45.0] - 2026-01-27
454

555
![3.45.0 Release - Smart Code Folding](/releases/3.45.0-release.png)

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "%extension.displayName%",
44
"description": "%extension.description%",
55
"publisher": "RooVeterinaryInc",
6-
"version": "3.47.3",
6+
"version": "3.48.0",
77
"icon": "assets/icons/icon.png",
88
"galleryBanner": {
99
"color": "#617A91",

0 commit comments

Comments
 (0)