Compare commits

...

2 Commits

Author SHA1 Message Date
canvrno b4ce378e4b v3.38.3 Release Notes (#7711)
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
2025-11-26 15:59:16 -08:00
CandiedUniverse 2f60a898af fix(hooks): Fix issue identified by linter in proto file (#7707) 2025-11-26 14:50:12 -08:00
23 changed files with 24 additions and 98 deletions
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Fix: do not retry request automatically on auth failure.
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": minor
---
Add support for sonar and sonar-pro models to SAP AI Core Provider
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Remove native tool calling feature flag
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Fix task timeline display height.
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Ensure tool arguments are streamed during file operations when native tool calling is enabled.
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
feat(context): add context window error detection for vercel ai gateway
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Added thinking level setting for Gemini 3.0 Pro
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Feat: add thought signature support for Gemini SDK
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Adding Grok 4.1 and Grok code in Cline.
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Feat: Enable native tool calling for Baseten and Kimi K2 models
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Fixed SAP AI Core models running in deployment mode
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Cerebras models updated as of 2025-11-23
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Replaces generic robot icon with Cline logo across VS Code UI
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": minor
---
Add Kimi K2 Thinking to Baseten Provider
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Remind models of new_task tool parameters when deep_planning is invoked
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
McpHub, Ollama and link-preview support HTTP proxies.
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Skip MCP tool with invalid name (e.g. name too long) when native tool calling is enabled.
-5
View File
@@ -1,5 +0,0 @@
---
"claude-dev": patch
---
Fix Anthropic provider missing signature param when thinking is enabled.
+13
View File
@@ -1,5 +1,18 @@
# Changelog
## [3.38.3]
- Task export feature now opens the task directory, allowing easy access to the full task files
- Added Grok 4.1 and Grok Code to XAI provider
- Enabled native tool calling for Baseten and Kimi K2 models
- Added thinking level to Gemini 3.0 Pro preview
- Expanded Hooks functionality
- Removed Task Timeline from Task Header
- Bug fix for slash commands
- Bug fixes for Vertex provider
- Bug fixes for thinking/reasoning issues across multiple providers when using native tool calling
- Bug fixes for terminal usage on Windows devices
## [3.38.2]
- Add Claude Opus 4.5
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "claude-dev",
"version": "3.38.2",
"version": "3.38.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "claude-dev",
"version": "3.38.2",
"version": "3.38.3",
"license": "Apache-2.0",
"dependencies": {
"@anthropic-ai/sdk": "^0.37.0",
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "claude-dev",
"displayName": "Cline",
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
"version": "3.38.2",
"version": "3.38.3",
"icon": "assets/icons/icon.png",
"engines": {
"vscode": "^1.84.0"
+1 -1
View File
@@ -225,7 +225,7 @@ message ToggleWorkflowRequest {
message HookInfo {
string name = 1;
bool enabled = 2;
string absolutePath = 3;
string absolute_path = 3;
}
message WorkspaceHooks {
@@ -53,18 +53,21 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
<XIcon />
</Button>
<h4 style={h4TitleStyle}>
🎉{" "}New in v{minorVersion}
🎉{" "}New in v{version}
</h4>
<ul style={ulStyle}>
<li>
<strong>MiniMax-M2</strong> is currently free to use in Cline!
</li>
<li>
<strong>Gemini 3 Pro Preview</strong> is now available with SOTA reasoning and coding capabilities.
<strong>Gemini 3 Pro Preview</strong> and <strong>Claude Opus 4.5</strong> are available with SOTA reasoning
and coding capabilities.
</li>
<li>
<strong>AquaVoice's Avalon</strong> model scores 97.3% accuracy on AISpeak and now powers voice-to-text
dictation.
<strong>Bug fixes,</strong> expanded features, and more! Check out the{" "}
<VSCodeLink href="https://github.com/cline/cline/blob/main/CHANGELOG.md" style={linkStyle}>
changelog
</VSCodeLink>
</li>
</ul>
<div style={hrStyle} />