Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit bd94c80

Browse files
committed
chore: add changeset for v3.46.0
1 parent b5ae557 commit bd94c80

22 files changed

Lines changed: 81 additions & 20 deletions

File tree

.changeset/v3.46.0.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
"roo-cline": minor
3+
---
4+
5+
![3.46.0 Release - Parallel Processing Power](/releases/3.46.0-release.png)
6+
7+
- Parallel tool calls enabled by default for improved performance (PR #11031 by @daniel-lxs)
8+
- Codex-inspired read_file refactor introduces indentation mode for extracting complete semantic code blocks without mid-function truncation, ideal when targeting specific lines from search results or errors (#10239 by @pwilkin, PR #10981 by @hannesrudolph)
9+
- Lossless terminal output with new read_command_output tool allows retrieving full command output from truncated executions with pagination and regex filtering (#10941 by @hannesrudolph, PR #10944 by @hannesrudolph)
10+
- New skill system replaces fetch_instructions with a dedicated skill tool and built-in skills for create-mcp-server and create-mode, with configurable skill locations and mandatory skill checks (#11062 by @hannesrudolph, PR #11084 by @hannesrudolph)
11+
- Skills management UI added to settings panel for managing workspace and global skills (#10513 by @SannidhyaSah, PR #10844 by @SannidhyaSah)
12+
- AI SDK provider migrations: Moonshot (PR #11063 by @daniel-lxs), DeepSeek (PR #11079 by @daniel-lxs), Cerebras (PR #11086 by @daniel-lxs), Groq (PR #11088 by @daniel-lxs), and Fireworks (PR #11118 by @daniel-lxs) now use the AI SDK for better streaming and tool support
13+
- Add OpenAI-compatible base provider infrastructure for AI SDK migrations (PR #11063 by @daniel-lxs)
14+
- Add AI SDK dependencies and message conversion utilities (PR #11047 by @daniel-lxs)
15+
- React Compiler integration added to webview-ui for automatic memoization and performance improvements (#9916 by @In-line, PR #9565 by @In-line)
16+
- Fix: Include reserved output tokens in task header percentage calculation (PR #11034 by @app/roomote)
17+
- Fix: Calculate header percentage based on available input space (PR #11054 by @app/roomote)
18+
- Fix: Prevent time-travel bug in parallel tool calling (PR #11046 by @daniel-lxs)
19+
- Docs: Clarify read_command_output search param should be omitted when not filtering (PR #11056 by @hannesrudolph)
20+
- Add pnpm serve command for code-server development (PR #10964 by @mrubens)
21+
- Update Next.js to latest version (PR #11108 by @cte)
22+
- Replace bespoke navigation menu with shadcn navigation menu on website (PR #11117 by @app/roomote)
23+
- Add Linear integration marketing page to website (PR #11028 by @app/roomote)

releases/3.46.0-release.png

1.35 MB
Loading

src/core/webview/ClineProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export class ClineProvider
158158

159159
public isViewLaunched = false
160160
public settingsImportedAt?: number
161-
public readonly latestAnnouncementId = "jan-2026-v3.45.0-smart-code-folding" // v3.45.0 Smart Code Folding
161+
public readonly latestAnnouncementId = "jan-2026-v3.46.0-parallel-tools" // v3.46.0 Parallel Tools & Smarter Reading
162162
public readonly providerSettingsManager: ProviderSettingsManager
163163
public readonly customModesManager: CustomModesManager
164164

webview-ui/src/components/chat/Announcement.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ const Announcement = ({ hideAnnouncement }: AnnouncementProps) => {
4444
<div className="mb-4">
4545
<p className="mb-3">{t("chat:announcement.release.heading")}</p>
4646
<ul className="list-disc list-inside text-sm space-y-1.5">
47-
<li>{t("chat:announcement.release.smartCodeFolding")}</li>
47+
<li>{t("chat:announcement.release.parallelTools")}</li>
48+
<li>{t("chat:announcement.release.readFileIndentation")}</li>
49+
<li>{t("chat:announcement.release.readCommandOutput")}</li>
4850
</ul>
4951
</div>
5052

webview-ui/src/i18n/locales/ca/chat.json

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/de/chat.json

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/en/chat.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,9 @@
347347
},
348348
"release": {
349349
"heading": "What's New:",
350-
"smartCodeFolding": "Smart Code Folding: Context condensation now preserves a lightweight map of your files: function signatures, class declarations, and type definitions. This provides better continuity after condensing and smarter edits when referencing previous work."
350+
"parallelTools": "Parallel Tool Calls: Tools now execute in parallel by default, significantly speeding up multi-file operations and complex tasks.",
351+
"readFileIndentation": "Smarter File Reading: New indentation mode extracts complete semantic code blocks (functions, classes) without mid-function truncation—ideal when targeting specific lines from search results.",
352+
"readCommandOutput": "Lossless Terminal Output: New read_command_output tool retrieves full command output from truncated executions with pagination and regex filtering."
351353
},
352354
"cloudAgents": {
353355
"heading": "New in the Cloud:",

webview-ui/src/i18n/locales/es/chat.json

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/fr/chat.json

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/hi/chat.json

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)