diff --git a/CHANGELOG.md b/CHANGELOG.md index 86c853cd60..3c0c625e12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [3.68.0] + +### Added + +- Add dynamic Cline provider model fetching from Cline endpoint +- Add additional Markdown formatting in CLI +- Add focus indicator on action buttons in extension + +### Fixed + +- Clear all OCA secrets on auth refresh failure to prevent re-auth loops +- Resolve "Could not find the file context" error in Explain Changes +- Use `JSON_SCHEMA` for `yaml.load` to prevent unsafe deserialization +- Fetch model info from API in CLI headless auth for Cline and Vercel providers +- Generate commit message from staged changes only when staging exists +- Update stale `maxTokens` values for Claude 3.7+ models across Anthropic, Bedrock, Vertex, and SAP AI Core +- Use `model.info.maxTokens` for OpenRouter instead of hardcoded `8192` + +### Changed + +- Increase timeout for a flaky test to reduce short-term test instability + ## [3.67.1] ### Added diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 43615ec8e3..3efe19ce57 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,16 @@ # cline +## [2.5.1] + +### Added + +- Expanded CLI markdown rendering support (headings, lists, blockquotes, fenced code blocks, links, and nested lists). + +### Fixed + +- Fixed CLI headless auth provider model metadata loading for Cline and Vercel AI Gateway by fetching model info from API with cache fallback. +- Increased flaky CLI import test timeout on Windows CI to reduce intermittent test failures. + ## [2.5.0] ### Added diff --git a/cli/package.json b/cli/package.json index 224630605c..41250784d9 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "cline", - "version": "2.5.0", + "version": "2.5.1", "description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more", "main": "dist/lib.mjs", "types": "dist/lib.d.ts", diff --git a/package-lock.json b/package-lock.json index 0242847d19..510e0343fd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "claude-dev", - "version": "3.67.1", + "version": "3.68.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "claude-dev", - "version": "3.67.1", + "version": "3.68.0", "license": "Apache-2.0", "workspaces": [ ".", diff --git a/package.json b/package.json index 98dbdeaacc..9f1f572720 100644 --- a/package.json +++ b/package.json @@ -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.67.1", + "version": "3.68.0", "icon": "assets/icons/icon.png", "workspaces": [ ".",