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

Commit 826e6da

Browse files
authored
chore: add changeset for v3.44.0 (#10987)
1 parent 2391a0f commit 826e6da

22 files changed

Lines changed: 60 additions & 20 deletions

File tree

.changeset/v3.44.0.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
"roo-cline": minor
3+
---
4+
5+
![3.44.0 Release - Worktrees](/releases/3.44.0-release.png)
6+
7+
- Add worktree selector and creation UX (PR #10940 by @brunobergher)
8+
- Fix: Prevent nested condensing from including previously-condensed content (PR #10985 by @hannesrudolph)
9+
- Fix: VS Code LM token counting returns 0 outside requests, breaking context condensing (#10968 by @srulyt, PR #10983 by @daniel-lxs)
10+
- Fix: Record truncation event when condensation fails but truncation succeeds (PR #10984 by @hannesrudolph)
11+
- Improve subtask visibility and navigation in history and chat views (PR #10864 by @brunobergher)
12+
- Add wildcard support for MCP alwaysAllow configuration (PR #10948 by @app/roomote)
13+
- Replace hyphen encoding with fuzzy matching for MCP tool names (PR #10775 by @daniel-lxs)
14+
- Remove MCP SERVERS section from system prompt for cleaner prompts (PR #10895 by @daniel-lxs)
15+
- new_task tool creates checkpoint the same way write_to_file does (PR #10982 by @daniel-lxs)
16+
- Update Fireworks provider with new models (#10674 by @hannesrudolph, PR #10679 by @ThanhNguyxn)
17+
- Fix: Truncate AWS Bedrock toolUseId to 64 characters (PR #10902 by @daniel-lxs)
18+
- Fix: Restore opaque background to settings section headers (PR #10951 by @app/roomote)
19+
- Fix: Remove unsupported Fireworks model tool fields (PR #10937 by @app/roomote)
20+
- Update and improve zh-TW Traditional Chinese locale and docs (PR #10953 by @PeterDaveHello)
21+
- Chore: Remove POWER_STEERING experiment remnants (PR #10980 by @hannesrudolph)

releases/3.44.0-release.png

1.93 MB
Loading

src/core/webview/ClineProvider.ts

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

160160
public isViewLaunched = false
161161
public settingsImportedAt?: number
162-
public readonly latestAnnouncementId = "jan-2026-v3.43.0-intelligent-context-condensation" // v3.43.0 Intelligent Context Condensation
162+
public readonly latestAnnouncementId = "jan-2026-v3.44.0-worktrees" // v3.44.0 Worktrees
163163
public readonly providerSettingsManager: ProviderSettingsManager
164164
public readonly customModesManager: CustomModesManager
165165

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

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,12 @@ 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.intelligentContextCondensation")}</li>
47+
<li>
48+
<Trans
49+
i18nKey="chat:announcement.release.worktrees"
50+
components={{ settingsLink: <WorktreesSettingsLink /> }}
51+
/>
52+
</li>
4853
</ul>
4954
</div>
5055

@@ -122,4 +127,18 @@ const CareersLink = ({ children }: { children?: ReactNode }) => (
122127
</VSCodeLink>
123128
)
124129

130+
const WorktreesSettingsLink = ({ children }: { children?: ReactNode }) => (
131+
<VSCodeLink
132+
href="#"
133+
onClick={(e) => {
134+
e.preventDefault()
135+
window.postMessage(
136+
{ type: "action", action: "settingsButtonClicked", values: { section: "worktrees" } },
137+
"*",
138+
)
139+
}}>
140+
{children}
141+
</VSCodeLink>
142+
)
143+
125144
export default memo(Announcement)

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

Lines changed: 1 addition & 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: 1 addition & 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@
346346
},
347347
"release": {
348348
"heading": "What's New:",
349-
"intelligentContextCondensation": "Intelligent Context Condensing v2: A complete rework of the algorithm used to manage the context window. Now you can run tasks for longer without Roo getting dumber."
349+
"worktrees": "Worktrees: Work on multiple branches simultaneously with Git worktrees. Each worktree gets its own VS Code window with Roo Code, enabling parallel development without branch switching. <settingsLink>Try it out</settingsLink>"
350350
},
351351
"cloudAgents": {
352352
"heading": "New in the Cloud:",

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

Lines changed: 1 addition & 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: 1 addition & 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: 1 addition & 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)