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

Commit afc588b

Browse files
authored
Release v3.41.0 (#10746)
1 parent dba76f5 commit afc588b

22 files changed

Lines changed: 70 additions & 58 deletions

File tree

.changeset/v3.41.0.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
"roo-cline": minor
3+
---
4+
5+
![3.41.0 Release - OpenAI Codex Provider](/releases/3.41.0-release.png)
6+
7+
- Add OpenAI Codex provider with OAuth subscription authentication, enabling seamless integration with OpenAI's new Codex platform (PR #10736 by @hannesrudolph)
8+
- Add gpt-5.2-codex model to openai-native provider, providing access to the latest GPT model with enhanced coding capabilities (PR #10731 by @hannesrudolph)
9+
- Fix: Clear terminal output buffers to prevent memory leaks that could cause gray screens and performance degradation (#10666, PR #7666 by @hannesrudolph)
10+
- Fix: Inject dummy thought signatures on ALL tool calls for Gemini models, resolving issues with Gemini tool call handling through LiteLLM (PR #10743 by @daniel-lxs)
11+
- Enable E2E tests with 39 passing tests, improving test coverage and reliability (PR #10720 by @ArchimedesCrypto)
12+
- Add alwaysAllow config for MCP time server tools in E2E tests (PR #10733 by @ArchimedesCrypto)

releases/3.41.0-release.png

1.24 MB
Loading

src/core/webview/ClineProvider.ts

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

158158
public isViewLaunched = false
159159
public settingsImportedAt?: number
160-
public readonly latestAnnouncementId = "jan-2026-v3.40.0-settings-search-stop-button-api-fixes" // v3.40.0 Settings Search, Stop Button UX, API Fixes
160+
public readonly latestAnnouncementId = "jan-2026-v3.41.0-openai-codex-provider-gpt52-fixes" // v3.41.0 OpenAI Codex Provider, GPT-5.2-codex, Bug Fixes
161161
public readonly providerSettingsManager: ProviderSettingsManager
162162
public readonly customModesManager: CustomModesManager
163163

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +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.settingsSearch")}</li>
48-
<li>{t("chat:announcement.release.stopButtonUX")}</li>
49-
<li>{t("chat:announcement.release.apiCompatibility")}</li>
47+
<li>{t("chat:announcement.release.openaiCodexProvider")}</li>
48+
<li>{t("chat:announcement.release.gpt52codexModel")}</li>
49+
<li>{t("chat:announcement.release.bugFixes")}</li>
5050
</ul>
5151
</div>
5252

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

Lines changed: 3 additions & 3 deletions
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 & 3 deletions
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -342,9 +342,9 @@
342342
},
343343
"release": {
344344
"heading": "What's New:",
345-
"settingsSearch": "Quickly find and navigate to specific settings with the new settings search.",
346-
"stopButtonUX": "Switched from a big obtrusive cancel button to a more tasteful stop button.",
347-
"apiCompatibility": "Resolved API issues with Gemini, MCP tool names, and parallel tool calls."
345+
"openaiCodexProvider": "Added OpenAI - ChatGPT Plus/Pro Provider that gives subscription-based access to Codex models without per-token costs.",
346+
"gpt52codexModel": "Added the new gpt-5.2-codex model to Roo Code Router, the standard OpenAI provider, and more.",
347+
"bugFixes": "Fixed memory leaks causing gray screens, Gemini thought signature issues, and more stability improvements."
348348
},
349349
"cloudAgents": {
350350
"heading": "New in the Cloud:",

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

Lines changed: 3 additions & 3 deletions
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 & 3 deletions
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 & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)