TRULYSOVEREIGN AI · RADAR

Claude Platform release notes

18 published items · status healthy · last successful fetch 2026-09-24 04:30 UTC
Feed for this sourceRSS
ACTION NEEDED MODELAPIPRICINGDEPRECATION Claude Platform release notes · 2026-09-23 21:12 UTC

Claude Opus 5.5 released with breaking API changes, September 22, 2026

DOGrep your codebase for "thinking": {"type" and tool_choice references.
WHAT CHANGEDClaude Opus 5.5 (claude-opus-5-5) launched with 1M token context, 128k max output, $4/$20 per MTok (down from Opus 5's $5/$25). On this model, thinking: {"type": "disabled"} and thinking: {"type": "enabled"} now return 400 errors; tool_choice types "any" and "tool" also return 400. On Claude API and Google Cloud, computer_20251124 tool returns 400 and requires computer_toolset_20260801 instead. Amazon Bedrock still accepts computer_20251124.
WHY IT MATTERSExisting code that sets thinking parameters or uses tool_choice "any"/"tool" will break with 400 errors if you switch to Opus 5.5. Code using computer_20251124 on Claude API or Google Cloud will also break. If you have hardcoded model names or auto-upgrade logic, you may hit these errors without intending to migrate.
WHAT TO DOGrep your codebase for "thinking": {"type" and tool_choice references. If found, pin to claude-opus-5 in model selection logic until you can remove those parameters and migrate computer use toolsets per the migration guide. If you do not use these features, verify your model selection does not auto-upgrade, then test Opus 5.5 in staging to confirm 20% cost savings apply to your workload.
CONFIDENCE 95% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
+## Claude Platform release notes — September 22, 2026
+https://platform.claude.com/docs/en/release-notes/overview#september-22-2026
+Tue, 22 Sep 2026 00:00:00 GMT
+
+We've launched Claude Opus 5.5 (claude-opus-5-5), a model for long-running agentic coding and knowledge work. It has a 1M token context window by default, 128k max output tokens, and always-on adaptive thinking, at $4 / $20 USD per MTok (Claude Opus 5 is $5 / $25). Claude Opus 5.5 is available on the Claude API, Claude in Amazon Bedrock, Claude Platform on AWS, Claude on Google Cloud, and Claude in Microsoft Foundry. See What's new in Claude Opus 5.5 for capabilities, API changes, and migration guidance.
+On Claude Opus 5.5, thinking can't be disabled: thinking: {"type": "disabled"} and thinking: {"type": "enabled", ...} return a 400 error. Omit the thinking field and control thinking depth with the effort parameter. tool_choice types any and tool also return a 400 error, as on Claude Fable 5.1; use auto with strict tool use. On the Claude API and Google Cloud, computer use on this model requires the computer_toolset_20260801 toolset and the earlier computer_20251124 tool returns a 400 error; on Amazon Bedrock, computer_20251124 keeps working. See the migration guide.
+Fast mode (research preview) is available for Claude Opus 5.5 on the Claude API.
+Tools can now be defined inside a mid-conversation system message, in beta on the Claude API with the inline-tools-2026-09-15 beta header. A tool_addition block can carry the tool's full definition (tool: {"type": "tool_definition", "definition": {...}}), so you can add a tool, change its schema, or move a server tool to a newer version without editing tools or invalidating the prompt cache. The same header covers adding and removing tools by reference. With the MCP connector's mcp-client-2026-09-15 beta header as well, the definition can be an MCP toolset, and a response records each server's fetched tool list in an mcp_tool_listing block, which pins that list when you send it back.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.98, needed 0.45
triage reasoningNew model release with pricing, breaking API changes, and feature availability across platforms.
signalsnew model released (Claude Opus 5.5) · pricing change (Opus 5.5: $4/$20 vs Opus 5: $5/$25) · breaking API changes (thinking parameter disabled, tool_choice restrictions) · context window specification (1M tokens) · max output tokens specified (128k) · new feature availability (fast mode, inline tools beta) · toolset deprecation (computer_20251124 returns 400 on Claude API) · multi-platform availability statement
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING APIMODEL Claude Platform release notes · 2026-09-22 03:48 UTC

New beta header exposes thinking block prefix mismatches without enforcement

DOAdd the thinking-binding-controls-2026-08-01 header to requests on Claude Fable 5.1, log all thinking_mismatch_allowed entries for one week, and audit any history-editin…
WHAT CHANGEDThe thinking-binding-controls-2026-08-01 beta header adds a thinking_mismatch_allowed entry type to input_transformations responses. This flags thinking blocks that fail prefix validation but are not rejected—specifically on Claude Fable 5.1 requests from accounts created before August 31, 2026, when prefix_mismatch_behavior is unset. The flagged blocks still reach the model unchanged.
WHY IT MATTERSIf you edit conversation history containing thinking blocks, the model may receive inconsistent context without your knowledge. This header lets you detect those edits in production traffic before enforcement becomes mandatory for your account, preventing silent context corruption that could degrade model behavior.
WHAT TO DOAdd the thinking-binding-controls-2026-08-01 header to requests on Claude Fable 5.1, log all thinking_mismatch_allowed entries for one week, and audit any history-editing code paths that trigger them. If you find mismatches, either stop editing thinking blocks or set prefix_mismatch_behavior explicitly before the August 31 cutoff applies to your account.
CONFIDENCE 75% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 https://platform.claude.com/docs/en/release-notes/overview#september-14-2026
 Mon, 14 Sep 2026 00:00:00 GMT
 
-The Messages API can now compact a conversation on demand on the Claude API, in beta with the compact-2026-09-04 beta header. Send the top-level compaction parameter, and the API returns a signed compaction block that summarizes the messages you sent. On later requests, send that block first, in place of those messages. You choose when to compact, the request can run in the background, and you can keep recent turns word for word after the summary. On models with preserved thinking, the thinking in those kept turns can stay valid.
+The Messages API can now compact a conversation on demand on the Claude API, in beta with the compact-2026-09-04 beta header. Send the top-level compaction parameter, and the API returns a signed compaction block that summarizes the messages you sent. On later requests, send that block first, in place of those messages. You choose when to compact, the request can run in the background, and you can keep recent turns word for word after the summary. On models with preserved thinking, the thinking in those kept turns can stay valid.
+With the thinking-binding-controls-2026-08-01 beta header, the input_transformations response field gains a second entry type, thinking_mismatch_allowed. It names a thinking block that failed the prefix check on a request where the API doesn't enforce that check: on Claude Fable 5.1, for example, a request from an account created before August 31, 2026, with prefix_mismatch_behavior unset. The block still reaches the model unchanged. Log these entries to find history edits in production traffic before you opt into enforcement. See Set the mismatch behavior and read input_transformations.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.92, needed 0.45
triage reasoningNew beta API feature with date-gated behavior and enforcement controls affects how engineers handle thinking blocks.
signalsnew beta feature with specific header (thinking-binding-controls-2026-08-01) · new response field type (thinking_mismatch_allowed) · new API behavior affecting model input handling · date-gated behavior (accounts created before August 31, 2026) · enforcement opt-in mechanism introduced · breaking change potential for existing thinking implementations
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING APIMODEL Claude Platform release notes · 2026-09-21 23:42 UTC

Messages API adds on-demand conversation compaction in beta

DOTest the beta header `compact-2026-09-04` in a non-production environment with one long-running conversation flow.
WHAT CHANGEDThe Messages API now supports a `compaction` parameter (beta header `compact-2026-09-04`) that returns a signed compaction block summarizing sent messages. This block replaces the original messages in subsequent requests while preserving recent turns verbatim.
WHY IT MATTERSLong-running conversations currently hit context limits or incur cumulative token costs. This allows you to compress conversation history server-side while keeping recent exchanges intact, reducing both token usage and request size without losing conversation continuity.
WHAT TO DOTest the beta header `compact-2026-09-04` in a non-production environment with one long-running conversation flow. Measure token reduction and verify that responses remain coherent when using the compaction block instead of full message history.
CONFIDENCE 85% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
+## Claude Platform release notes — September 14, 2026
+https://platform.claude.com/docs/en/release-notes/overview#september-14-2026
+Mon, 14 Sep 2026 00:00:00 GMT
+
+The Messages API can now compact a conversation on demand on the Claude API, in beta with the compact-2026-09-04 beta header. Send the top-level compaction parameter, and the API returns a signed compaction block that summarizes the messages you sent. On later requests, send that block first, in place of those messages. You choose when to compact, the request can run in the background, and you can keep recent turns word for word after the summary. On models with preserved thinking, the thinking in those kept turns can stay valid.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.92, needed 0.45
triage reasoningNew API capability with beta header and parameter changes how developers structure conversation requests.
signalsnew API feature announced · beta header introduced (compact-2026-09-04) · new top-level parameter (compaction) · changes conversation handling workflow · affects request structure and API contract
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING APIMODEL Claude Platform release notes · 2026-09-11 03:26 UTC

Claude Managed Agents adds auto permission mode and live terminal attachment

DOReview your agent permission policy configurations and decide whether to adopt auto mode or continue with existing policies.
WHAT CHANGEDClaude Managed Agents now supports an 'auto' permission policy mode where the server evaluates each tool call and either runs it, denies it, or pauses for approval. The agent.tool_use and agent.mcp_tool_use events now include an 'evaluation' field reporting how each call was evaluated. The ant CLI adds 'ant beta:sessions connect' command to attach a terminal to live agent sessions, with an optional --web flag to serve the session viewer locally.
WHY IT MATTERSIf you are running Claude Managed Agents with custom permission policies, the new auto mode changes how tool call authorization works—the server now makes evaluation decisions instead of requiring you to implement all logic client-side. The new evaluation field in events means your logging or monitoring code may need updates to capture this data. The CLI command provides a new debugging path that bypasses your application's session handling.
WHAT TO DOReview your agent permission policy configurations and decide whether to adopt auto mode or continue with existing policies. Update any event handlers that parse agent.tool_use or agent.mcp_tool_use events to handle the new evaluation field. Test the ant beta:sessions connect command in development to understand how it interacts with your session management.
CONFIDENCE 75% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
+## Claude Platform release notes — September 10, 2026
+https://platform.claude.com/docs/en/release-notes/overview#september-10-2026
+Thu, 10 Sep 2026 00:00:00 GMT
+
+Claude Managed Agents permission policies now include auto: the server evaluates each agent or MCP tool call and runs it, denies it, or pauses for your approval. agent.tool_use and agent.mcp_tool_use events report how each call was evaluated in an evaluation field alongside evaluated_permission. See Let the server evaluate each call with auto.
+The ant CLI adds ant beta:sessions connect, which attaches your terminal to a Claude Managed Agents session. You can follow the session live, send messages, and allow or deny tool calls that are waiting for approval. Pass --web to serve the Claude Console's session viewer locally and open the session there instead. See Connect to a Managed Agents session from your terminal.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.92, needed 0.45
triage reasoningNew agent permission modes, API fields, and CLI commands affect how teams integrate and control Claude Managed Agents.
signalsnew feature: auto permission policy mode for Claude Managed Agents · new API field: evaluation field in agent.tool_use and agent.mcp_tool_use events · new CLI command: ant beta:sessions connect · new capability: terminal attachment to live agent sessions · new parameter: --web flag for local console serving
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
FYI APIMODEL Claude Platform release notes · 2026-09-09 20:34 UTC

Per-message effort changes now available on Google Cloud Claude models

DOIf you use Claude on Google Cloud and want per-message effort control, test the mid-conversation-output-config-2026-07-01 header with one of the three supported models i…
WHAT CHANGEDPer-message effort changes (beta) are now supported on Google Cloud for Claude Fable 5.1, Claude Mythos 5.1, and Claude Opus 5. This requires the mid-conversation-output-config-2026-07-01 beta header, matching the existing implementation on other platforms.
WHY IT MATTERSIf you run Claude on Google Cloud and want to adjust model effort mid-conversation (for example, switching between speed and quality), you can now do so without changing platforms. Previously this beta feature was unavailable on Google Cloud deployments.
WHAT TO DOIf you use Claude on Google Cloud and want per-message effort control, test the mid-conversation-output-config-2026-07-01 header with one of the three supported models in a non-production environment to verify the behavior matches your use case.
CONFIDENCE 85% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 https://platform.claude.com/docs/en/release-notes/overview#september-3-2026
 Thu, 03 Sep 2026 00:00:00 GMT
 
-Version 1.30.0 of the ant CLI adds ant apply, which creates and updates agents, environments, skills, memory stores, and deployments from files in your repository. Describe each resource in a file, run ant apply, and approve the plan it prints. Commit the claude-lock.json lockfile it writes so that later runs, on your machine or in CI, update the same resources instead of creating new ones. See Manage resources as code with ant apply.
+Version 1.30.0 of the ant CLI adds ant apply, which creates and updates agents, environments, skills, memory stores, and deployments from files in your repository. Describe each resource in a file, run ant apply, and approve the plan it prints. Commit the claude-lock.json lockfile it writes so that later runs, on your machine or in CI, update the same resources instead of creating new ones. See Manage resources as code with ant apply.
+Per-message effort changes, in beta, are also available on Google Cloud for Claude Fable 5.1, Claude Mythos 5.1, and Claude Opus 5, with the same mid-conversation-output-config-2026-07-01 beta header.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.72, needed 0.45
triage reasoningNew beta feature (per-message effort changes) now available on Google Cloud for specific Claude models with required API header.
signalsnew feature announcement · beta feature availability on new platform · new models listed with feature support · specific API header requirement mentioned
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING APIMODEL Claude Platform release notes · 2026-09-03 10:48 UTC

Audio files from code execution now carry C2PA credentials

DOTest your audio file handling pipeline with code-execution-generated audio from Fable 5.1 or Mythos 5.1.
WHAT CHANGEDAs of September 1, 2026, audio files generated by Claude Fable 5.1 and Claude Mythos 5.1 through the code execution tool now carry C2PA Content Credentials when retrieved via the Files API. Previously only image and video files were marked.
WHY IT MATTERSIf your application processes or stores audio artifacts from Claude's code execution, those files now contain embedded provenance metadata. Systems that validate file integrity, strip metadata, or assume clean audio output may reject or mishandle these files.
WHAT TO DOTest your audio file handling pipeline with code-execution-generated audio from Fable 5.1 or Mythos 5.1. Verify that parsers, transcoders, and storage systems accept C2PA-marked audio without errors or unexpected metadata stripping.
CONFIDENCE 85% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 Per-message effort changes are in beta on Claude Fable 5.1, Claude Mythos 5.1, and Claude Opus 5 on the Claude API. Add a role: "system" message with output_config.effort inside messages to change effort for later turns while preserving the prompt cache. Include the mid-conversation-output-config-2026-07-01 beta header in your requests. See Per-message effort.
 Turn-scoped system messages are in beta (mid-conversation-system-clear-at-2026-08-21 header). Set clear_at: "next_user_message" on a mid-conversation role: "system" message and it renders for the current turn only, then stays in the history at no token cost. Per-turn reminders don't accumulate and don't invalidate the prompt cache or later thinking blocks.
 thinking.display accepts a third value, "updates", in beta (thinking-display-updates-2026-08-18 header). Reasoning comes back with an empty thinking field, as under "omitted", and the short progress updates that Claude Fable 5.1, Claude Mythos 5.1, and Claude Fable 5 write between tool calls come back as text, at most one thinking block before a tool call. See Progress updates between tool calls.
-Text generated by Claude Fable 5.1 and Claude Mythos 5.1 carries Anthropic's text watermark, and supported image and video files that Claude produces through the code execution tool carry C2PA Content Credentials when you retrieve them through the Files API on the Claude API. Marking requires no changes to your requests or response handling.
+Text generated by Claude Fable 5.1 and Claude Mythos 5.1 carries Anthropic's text watermark, and supported image, video, and audio files that Claude produces through the code execution tool carry C2PA Content Credentials when you retrieve them through the Files API on the Claude API. Marking requires no changes to your requests or response handling.
 Like Claude Fable 5, both models require 30-day data retention and aren't available under zero data retention unless expressly authorized by Anthropic. See Model-specific data retention requirements.
 The guides for the Claude Enterprise endpoints of the Admin API (user management and spend limits), the Claude Enterprise Analytics API, and the Compliance API now show the anthropic-version header; send it on every request to these endpoints, as in the rest of the Claude API. See API versions.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.72, needed 0.45
triage reasoningAudio files now included in C2PA Content Credentials output—expands what Claude produces and marks through Files API.
signalsfile type expansion in output credentials · data handling change (audio files now covered by C2PA) · new beta feature with header requirement · model capability change affecting output artifacts
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
ACTION NEEDED APIDEPRECATION Claude Platform release notes · 2026-09-03 03:19 UTC

anthropic-version header now required on three Enterprise API endpoints

DOGrep your codebase for calls to Admin, Analytics, and Compliance API endpoints.
WHAT CHANGEDThe Admin API (user management and spend limits), Analytics API, and Compliance API now require the anthropic-version header on every request, matching the existing requirement across the rest of the Claude API. Documentation updated September 1, 2026.
WHY IT MATTERSRequests to these three Enterprise endpoints will fail without the header. If your integration calls these endpoints and does not currently send anthropic-version, those calls are now broken.
WHAT TO DOGrep your codebase for calls to Admin, Analytics, and Compliance API endpoints. Add the anthropic-version header to each request if missing. Test against production to confirm the calls succeed.
CONFIDENCE 85% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 Turn-scoped system messages are in beta (mid-conversation-system-clear-at-2026-08-21 header). Set clear_at: "next_user_message" on a mid-conversation role: "system" message and it renders for the current turn only, then stays in the history at no token cost. Per-turn reminders don't accumulate and don't invalidate the prompt cache or later thinking blocks.
 thinking.display accepts a third value, "updates", in beta (thinking-display-updates-2026-08-18 header). Reasoning comes back with an empty thinking field, as under "omitted", and the short progress updates that Claude Fable 5.1, Claude Mythos 5.1, and Claude Fable 5 write between tool calls come back as text, at most one thinking block before a tool call. See Progress updates between tool calls.
 Text generated by Claude Fable 5.1 and Claude Mythos 5.1 carries Anthropic's text watermark, and supported image and video files that Claude produces through the code execution tool carry C2PA Content Credentials when you retrieve them through the Files API on the Claude API. Marking requires no changes to your requests or response handling.
-Like Claude Fable 5, both models require 30-day data retention and aren't available under zero data retention unless expressly authorized by Anthropic. See Model-specific data retention requirements.
+Like Claude Fable 5, both models require 30-day data retention and aren't available under zero data retention unless expressly authorized by Anthropic. See Model-specific data retention requirements.
+The guides for the Claude Enterprise endpoints of the Admin API (user management and spend limits), the Claude Enterprise Analytics API, and the Compliance API now show the anthropic-version header; send it on every request to these endpoints, as in the rest of the Claude API. See API versions.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.85, needed 0.45
triage reasoningNew required header on Enterprise API endpoints is a breaking change for existing integrations.
signalsnew API requirement: anthropic-version header now mandatory on three Enterprise endpoints · breaking change: Admin API, Analytics API, Compliance API affected · documentation update signals enforcement of existing versioning pattern
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
ACTION NEEDED APIMODELTERMSDEPRECATION Claude Platform release notes · 2026-09-01 20:40 UTC

Claude Fable 5.1 breaks tool_choice any/tool, requires 30-day retention

DOGrep your codebase for tool_choice parameters set to 'any' or 'tool' and migrate to structured outputs or strict tool use before switching to Fable 5.1.
WHAT CHANGEDClaude Fable 5.1 and Mythos 5.1 launched September 1, 2026. tool_choice types 'any' and 'tool' now return 400 errors; only 'auto' and 'none' work. Cache read pricing dropped from 0.1x to 0.025x base price ($0.25/MTok). Both models enforce 30-day minimum data retention with no zero-retention option unless Anthropic authorizes it. New accounts created August 31, 2026 or later get 400 errors when replaying thinking blocks after system prompt, tools, or message history changes.
WHY IT MATTERSIf you use tool_choice='any' or tool_choice='tool' in production, requests to Fable 5.1 will fail immediately. If your contract or compliance posture requires zero data retention, you cannot use these models without explicit authorization. The thinking block validation will break conversation replay for new accounts if you modify context mid-conversation.
WHAT TO DOGrep your codebase for tool_choice parameters set to 'any' or 'tool' and migrate to structured outputs or strict tool use before switching to Fable 5.1. Verify your data retention agreement permits 30-day retention or request authorization from Anthropic if you need zero retention. If you create new accounts after August 31, audit any code that replays thinking blocks after modifying system prompts or tools.
CONFIDENCE 95% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
+## Claude Platform release notes — September 1, 2026
+https://platform.claude.com/docs/en/release-notes/overview#september-1-2026
+Tue, 01 Sep 2026 00:00:00 GMT
+
+We've launched Claude Fable 5.1 (claude-fable-5-1), the successor to Claude Fable 5 for long-running agentic coding, knowledge work, and research, alongside Claude Mythos 5.1 (claude-mythos-5-1) for Project Glasswing participants. Both models support a 1M token context window by default, 128k max output tokens, and always-on adaptive thinking, at $10 / $50 USD per MTok, the same as Claude Fable 5, with cache reads cut to $0.25 per MTok. Claude Fable 5.1 is available on the Claude API, Claude in Amazon Bedrock, Claude Platform on AWS, Claude on Google Cloud, and Claude in Microsoft Foundry. See What's new in Claude Fable 5.1 for capabilities, API changes, and migration guidance.
+Prompt cache reads on Claude Fable 5.1 and Claude Mythos 5.1 cost $0.25 USD per million tokens: 0.025x the base input price, compared with 0.1x on other models. Cache writes are unchanged. See Prompt caching pricing.
+On Claude Fable 5.1 and Claude Mythos 5.1, tool_choice types any and tool aren't supported and return a 400 error. auto and none are unchanged. To guarantee schema-conformant tool inputs, use strict tool use or structured outputs.
+Thinking blocks produced by Claude Fable 5.1 and Claude Mythos 5.1 are preserved only for the model that produced them or a newer one: earlier models can't read them, and the API drops one replayed to an earlier model. Claude Fable 5.1 accepts thinking blocks from Claude Opus 5, Claude Fable 5, Claude Mythos 5, and earlier Claude models. On Claude Fable 5.1, the API also checks that nothing before a block has changed: for new accounts created on or after August 31, 2026, replaying one after the system prompt, tools, or an earlier message changed returns a 400 error. With the thinking-binding-controls-2026-08-01 beta header, dropped blocks are reported in an input_transformations response field, and thinking.block_binding.prefix_mismatch_behavior chooses between rejecting and dropping blocks whose history changed. See Preserved thinking.
+Per-message effort changes are in beta on Claude Fable 5.1, Claude Mythos 5.1, and Claude Opus 5 on the Claude API. Add a role: "system" message with output_config.effort inside messages to change effort for later turns while preserving the prompt cache. Include the mid-conversation-output-config-2026-07-01 beta header in your requests. See Per-message effort.
+Turn-scoped system messages are in beta (mid-conversation-system-clear-at-2026-08-21 header). Set clear_at: "next_user_message" on a mid-conversation role: "system" message and it renders for the current turn only, then stays in the history at no token cost. Per-turn reminders don't accumulate and don't invalidate the prompt cache or later thinking blocks.
+thinking.display accepts a third value, "updates", in beta (thinking-display-updates-2026-08-18 header). Reasoning comes back with an empty thinking field, as under "omitted", and the short progress updates that Claude Fable 5.1, Claude Mythos 5.1, and Claude Fable 5 write between tool calls come back as text, at most one thinking block before a tool call. See Progress updates between tool calls.
+Text generated by Claude Fable 5.1 and Claude Mythos 5.1 carries Anthropic's text watermark, and supported image and video files that Claude produces through the code execution tool carry C2PA Content Credentials when you retrieve them through the Files API on the Claude API. Marking requires no changes to your requests or response handling.
+Like Claude Fable 5, both models require 30-day data retention and aren't available under zero data retention unless expressly authorized by Anthropic. See Model-specific data retention requirements.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.98, needed 0.45
triage reasoningNew model release with pricing changes, breaking API changes, data retention requirements, and multiple feature additions affecting production deployments.
signalsnew model release (Claude Fable 5.1, Claude Mythos 5.1) · pricing change (cache reads $0.25/MTok, 0.025x vs 0.1x) · breaking API change (tool_choice types any/tool return 400 error) · new data retention requirement (30-day minimum, no zero-retention option) · new feature (adaptive thinking always-on) · context window specification (1M tokens default, 128k max output) · beta API features with headers (mid-conversation output config, system message scoping, thinking display updates) · thinking block compatibility constraints (forward-compatible only, prefix mismatch validation for new accounts after Aug 31 2026)
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING API Claude Platform release notes · 2026-08-28 21:46 UTC

Compliance API adds Science and Office 365 session transcripts

DOCheck your Compliance API response handling for product_surface filtering or validation.
WHAT CHANGEDCompliance API session endpoints for Cowork and Claude Code are now GA (out of beta). Local session endpoints now return transcripts for Claude Science sessions (product_surface: claude_science) and Claude for Microsoft 365 sessions in Excel, PowerPoint, Word, and Outlook (product_surface values starting with office_agents), both in beta for Enterprise organizations. No new authentication required—existing Compliance Access Key with read:compliance_user_data scope works.
WHY IT MATTERSIf you retrieve compliance transcripts, your existing integration now captures two additional product surfaces without code changes. If you filter or route transcripts by product_surface value, unrecognized values will appear in your logs or break strict validation.
WHAT TO DOCheck your Compliance API response handling for product_surface filtering or validation. Add claude_science and office_agents* to your expected values list if you whitelist them, or confirm your code handles unknown values gracefully.
CONFIDENCE 85% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
+## Claude Platform release notes — August 26, 2026
+https://platform.claude.com/docs/en/release-notes/overview#august-26-2026
+Wed, 26 Aug 2026 00:00:00 GMT
+
+The Compliance API session endpoints are out of beta for Cowork and Claude Code sessions. See Retrieve session transcripts.
+The Compliance API local session endpoints now also return transcripts of Claude Science sessions (product_surface value claude_science) and Claude for Microsoft 365 sessions in Excel, PowerPoint, Word, and Outlook (product_surface values beginning with office_agents), in beta for Claude Enterprise organizations, with your existing Compliance Access Key and the read:compliance_user_data scope. See Sessions on users' machines.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.78, needed 0.45
triage reasoningCompliance API endpoints graduate from beta and expand to new product surfaces, affecting API consumers' integration scope.
signalsfeature graduation from beta to GA · new product surfaces added to API · new beta feature announced · API scope/capability expansion · compliance/data handling change
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING MODELAPI Claude Platform release notes · 2026-08-26 19:49 UTC

Computer use and browser use toolsets now available on Google Cloud

DOIf you have Google Cloud deployments that need computer use or browser use, test the toolsets with your existing tools entries format—no API changes are required from th…
WHAT CHANGEDThe computer_toolset_20260801 and browser_toolset_20260801 toolsets are now available on Google Cloud for Claude Fable 5, Claude Mythos 5, Claude Opus 5, Claude Sonnet 5, and Claude Opus 4.8. The tools entries format matches the Claude API.
WHY IT MATTERSIf you run Claude on Google Cloud and have been waiting for computer use or browser use capabilities, you can now deploy those features without migrating to a different cloud provider or API endpoint.
WHAT TO DOIf you have Google Cloud deployments that need computer use or browser use, test the toolsets with your existing tools entries format—no API changes are required from the Claude API implementation.
CONFIDENCE 85% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 https://platform.claude.com/docs/en/release-notes/overview#august-20-2026
 Thu, 20 Aug 2026 00:00:00 GMT
 
-We've released v1.0 of the Python SDK. The SDK's HTTP layer moves from httpx to httpx2, a maintained, API-compatible fork: build custom http_client, Timeout, and transport objects from httpx2 (the DefaultHttpxClient helpers are unchanged), and call httpx2.alias_httpx() at startup if you rely on tracing or mocking libraries that patch httpx. v1.0 requires Python 3.10 or later and removes long-deprecated surface, including the legacy Text Completions API, the temperature, top_p, and top_k parameters on Messages methods, and the tool runner's client-side compaction_control. On the async client, .with_raw_response results now need await response.parse(), and AnthropicBedrock now raises an error when no AWS region is configured instead of defaulting to us-east-1. See the v1 migration guide for every change with before-and-after snippets.
+We've released v1.0 of the Python SDK. The SDK's HTTP layer moves from httpx to httpx2, a maintained, API-compatible fork: build custom http_client, Timeout, and transport objects from httpx2 (the DefaultHttpxClient helpers are unchanged), and call httpx2.alias_httpx() at startup if you rely on tracing or mocking libraries that patch httpx. v1.0 requires Python 3.10 or later and removes long-deprecated surface, including the legacy Text Completions API, the temperature, top_p, and top_k parameters on Messages methods, and the tool runner's client-side compaction_control. On the async client, .with_raw_response results now need await response.parse(), and AnthropicBedrock now raises an error when no AWS region is configured instead of defaulting to us-east-1. See the v1 migration guide for every change with before-and-after snippets.
+The computer use and browser use toolsets (computer_toolset_20260801 and browser_toolset_20260801) are now available on Google Cloud for Claude Fable 5, Claude Mythos 5, Claude Opus 5, Claude Sonnet 5, and Claude Opus 4.8. Requests use the same tools entries as on the Claude API.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.92, needed 0.45
triage reasoningNew toolsets and models available on Google Cloud platform expands deployment options for engineering teams.
signalsnew feature availability announced · specific model list provided · new toolsets with dated identifiers · platform expansion (Google Cloud) · affects deployment decisions
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
ACTION NEEDED APIMODEL Claude Platform release notes · 2026-08-22 01:15 UTC

Claude API default top_p changed from 0.999 to 0.99 for all models

DOAudit your Claude API calls: if you rely on the previous default behavior, explicitly set top_p: 0.999 in all requests.
WHAT CHANGEDThe Messages API now defaults top_p to 0.99 instead of 0.999 across all models, effective immediately. Extended thinking calls can now set top_p between 0.95 and 1.0, expanded from the previous narrower range.
WHY IT MATTERSEvery request not explicitly setting top_p now uses different sampling behavior, which changes response variability and may affect tool call reliability, output consistency in production workflows, and any testing or validation tied to specific model behavior.
WHAT TO DOAudit your Claude API calls: if you rely on the previous default behavior, explicitly set top_p: 0.999 in all requests. If you use extended thinking and want the old constraint, pin top_p below 0.95 or above 1.0 will now error—test your parameter validation.
CONFIDENCE 95% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 We've launched the MCP connector in public beta, a feature that allows you to connect to remote MCP servers directly from the Messages API.
 To increase answer quality and decrease tool errors, we've changed the default value for the top_p nucleus sampling parameter in the Messages API from 0.999 to 0.99 for all models. To revert this change, set top_p to 0.999.
 Additionally, when extended thinking is enabled, you can now set top_p to values between 0.95 and 1.
-We've moved our Go SDK from beta to GA.
+Our Go SDK has moved from beta to its first stable release.
 We've included minute and hour level granularity to the Usage page of Console alongside 429 error rates on the Usage page.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.92, needed 0.45
triage reasoningDefault API parameter change affects all users; SDK GA is a stability milestone; extended thinking constraint change expands capability.
signalsdefault parameter value changed (top_p 0.999 to 0.99) · parameter constraint relaxed (extended thinking top_p now 0.95–1.0) · SDK lifecycle milestone (beta to GA) · behavioral change affecting all models without opt-in
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
ACTION NEEDED APIDEPRECATION Claude Platform release notes · 2026-08-22 01:15 UTC

Claude Python SDK v1.0 removes Text Completions API, requires Python 3.10+

DOBefore upgrading: grep your codebase for 'text_completions', 'temperature', 'top_p', 'top_k' in Messages calls, and 'compaction_control'; verify Python version is 3.10+;…
WHAT CHANGEDReleased August 20, 2026. Python SDK v1.0 removes the legacy Text Completions API, the temperature/top_p/top_k parameters on Messages methods, and tool runner's client-side compaction_control. Minimum Python version is now 3.10. HTTP layer switches from httpx to httpx2. Async client .with_raw_response results now require await response.parse(). AnthropicBedrock no longer defaults to us-east-1 when AWS region is unconfigured.
WHY IT MATTERSCode using the removed Text Completions API or deprecated parameters will break immediately on upgrade. Applications running Python 3.9 or earlier cannot install this version. Async response handling that omits await response.parse() will fail. AnthropicBedrock calls without explicit region configuration will error instead of silently using us-east-1.
WHAT TO DOBefore upgrading: grep your codebase for 'text_completions', 'temperature', 'top_p', 'top_k' in Messages calls, and 'compaction_control'; verify Python version is 3.10+; check all .with_raw_response usage includes await response.parse(); confirm AnthropicBedrock has explicit region set. Consult the v1 migration guide for replacement patterns.
CONFIDENCE 95% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
+## Claude Platform release notes — August 20, 2026
+https://platform.claude.com/docs/en/release-notes/overview#august-20-2026
+Thu, 20 Aug 2026 00:00:00 GMT
+
+We've released v1.0 of the Python SDK. The SDK's HTTP layer moves from httpx to httpx2, a maintained, API-compatible fork: build custom http_client, Timeout, and transport objects from httpx2 (the DefaultHttpxClient helpers are unchanged), and call httpx2.alias_httpx() at startup if you rely on tracing or mocking libraries that patch httpx. v1.0 requires Python 3.10 or later and removes long-deprecated surface, including the legacy Text Completions API, the temperature, top_p, and top_k parameters on Messages methods, and the tool runner's client-side compaction_control. On the async client, .with_raw_response results now need await response.parse(), and AnthropicBedrock now raises an error when no AWS region is configured instead of defaulting to us-east-1. See the v1 migration guide for every change with before-and-after snippets.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.95, needed 0.45
triage reasoningMajor SDK version with multiple breaking changes and removed APIs requires engineering team action.
signalsmajor version release (v1.0) · breaking API changes (legacy Text Completions API removed) · deprecated parameters removed (temperature, top_p, top_k) · minimum Python version requirement (3.10+) · async client behavior change (await response.parse()) · error behavior change (AnthropicBedrock region default removed) · dependency change (httpx to httpx2) · migration guide referenced
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING APIMODEL Claude Platform release notes · 2026-08-22 01:15 UTC

Claude Sonnet 3.5 8K output no longer requires beta header

DOSearch your codebase for 'max-tokens-3-5-sonnet-2024-07-15' and remove the header from API calls.
WHAT CHANGEDThe max-tokens-3-5-sonnet-2024-07-15 header is no longer required to access 8,192-token outputs on Claude Sonnet 3.5. The feature moved from beta to general availability on August 19, 2024.
WHY IT MATTERSCode that sets this header will continue to work but is now redundant. Teams that avoided the feature due to beta status can now use extended outputs without special headers.
WHAT TO DOSearch your codebase for 'max-tokens-3-5-sonnet-2024-07-15' and remove the header from API calls. The functionality remains identical without it.
CONFIDENCE 95% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 https://platform.claude.com/docs/en/release-notes/overview#august-19th-2024
 Mon, 19 Aug 2024 00:00:00 GMT
 
-We've moved 8,192 token outputs from beta to general availability for Claude Sonnet 3.5.
+8,192-token outputs on Claude Sonnet 3.5 are out of beta and no longer require the max-tokens-3-5-sonnet-2024-07-15 header.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.92, needed 0.45
triage reasoningDevelopers no longer need to pass a specific header to use 8K outputs on Sonnet 3.5.
signalsfeature graduation from beta to GA · API header requirement removed · developer workflow change
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
ACTION NEEDED APIDEPRECATION Claude Platform release notes · 2026-08-21 01:19 UTC

Computer use tool GA changes request shape, requires migration

DOIf you use the computer use tool, read the migration guide at 'Migrate from computer_20251124' before removing the beta header.
WHAT CHANGEDThe computer use tool is now GA as computer_toolset_20260801, replacing earlier beta versions. The upgrade changes the request shape and tool handling. The Files API is GA with a new response format: file expiration (expires_in_seconds on upload, expires_at in responses) and page/next_page pagination with ids[] filter. Both changes take effect immediately when you stop sending the beta headers.
WHY IT MATTERSExisting integrations using the beta computer use tool will break if you switch to the GA version without updating your request structure. Files API clients that drop the beta header will receive a different response format and pagination scheme, breaking any code that expects the old structure.
WHAT TO DOIf you use the computer use tool, read the migration guide at 'Migrate from computer_20251124' before removing the beta header. If you use the Files API, test your pagination and expiration handling against the GA format before dropping the files-api-2025-04-14 header from production requests.
CONFIDENCE 95% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 https://platform.claude.com/docs/en/release-notes/overview#august-19-2026
 Wed, 19 Aug 2026 00:00:00 GMT
 
+The computer use tool is now generally available on the Claude API as the computer_toolset_20260801 toolset: no beta header, batch actions (several actions in one turn), zoom enabled by default, and per-member configuration through configs. Earlier beta versions remain available. Upgrading an existing integration changes the request shape and tool handling; see Migrate from computer_20251124.
+We've launched the browser use tool (browser_toolset_20260801), a client toolset for driving a browser that your application hosts. It works inside a browser viewport rather than a whole desktop, reading the page itself (its accessibility tree, elements, forms, and tabs) and adding element references, form input, tab management, download reporting, and opt-in file upload on top of screenshot-and-click control.
+Both toolsets are available for Claude Fable 5, Claude Mythos 5, Claude Opus 5, Claude Sonnet 5, and Claude Opus 4.8 on the Claude API.
 The Files API is now generally available on the Claude API. Requests to the /v1/files endpoints, and Messages API requests that reference an uploaded file, no longer require the files-api-2025-04-14 beta header. Requests sent without the header use the GA response format: file expiration (set expires_in_seconds when you upload a file; file objects report expires_at), and page and next_page pagination plus an ids[] filter when you list files. /v1/files requests that still send the beta header keep working and return the previous response format.
 Agent Skills and the Skills API (/v1/skills) are now generally available on the Claude API. Requests no longer require the skills-2025-10-02 beta header, including Messages API requests that load Skills through the container parameter. Requests that still send the header continue to work unchanged. See Using Agent Skills with the API.
-The Admin API user-management endpoints for Claude Enterprise (claude.ai) organizations (members, invites, groups, and custom roles) are now generally available. The anthropic-beta: ce-user-management-2026-07-13 header is no longer required on group and custom-role requests; requests that still send it are accepted unchanged. See User management.
+The Admin API user-management endpoints for Claude Enterprise (claude.ai) organizations (members, invites, groups, and custom roles) are now generally available. The anthropic-beta: ce-user-management-2026-07-13 header is no longer required on group and custom-role requests; requests that still send it are accepted unchanged. See User management.
+You can now restrict which sites a Claude Managed Agents agent's web_search and web_fetch tools can reach. Set allowed_domains or blocked_domains on the tool's entry in the agent_toolset_20260401 configs array; web_fetch also accepts max_content_tokens and web_search accepts user_location. Each configs entry is identified by its name and typed by an optional type, and requests that pass only name, enabled, and permission_policy continue to work; in the typed SDKs, configs entries become per-tool types. See Restrict web search and web fetch domains.
+Claude Managed Agents sessions that run in a self-hosted sandbox can now attach memory stores. The Python, TypeScript, and Go SDK workers download each attached store into the sandbox at its mount_path and sync the agent's changes back to the store. See Use memory stores.
+The session viewer in the Claude Console has been redesigned with a timeline minimap, a transcript grouped by model request, and an Inspector panel for session details and cost, raw events, per-tool statistics, mounted resources, and per-thread activity. See Console observability.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.95, needed 0.45
triage reasoningMultiple GA releases, new tools, breaking changes, and feature additions affecting API integrations.
signalscomputer_toolset_20260801 GA release with breaking change warning · new browser_toolset_20260801 tool launched · Files API GA with response format changes · Agent Skills API GA · Admin API user-management GA · new web_search/web_fetch domain restriction feature · new memory store attachment for self-hosted sandbox sessions · multiple model availability statements (Fable 5, Mythos 5, Opus 5, Sonnet 5, Opus 4.8)
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
ACTION NEEDED APIDEPRECATION Claude Platform release notes · 2026-08-20 18:39 UTC

Files API, Skills API, and Admin API user-management moved to GA

DOGrep your codebase for 'files-api-2025-04-14', 'skills-2025-10-02', and 'ce-user-management-2026-07-13'.
WHAT CHANGEDEffective August 19, 2026, three Claude APIs moved from beta to general availability: Files API (/v1/files), Skills API (/v1/skills), and Admin API user-management endpoints. Beta headers (files-api-2025-04-14, skills-2025-10-02, anthropic-beta: ce-user-management-2026-07-13) are no longer required. The Files API GA response format differs from beta: pagination changed from page/next_page to ids[] filter, and file expiration now uses expires_in_seconds (upload) and expires_at (response) instead of the beta format.
WHY IT MATTERSCode sending beta headers continues to work but receives the old response format. Code that stopped sending headers or never sent them now receives the GA format with different pagination and expiration field names, which will break parsing logic expecting the beta structure.
WHAT TO DOGrep your codebase for 'files-api-2025-04-14', 'skills-2025-10-02', and 'ce-user-management-2026-07-13'. For Files API calls, verify whether your code parses expires_at and handles ids[] pagination, or if it expects the beta format. If you need the beta format, confirm the header is still being sent; if you need GA format, remove the header and update response parsing.
CONFIDENCE 95% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
+## Claude Platform release notes — August 19, 2026
+https://platform.claude.com/docs/en/release-notes/overview#august-19-2026
+Wed, 19 Aug 2026 00:00:00 GMT
+
+The Files API is now generally available on the Claude API. Requests to the /v1/files endpoints, and Messages API requests that reference an uploaded file, no longer require the files-api-2025-04-14 beta header. Requests sent without the header use the GA response format: file expiration (set expires_in_seconds when you upload a file; file objects report expires_at), and page and next_page pagination plus an ids[] filter when you list files. /v1/files requests that still send the beta header keep working and return the previous response format.
+Agent Skills and the Skills API (/v1/skills) are now generally available on the Claude API. Requests no longer require the skills-2025-10-02 beta header, including Messages API requests that load Skills through the container parameter. Requests that still send the header continue to work unchanged. See Using Agent Skills with the API.
+The Admin API user-management endpoints for Claude Enterprise (claude.ai) organizations (members, invites, groups, and custom roles) are now generally available. The anthropic-beta: ce-user-management-2026-07-13 header is no longer required on group and custom-role requests; requests that still send it are accepted unchanged. See User management.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.92, needed 0.45
triage reasoningThree major API features graduating from beta to GA with breaking response format changes and header removal.
signalsFiles API moved from beta to GA · Skills API moved from beta to GA · Admin API user-management endpoints moved from beta to GA · Beta headers no longer required · Response format changes documented · Breaking change: GA response format differs from beta format · Future date: August 19, 2026
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING API Claude Platform release notes · 2026-08-17 00:11 UTC

Claude API adds anthropic-workspace-id response header

DOCheck whether your HTTP client or logging pipeline treats unexpected headers as errors.
WHAT CHANGEDThe Claude API now returns an anthropic-workspace-id header in all responses, containing the wrkspc_-prefixed workspace ID that the request's API key or access token resolved to, including the organization's Default Workspace. This applies to all API requests immediately.
WHY IT MATTERSIf you parse API responses or log headers for debugging, this new header will appear in all responses. Multi-workspace organizations can now programmatically identify which workspace handled each request without inferring from the API key alone.
WHAT TO DOCheck whether your HTTP client or logging pipeline treats unexpected headers as errors. If you operate multiple workspaces, decide whether to log this header for request attribution.
CONFIDENCE 85% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 Tue, 11 Aug 2026 00:00:00 GMT
 
 The Compliance API now returns transcripts of Cowork and Claude Code sessions that run on your users' machines, in beta for Claude Enterprise organizations. GET /v1/compliance/apps/sessions/local lists sessions across your organization, GET /v1/compliance/apps/sessions/local/{session_id} retrieves one session's metadata, and GET /v1/compliance/apps/sessions/local/{session_id}/messages returns its transcript, all with your existing Compliance Access Key and the read:compliance_user_data scope. See Retrieve local sessions.
+We've added the anthropic-workspace-id response header to the Claude API. It carries the wrkspc_-prefixed ID of the workspace that the request's API key or access token resolved to, including your organization's Default Workspace. See Identify the workspace behind an API response.
 
 ## Claude Platform release notes — August 12, 2025
 https://platform.claude.com/docs/en/release-notes/overview#august-12-2025
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.92, needed 0.45
triage reasoningNew API endpoints and response headers enable previously unavailable data access patterns for compliance use cases.
signalsnew API endpoint added (GET /v1/compliance/apps/sessions/local) · new API endpoint added (GET /v1/compliance/apps/sessions/local/{session_id}) · new API endpoint added (GET /v1/compliance/apps/sessions/local/{session_id}/messages) · new response header added (anthropic-workspace-id) · new scope introduced (read:compliance_user_data) · beta feature for Enterprise tier · data access capability change (local session transcripts now retrievable)
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING APISECURITY Claude Platform release notes · 2026-08-17 00:11 UTC

Compliance API now retrieves local Cowork and Claude Code session transcripts

DOIf you run compliance exports or audits, add these three endpoints to your retrieval jobs.
WHAT CHANGEDThree new Compliance API endpoints launched August 11, 2026 in beta for Enterprise organizations: GET /v1/compliance/apps/sessions/local lists all local sessions, GET /v1/compliance/apps/sessions/local/{session_id} retrieves session metadata, and GET /v1/compliance/apps/sessions/local/{session_id}/messages returns the full transcript. These cover Cowork and Claude Code sessions running on user machines. Authentication uses existing Compliance Access Keys with read:compliance_user_data scope.
WHY IT MATTERSYour compliance tooling can now audit conversations that happen in desktop applications, not just API calls. If you already pull compliance data for governance or retention, these sessions were previously invisible and are now retrievable through the same authentication mechanism.
WHAT TO DOIf you run compliance exports or audits, add these three endpoints to your retrieval jobs. Test with GET /v1/compliance/apps/sessions/local using your existing Compliance Access Key to confirm scope and verify the transcript format matches your storage schema.
CONFIDENCE 85% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 https://platform.claude.com/docs/en/release-notes/overview#april-14-2026
 Tue, 14 Apr 2026 00:00:00 GMT
 
-We announced the deprecation of the Claude Sonnet 4 model (claude-sonnet-4-20250514) and the Claude Opus 4 model (claude-opus-4-20250514), with retirement on the Claude API scheduled for June 15, 2026. We recommend migrating to Claude Sonnet 4.6 and Claude Opus 4.8 respectively. Read more in model deprecations.
+We announced the deprecation of the Claude Sonnet 4 model (claude-sonnet-4-20250514) and the Claude Opus 4 model (claude-opus-4-20250514), with retirement on the Claude API scheduled for June 15, 2026. We recommend migrating to Claude Sonnet 4.6 and Claude Opus 4.8 respectively. Read more in Model deprecations.
 
 ## Claude Platform release notes — April 16, 2026
 https://platform.claude.com/docs/en/release-notes/overview#april-16-2026
@@
 
 Some customers might encounter 429 (rate_limit_error) errors following a sharp increase in API usage due to acceleration limits on the API. Previously, 529 (overloaded_error) errors would occur in similar scenarios.
 
+## Claude Platform release notes — August 11, 2026
+https://platform.claude.com/docs/en/release-notes/overview#august-11-2026
+Tue, 11 Aug 2026 00:00:00 GMT
+
+The Compliance API now returns transcripts of Cowork and Claude Code sessions that run on your users' machines, in beta for Claude Enterprise organizations. GET /v1/compliance/apps/sessions/local lists sessions across your organization, GET /v1/compliance/apps/sessions/local/{session_id} retrieves one session's metadata, and GET /v1/compliance/apps/sessions/local/{session_id}/messages returns its transcript, all with your existing Compliance Access Key and the read:compliance_user_data scope. See Retrieve local sessions.
+
 ## Claude Platform release notes — August 12, 2025
 https://platform.claude.com/docs/en/release-notes/overview#august-12-2025
 Tue, 12 Aug 2025 00:00:00 GMT
@@
 Wed, 05 Aug 2026 00:00:00 GMT
 
 Inference hooks are now in beta for Claude Enterprise organizations. Point Claude at your organization's AI security server, and each governed prompt across claude.ai, Cowork, and Claude Code is held for the server's allow or deny verdict before inference proceeds. Requests are signed, failure handling is configurable, and every denial is recorded in the compliance Activity Feed. See Inference hooks.
-We've retired the Claude Opus 4.1 model (claude-opus-4-1-20250805). All requests to this model will now return an error. We recommend upgrading to Claude Opus 5. Researchers can request ongoing access through the External Researcher Access Program.
+We've retired the Claude Opus 4.1 model (claude-opus-4-1-20250805). All requests to this model on the Claude API will now return an error. We recommend upgrading to Claude Opus 5. Researchers can request ongoing access through the External Researcher Access Program.
 
+## Claude Platform release notes — August 7, 2026
+https://platform.claude.com/docs/en/release-notes/overview#august-7-2026
+Fri, 07 Aug 2026 00:00:00 GMT
+
+You can now set a budget on a Claude Managed Agents session: a hard cap on the session's spend, priced at public list rates. A session that reaches its budget pauses with the budget_reached stop reason instead of starting new model requests; changing or removing the budget resumes it. Deployments accept the same budget and apply it to each session they start. See Session budgets.
+You can now give a Claude Managed Agents session an advisor: a model at least as capable as the agent's own that the session's primary thread can consult mid-turn for strategic guidance. Configure it as a {"type": "advisor"} entry in the agent's multiagent roster, naming the model to consult. See Give the session an advisor.
+You can now control where model inference runs for a Claude Managed Agents agent. Set inference_geo inside the model object when you create the agent, or override it for a single session. See Data residency for the available geos and pricing.
+Claude Managed Agents sessions can now load skills from a GitHub repository. When a session mounts a repository, any skills in its root .claude/skills directory are discovered automatically at session start and available to the agent for that session.
+
 ## Claude Platform release notes — August 8, 2025
 https://platform.claude.com/docs/en/release-notes/overview#august-8-2025
 Fri, 08 Aug 2025 00:00:00 GMT
@@
 Thu, 19 Feb 2026 00:00:00 GMT
 
 We've launched automatic caching for the Messages API. Add a single cache_control field to your request body and the system automatically caches the last cacheable block, moving the cache point forward as conversations grow. No manual breakpoint management required. Works alongside existing block-level cache control for fine-grained optimization. Available on the Claude API and Microsoft Foundry (preview). Learn more in Prompt caching.
-We've retired the Claude Sonnet 3.7 model (claude-3-7-sonnet-20250219) and the Claude Haiku 3.5 model (claude-3-5-haiku-20241022). All requests to these models will now return an error. We recommend upgrading to Claude Sonnet 4.6 and Claude Haiku 4.5 respectively. Researchers can request ongoing access through the External Researcher Access Program.
+We've retired the Claude Sonnet 3.7 model (claude-3-7-sonnet-20250219) and the Claude Haiku 3.5 model (claude-3-5-haiku-20241022). All requests to Claude Sonnet 3.7 will now return an error. Requests to Claude Haiku 3.5 on the Claude API will now return an error; it remains available on Amazon Bedrock and Google Cloud. We recommend upgrading to Claude Sonnet 4.6 and Claude Haiku 4.5 respectively. Researchers can request ongoing access through the External Researcher Access Program.
 We announced the deprecation of the Claude Haiku 3 model (claude-3-haiku-20240307), with retirement scheduled for April 20, 2026. We recommend migrating to Claude Haiku 4.5. Read more in Model deprecations.
 
 ## Claude Platform release notes — February 24th, 2025
@@
 https://platform.claude.com/docs/en/release-notes/overview#june-15-2026
 Mon, 15 Jun 2026 00:00:00 GMT
 
-We've retired the Claude Sonnet 4 model (claude-sonnet-4-20250514) and the Claude Opus 4 model (claude-opus-4-20250514). All requests to these models will now return an error. We recommend upgrading to Claude Sonnet 4.6 and Claude Opus 4.8 respectively. Researchers can request ongoing access through the External Researcher Access Program.
+We've retired the Claude Sonnet 4 model (claude-sonnet-4-20250514) and the Claude Opus 4 model (claude-opus-4-20250514). All requests to these models on the Claude API will now return an error. We recommend upgrading to Claude Sonnet 4.6 and Claude Opus 4.8 respectively. Researchers can request ongoing access through the External Researcher Access Program.
 
 ## Claude Platform release notes — June 18, 2026
 https://platform.claude.com/docs/en/release-notes/overview#june-18-2026
@@
 https://platform.claude.com/docs/en/release-notes/overview#june-5-2026
 Fri, 05 Jun 2026 00:00:00 GMT
 
-We announced the deprecation of the Claude Opus 4.1 model (claude-opus-4-1-20250805), with retirement on the Claude API scheduled for August 5, 2026. We recommend migrating to Claude Opus 4.8. Read more in model deprecations.
+We announced the deprecation of the Claude Opus 4.1 model (claude-opus-4-1-20250805), with retirement on the Claude API scheduled for August 5, 2026. We recommend migrating to Claude Opus 4.8. Read more in Model deprecations.
 
 ## Claude Platform release notes — June 9, 2026
 https://platform.claude.com/docs/en/release-notes/overview#june-9-2026
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.92, needed 0.45
triage reasoningMultiple new API capabilities, features, and endpoints added; model availability clarified across platforms.
signalsnew API endpoints added (Compliance API for local sessions) · new feature: Claude Managed Agents session budgets with hard spend caps · new feature: Claude Managed Agents advisor model capability · new feature: data residency control (inference_geo) for agents · new feature: GitHub repository skill loading for agents · model retirement clarification (Claude Haiku 3.5 remains on Bedrock/GCP) · multiple new release notes entries (Aug 7, Aug 11, 2026)
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)
WORTH KNOWING PRICINGMODEL Claude Platform release notes · 2026-08-17 00:11 UTC

Claude Sonnet 5 introductory pricing made permanent, September increase cancelled

DOReforecast Claude Sonnet 5 spend using $2/$10 rates with no September step-up.
WHAT CHANGEDClaude Sonnet 5 pricing remains at $2 input / $10 output per MTok indefinitely. The previously scheduled increase to $3 / $15 per MTok on September 1, 2026 will not occur, announced August 10, 2026.
WHY IT MATTERSIf you budgeted for the September price increase or delayed Sonnet 5 adoption expecting higher costs, your forecast is now wrong by 33-50% depending on input/output mix. Teams that pinned to older models to avoid the increase can now migrate without the cost penalty.
WHAT TO DOReforecast Claude Sonnet 5 spend using $2/$10 rates with no September step-up. If you delayed migration from Sonnet 4.6 due to the planned increase, re-evaluate the timeline—the cost barrier is gone.
CONFIDENCE 95% Primary source ↗ written by anthropic/claude-sonnet-4.5
Show the reasoning — raw diff, triage verdict, confidence
RAW DIFF
 
 Dreams (research preview) now supports Claude Opus 5. See Supported models.
 
+## Claude Platform release notes — August 10, 2026
+https://platform.claude.com/docs/en/release-notes/overview#august-10-2026
+Mon, 10 Aug 2026 00:00:00 GMT
+
+The introductory pricing for Claude Sonnet 5 ($2 / $10 per MTok) is now the standard price: the previously scheduled increase to $3 / $15 per MTok on September 1, 2026 will not occur. See Pricing.
+
 ## Claude Platform release notes — August 11, 2025
 https://platform.claude.com/docs/en/release-notes/overview#august-11-2025
 Mon, 11 Aug 2025 00:00:00 GMT
@@
 
 We launched a beta version of the PHP SDK.
 
+## Claude Platform release notes — August 3, 2026
+https://platform.claude.com/docs/en/release-notes/overview#august-3-2026
+Mon, 03 Aug 2026 00:00:00 GMT
+
+The Compliance API now returns transcripts of Cowork sessions started on claude.ai web or mobile, in beta for Claude Enterprise organizations. GET /v1/compliance/apps/sessions/remote lists sessions and GET /v1/compliance/apps/sessions/remote/{session_id}/messages returns one session's transcript, using your existing Compliance Access Key with the read:compliance_user_data scope. See Retrieve remote sessions.
+
 ## Claude Platform release notes — August 5, 2025
 https://platform.claude.com/docs/en/release-notes/overview#august-5-2025
 Tue, 05 Aug 2025 00:00:00 GMT
@@
 Wed, 05 Aug 2026 00:00:00 GMT
 
 Inference hooks are now in beta for Claude Enterprise organizations. Point Claude at your organization's AI security server, and each governed prompt across claude.ai, Cowork, and Claude Code is held for the server's allow or deny verdict before inference proceeds. Requests are signed, failure handling is configurable, and every denial is recorded in the compliance Activity Feed. See Inference hooks.
+We've retired the Claude Opus 4.1 model (claude-opus-4-1-20250805). All requests to this model will now return an error. We recommend upgrading to Claude Opus 5. Researchers can request ongoing access through the External Researcher Access Program.
 
 ## Claude Platform release notes — August 8, 2025
 https://platform.claude.com/docs/en/release-notes/overview#august-8-2025
@@
 https://platform.claude.com/docs/en/release-notes/overview#june-30-2026
 Tue, 30 Jun 2026 00:00:00 GMT
 
-We've launched Claude Sonnet 5 (claude-sonnet-5), the next generation of our Sonnet model family, at introductory pricing of $2 / $10 per MTok through August 31, 2026 (standard $3 / $15 thereafter). Claude Sonnet 5 supports a 1M token context window, 128k max output tokens, and the same set of tools and platform features as Claude Sonnet 4.6, except Priority Tier, which is not available on Claude Sonnet 5. Three behavior changes apply when migrating: adaptive thinking is now on by default; manual extended thinking (thinking: {type: "enabled", budget_tokens: N}) is removed and returns a 400 error (it was deprecated on Sonnet 4.6); and setting sampling parameters (temperature, top_p, top_k) to non-default values returns a 400 error. Claude Sonnet 5 also uses a new tokenizer that produces approximately 30% more tokens for the same text. The exact increase depends on the content and workload shape. See What's new in Claude Sonnet 5 for details and migration guidance. For behavioral differences and model-specific prompting patterns, see Prompting Claude Sonnet 5.
+We've launched Claude Sonnet 5 (claude-sonnet-5), the next generation of our Sonnet model family, at introductory pricing of $2 / $10 per MTok (made the standard price on August 10, 2026). Claude Sonnet 5 supports a 1M token context window, 128k max output tokens, and the same set of tools and platform features as Claude Sonnet 4.6, except Priority Tier, which is not available on Claude Sonnet 5. Three behavior changes apply when migrating: adaptive thinking is now on by default; manual extended thinking (thinking: {type: "enabled", budget_tokens: N}) is removed and returns a 400 error (it was deprecated on Sonnet 4.6); and setting sampling parameters (temperature, top_p, top_k) to non-default values returns a 400 error. Claude Sonnet 5 also uses a new tokenizer that produces approximately 30% more tokens for the same text. The exact increase depends on the content and workload shape. See What's new in Claude Sonnet 5 for details and migration guidance. For behavioral differences and model-specific prompting patterns, see Prompting Claude Sonnet 5.
 Claude Managed Agents session event streams now support event deltas. Opt in with the event_deltas[] query parameter on GET /v1/sessions/{session_id}/events/stream. The event_start and event_delta events preview an agent message's text as it's generated, before the complete agent.message event arrives.
 Listing sessions for Claude Managed Agents now supports backward pagination. GET /v1/sessions returns a prev_page cursor alongside next_page; pass it as the page parameter to return to the previous page. See Pagination.
 When creating a Claude Managed Agents session, you can now override the agent's configuration for that session. Pass agent with type: "agent_with_overrides" to replace the model, system prompt, tools, MCP servers, or skills for a single session. The agent itself is unchanged.
HOW IT WAS JUDGED
triage verdictMATERIAL at 0.98, needed 0.45
triage reasoningPricing locked at lower tier, model sunset with migration path, new compliance API endpoints, and enterprise feature additions.
signalspricing change: Claude Sonnet 5 introductory price ($2/$10 per MTok) made permanent; scheduled increase to $3/$15 cancelled · model retirement: Claude Opus 4.1 (claude-opus-4-1-20250805) retired, requests now error · future date with pricing impact: August 10, 2026 · new API endpoints: Compliance API now returns remote session transcripts (GET /v1/compliance/apps/sessions/remote) · new feature in beta: Inference hooks for Claude Enterprise
suppression
triage modelanthropic/claude-haiku-4.5 ($0.00000)
writer modelanthropic/claude-sonnet-4.5 ($0.00000)