From f5f1071af25f0c08135fbdb7cf605cf9168672de Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Sat, 8 Aug 2026 19:00:03 -0700 Subject: [PATCH] chore(sdk): release v0.0.72 --- bun.lock | 10 +++++----- sdk/CHANGELOG.md | 14 ++++++++++++++ sdk/packages/agents/package.json | 2 +- sdk/packages/core/package.json | 2 +- sdk/packages/llms/package.json | 2 +- sdk/packages/sdk/package.json | 2 +- sdk/packages/shared/package.json | 2 +- 7 files changed, 24 insertions(+), 10 deletions(-) diff --git a/bun.lock b/bun.lock index 3fe46c6410..0ebd237693 100644 --- a/bun.lock +++ b/bun.lock @@ -626,7 +626,7 @@ }, "sdk/packages/agents": { "name": "@cline/agents", - "version": "0.0.71", + "version": "0.0.72", "dependencies": { "@cline/llms": "workspace:*", "@cline/shared": "workspace:*", @@ -635,7 +635,7 @@ }, "sdk/packages/core": { "name": "@cline/core", - "version": "0.0.71", + "version": "0.0.72", "dependencies": { "@cline/agents": "workspace:*", "@cline/llms": "workspace:*", @@ -673,7 +673,7 @@ }, "sdk/packages/llms": { "name": "@cline/llms", - "version": "0.0.71", + "version": "0.0.72", "dependencies": { "@ai-sdk/amazon-bedrock": "^5", "@ai-sdk/anthropic": "^4", @@ -715,14 +715,14 @@ }, "sdk/packages/sdk": { "name": "@cline/sdk", - "version": "0.0.71", + "version": "0.0.72", "dependencies": { "@cline/core": "workspace:*", }, }, "sdk/packages/shared": { "name": "@cline/shared", - "version": "0.0.71", + "version": "0.0.72", "dependencies": { "aws4fetch": "^1.0.20", "jsonrepair": "^3.13.2", diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index e0c7bc292b..5906d5f3f8 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -1,5 +1,19 @@ # Cline SDK Changelog +## 0.0.72 + +- Prompts queued during a turn now survive being interrupted: they are preserved across user-initiated aborts, drained after a turn aborts itself, and edits made to the queue inside the abort window are applied rather than lost. Stopping a session now has consistent full-stop semantics across hosts +- Session context stays durable across aborts and hub restarts, so an interrupted session resumes with the state it had rather than a reset one +- Queued turns that fail are now reported as `run.failed` instead of completing silently +- A hung MCP server no longer takes down session creation, and stdio servers that were never configured get a 30-second initialize budget instead of blocking indefinitely +- Remote SSE MCP servers now surface an OAuth authorization prompt on a 401 instead of failing outright, and remote MCP supports pre-registered OAuth clients for setups where dynamic client registration isn't available +- LiteLLM requests route through Chat Completions instead of the Responses API, fixing calls against LiteLLM proxies +- Network interruptions that happen mid-stream but before any model output are retried instead of failing the turn +- Vertex ADC token refreshes use the configured fetch, so they work behind proxies and custom transports +- Checkpoint diffs now include files that were untracked when the snapshot was taken, and checkpoints are picked up when git is initialized part-way through a session +- Plugin settings and contributions are centralized in the hub, with host-aware snapshots and atomic host plugin toggles; a source host no longer runs a foreign compiled plugin-sandbox bootstrap +- Scheduled run reports carry execution context — readable headers, schedule metadata, durations, and lifecycle error details + ## 0.0.71 - Reasoning settings now resolve portably across AI SDK providers — effort levels and enable/disable flags map to the AI SDK's native reasoning setting (including Ollama), replacing the per-provider thinking overrides, and an explicit request to disable reasoning now takes priority diff --git a/sdk/packages/agents/package.json b/sdk/packages/agents/package.json index aacf402847..4a2cac172f 100644 --- a/sdk/packages/agents/package.json +++ b/sdk/packages/agents/package.json @@ -1,6 +1,6 @@ { "name": "@cline/agents", - "version": "0.0.71", + "version": "0.0.72", "repository": { "type": "git", "url": "https://github.com/cline/cline", diff --git a/sdk/packages/core/package.json b/sdk/packages/core/package.json index 6a1c43d05a..d32226933d 100644 --- a/sdk/packages/core/package.json +++ b/sdk/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@cline/core", "description": "Cline Core SDK for Node Runtime", - "version": "0.0.71", + "version": "0.0.72", "repository": { "type": "git", "url": "https://github.com/cline/cline", diff --git a/sdk/packages/llms/package.json b/sdk/packages/llms/package.json index b4e8eaf00f..0503d83515 100644 --- a/sdk/packages/llms/package.json +++ b/sdk/packages/llms/package.json @@ -1,6 +1,6 @@ { "name": "@cline/llms", - "version": "0.0.71", + "version": "0.0.72", "description": "Config-driven SDK for selecting, extending, and instantiating LLM providers and models", "repository": { "type": "git", diff --git a/sdk/packages/sdk/package.json b/sdk/packages/sdk/package.json index f5fdbb600f..7509f023a5 100644 --- a/sdk/packages/sdk/package.json +++ b/sdk/packages/sdk/package.json @@ -1,7 +1,7 @@ { "name": "@cline/sdk", "description": "Cline SDK - user-facing alias for @cline/core", - "version": "0.0.71", + "version": "0.0.72", "repository": { "type": "git", "url": "https://github.com/cline/cline", diff --git a/sdk/packages/shared/package.json b/sdk/packages/shared/package.json index f1805feae4..a573d3e06b 100644 --- a/sdk/packages/shared/package.json +++ b/sdk/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@cline/shared", - "version": "0.0.71", + "version": "0.0.72", "description": "Shared utilities, types, and schemas for Cline packages", "repository": { "type": "git",