The daily firehose — everything the toolchain shipped today, already filtered.
// HOW THIS ISSUE IS MADE
We read every release from the 174 tools on our watchlist at the source — GitHub and GitLab release notes, vendor release pages and changelogs, project blogs and feeds, vendor press releases, and the source code behind the tag. Bug-fix-only releases and non-product newsroom noise are dropped; what's left is summarized down to the new capability, how to try it, and any screenshots or videos the release itself published. Every entry links to the sources it was built from.
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
Claude Code v2.1.23 adds customizable spinner verbs and shows PR merge status and timeout durations in the UI.
└──▷ GET THIS VERSION
$ git clone --branch v2.1.23 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:$ git checkout v2.1.23
›Adds spinnerVerbs setting to customize the verbs displayed in the activity spinner.
›Shows timeout duration alongside elapsed time for Bash commands.
›Displays a purple status indicator in the prompt footer for merged pull requests.
Qwen Code v0.9.0 adds multi-modal input, concurrent batch CLI, extra_body for OpenAI providers, LSP support, and a Zed extension.
└──▷ GET THIS VERSION
$ git clone --branch v0.9.0-preview.0 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.9.0-preview.0
›Adds extra_body support for OpenAI-compatible providers, enabling pass-through of provider-specific request fields.
›Adds concurrent runner for batch CLI execution, enabling parallel processing of multiple CLI tasks.
›Adds multi-modal input support (image, PDF, audio) across all content generators.
›Adds parentToolCallId and subagentType fields for ACP subagent tracking.
›Adds experimental LSP (Language Server Protocol) support for code intelligence.
+4 moreshow less
›Adds Zed extension for Qwen Code agent server, enabling Zed IDE integration.
›Adds model selection support through ACP in the VS Code IDE companion.
›Improves retry logic for 429 and 5xx error handling in the core.
›Clarifies output formats for non-interactive mode.
Qwen Code v0.8.2-preview.2 adds multi-modal input, concurrent batch execution, LSP support, Zed extension, and extra_body for OpenAI-compatible providers.
└──▷ GET THIS VERSION
$ git clone --branch v0.8.2-preview.2 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.8.2-preview.2
›Adds extra_body support for OpenAI-compatible providers, enabling pass-through of provider-specific request fields.
›Adds a concurrent runner for batch CLI execution, enabling parallelized non-interactive workloads.
›Adds multi-modal input support (image, PDF, audio) across all content generators.
›Adds experimental LSP (Language Server Protocol) support for code intelligence.
›Adds a Zed extension for the Qwen Code agent server, bringing IDE companion support to Zed.
+4 moreshow less
›Adds parentToolCallId and subagentType fields for ACP subagent tracking.
›Clarifies output formats for non-interactive mode.
›Supports model selection through ACP in the VS Code IDE companion.
›Improves retry logic for 429 and 5xx error handling.
Qwen Code v0.8.2-preview.1 adds subagent tracking fields, improved error messages for skills, and smarter 429/5xx retry logic.
└──▷ GET THIS VERSION
$ git clone --branch v0.8.2-preview.1 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.8.2-preview.1
›Adds parentToolCallId and subagentType fields to ACP subagent tracking, enabling identification and lineage of subagent calls.
›Improves error messaging when a skill is incorrectly invoked as a tool in core, making misconfiguration easier to diagnose.
›Improves retry logic for 429 (rate-limit) and 5xx (server error) responses in core, reducing failed requests under load.
PydanticAI v1.50.0 exposes usage limits and model settings to CLI users and adds OpenAI raw text annotation access.
└──▷ GET THIS VERSION
$ git clone --branch v1.50.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:$ git checkout v1.50.0
›Adds usage_limits and model_settings parameters accessible to users running agents with to_cli(), enabling runtime control of limits and settings from the command line.
›Adds a setting to include OpenAI raw text annotations in TextPart.provider_details, surfacing provider-level annotation data to callers.
PydanticAI v1.49.0 adds BedrockEmbeddingModel for Nova/Cohere/Titan and parallel tool calls in DBOSAgent.
└──▷ GET THIS VERSION
$ git clone --branch v1.49.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:$ git checkout v1.49.0
└──▷ USE IT
Generate embeddings via AWS Bedrock's Nova, Cohere, or Titan endpoints using the new BedrockEmbeddingModel.
python
from pydantic_ai.models.bedrock import BedrockEmbeddingModel
model = BedrockEmbeddingModel('amazon.nova-lite-v1')
result = await model.embed(['Hello, world!'])
›Adds BedrockEmbeddingModel class supporting AWS Bedrock embedding endpoints for Nova, Cohere, and Titan models.
›Enables parallel tool call execution in DBOSAgent.
›Updates Vercel AI SDK type definitions to match AI SDK v6.
llama.cpp b7876 enables Hexagon HTP offloading on Windows on Snapdragon (WoS) devices.
└──▷ GET THIS VERSION
$ git clone --branch b7876 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b7876
›Enables GPU offloading to the Qualcomm Hexagon HTP (via the ggml-backend-dl dynamic backend) on Windows on Snapdragon (WoS) devices, alongside existing Android support.
›Adds run-bench.ps1 and run-tool.ps1 PowerShell scripts to simplify benchmarking and tool execution in the WoS/Hexagon build environment.
›Renames the backend documentation directory from docs/backend/hexagon to docs/backends/snapdragon, consolidating Android and Windows build guides into a unified README.
└──▷ BREAKING ON UPGRADE
!The backend documentation directory is renamed from docs/backend/hexagon to docs/backends/snapdragon; any scripts or CI referencing the old path will break.
›Adds redirect_url support in connectedAccounts for the TypeScript core SDK, enabling post-auth redirects in OAuth flows.
›Introduces composio.triggers.verifyWebhook as an async method in the TypeScript SDK, removing the node:crypto dependency from triggers for broader runtime compatibility.
›Adds a platform-specific file tool modifier in the TypeScript core SDK, allowing file tools to be adapted per deployment target.
›Adds support for Mastra v1 in the TypeScript SDK, including e2e tests with Tool Router.
›Optimizes @composio/client bandwidth usage in the CLI and introduces debug metrics.
+3 moreshow less
›Defaults tool selection to 'important tools' in the TypeScript core SDK when no explicit tool list is provided.
›Adds secrets detection workflow for pull requests to the CI pipeline.
›Adds an experimental assistive prompt to the client.
└──▷ BREAKING ON UPGRADE
!composio.triggers.verifyWebhook is now async in the TypeScript SDK — callers must await it or their webhook verification will silently break.
!Mastra v1 support is introduced as a breaking change in the TypeScript SDK — existing Mastra integrations targeting earlier versions may require updates.