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.33 adds multi-agent hook events, sub-agent spawn restrictions, persistent agent memory, and VSCode remote sessions.
└──▷ GET THIS VERSION
$ git clone --branch v2.1.33 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:$ git checkout v2.1.33
└──▷ USE IT
Restrict an orchestrator agent so it can only spawn specific sub-agent types, reducing blast radius in automated pipelines.
›Adds modelOverrides key in models.json to customize individual built-in provider models (e.g., context window, parameters) without replacing the entire provider model list.
›Supports merge-by-id behavior for models.json provider models, letting custom model entries upsert or extend built-ins rather than replacing the full list.
›Supports unauthenticated Bedrock proxy endpoints via new AWS_BEDROCK_SKIP_AUTH and AWS_BEDROCK_FORCE_HTTP1 environment variables.
└──▷ BREAKING ON UPGRADE
!models.json provider models no longer performs full replacement of built-in models — it now merges by id, keeping built-in models by default and upserting custom entries. Any config that relied on models to fully replace a provider's model list will now also include the built-ins.
Qwen Code v0.10.0 adds session resume, session history export, Agent Skills GA, Java SDK alpha, and large-paste UI improvements.
└──▷ GET THIS VERSION
$ git clone --branch v0.10.0-preview.1 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.10.0-preview.1
›Adds export command to export session history in Markdown and HTML formats.
›Adds resume and continue options to the SDK, plus extended authType support via feat(sdk) changes.
›Adds FORK_MODE support to ProcessTransport for Electron IPC integration.
›Adds support for resuming sessions by session ID in the query command.
›Promotes Agent Skills from experimental to stable.
+5 moreshow less
›Adds Java SDK alpha (Feat/javasdk alpha 202501).
›Adds large-paste placeholder UI and fixes enter-to-submit on macOS for large pastes.
›Routes debug-mode console calls to a logfile-first debugLogger for cleaner debug output.
›Adds source information tracking in telemetry logs.
›Adds a hint in the UI for installing external-source extensions.
└──▷ BREAKING ON UPGRADE
!Settings renamed from disable* to enable* (negative to positive naming); any config or scripts referencing disable* settings will break.
!The read_many_files tool is removed; its functionality moves to a readManyFiles utility accessible only via user @-commands.
!The Smart Edit tool and ClearcutLogger are removed.
$ git clone --branch v0.10.0-preview.0 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.10.0-preview.0
›Adds export command to dump session history in Markdown or HTML format.
›Adds support for resuming sessions by session ID via the --resume flag in the query command.
›Adds resume and continue options to the SDK, and extends authType support.
›Adds FORK_MODE support to ProcessTransport for Electron IPC integration.
›Introduces Java SDK alpha release.
+3 moreshow less
›Removes the Smart Edit tool and ClearcutLogger; adds readManyFiles utility for user @-commands (replaces the read_many_files tool).
›Routes debug-mode console output through a logfile-first debugLogger instead of stdout.
›Adds hint UI for installing external-source extensions.
└──▷ BREAKING ON UPGRADE
!Settings previously named with disable* prefixes are renamed to enable* (positive naming); any config or scripts referencing the old disable* keys will break.
!The read_many_files tool is removed; functionality is replaced by the readManyFiles utility for user @-commands.
LangChain 1.2.9 adds state updates from wrap_model_call and threading context through create_agent flows and middleware.
└──▷ GET THIS VERSION
$ git clone --branch langchain==1.2.9 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:$ git checkout langchain==1.2.9
›Supports state updates from wrap_model_call with commands, enabling middleware to propagate state changes back through the call graph.
›Threads context through create_agent flows and middleware, making request-scoped context available across agent creation and middleware layers.
LangGraph Python SDK gains cron job update, enable, and disable methods in the crons client.
└──▷ GET THIS VERSION
$ git clone --branch sdk==0.3.4 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:$ git checkout sdk==0.3.4
›Adds update method to the crons client for modifying existing cron jobs.
›Supports enabling and disabling cron jobs via the crons client.
PydanticAI v1.56.0 adds Claude Opus 4.6 support, adaptive thinking, and new Anthropic model settings fields.
└──▷ GET THIS VERSION
$ git clone --branch v1.56.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:$ git checkout v1.56.0
└──▷ USE IT
Enable adaptive extended thinking on a Claude Opus 4.6 call to let the model self-determine reasoning depth.
python
from pydantic_ai import Agent
from pydantic_ai.models.anthropic import AnthropicModel, AnthropicModelSettings
agent = Agent(
AnthropicModel('claude-opus-4-6'),
model_settings=AnthropicModelSettings(
anthropic_effort='auto',
anthropic_thinking={'type': 'adaptive'}
)
)
result = agent.run_sync('Explain quantum entanglement.')
print(result.output)
Opt into an Anthropic beta feature (e.g. a preview API) on a per-agent basis using anthropic_betas.
python
from pydantic_ai import Agent
from pydantic_ai.models.anthropic import AnthropicModel, AnthropicModelSettings
agent = Agent(
AnthropicModel('claude-opus-4-6'),
model_settings=AnthropicModelSettings(
anthropic_betas=['interleaved-thinking-2025-05-14']
)
)
result = agent.run_sync('Draft a threat model for a SaaS API.')
print(result.output)
›Adds anthropic_effort and anthropic_thinking.type='adaptive' to Anthropic model settings, enabling adaptive extended thinking for Claude models.
›Adds anthropic_betas field to AnthropicModelSettings, allowing opt-in to Anthropic beta features per request.
›Adds support for Claude Opus 4.6 as a new model option.
ONNX Runtime v1.24.1 adds plugin EP APIs, free-threaded Python 3.13t/3.14t, CUDA Graph on by default, and broad new op coverage across CUDA, QNN, WebGPU, and CPU.
└──▷ GET THIS VERSION
$ git clone --branch v1.24.1 https://github.com/microsoft/onnxruntime.git
# already have the repo? check out this version:$ git checkout v1.24.1
└──▷ TRY IT
Build ONNX Runtime from source with NCHWc layout enabled to improve Conv model inference throughput on ARM NEON hardware.
›Adds OrtApi::CreateEnvWithOptions() and OrtEpApi::GetEnvConfigEntries() for programmatic environment configuration in plugin execution providers.
›Adds OrtKernelInfo APIs for kernel-based plugin EPs, enabling kernel authors to query session configuration from KernelInfo.
›Adds add_external_initializers_from_files to the Python binding for loading external initializers directly from file paths.
›Adds --enable_arm_neon_nchwc build flag to enable NCHWc layout support for Conv models on ARM NEON, improving convolutional inference performance.
›Enables CUDA Graph by default in the CUDA EP, reducing per-inference launch overhead without additional configuration.
+19 moreshow less
›Introduces a plugin-based Execution Provider (EP) infrastructure with dynamic loading, including initial kernel support, weight pre-packing, EP context model support, and control flow kernel APIs.
›Adds EP Device Compatibility APIs for matching execution providers to available hardware at runtime.
›Adds External Resource Importer API for importing D3D12 shared resources into the DirectML/DX12 execution path.
›Adds Python 3.14 support and free-threaded Python (PEP 703) support for Python 3.13t and 3.14t on Linux.
›Upgrades ONNX dependency to 1.20.1 and Protobuf from 3.20.3 to 4.25.8.
›Upgrades ORT_API_VERSION to 24.
›Adds Java bindings for Auto EP, compiled model support (OrtCompiledModelCompatibility), and compile model APIs.
›Adds .NET 9.0 MAUI targets to the C# binding.
›CUDA EP gains Flash Attention updates, GQA kernel fusion, BF16 support for MoE/qMoE/MatMulNBits, and CUDA 13.0 support.
›TensorRT EP upgraded to TensorRT 10.14 with automatic plugin loading and NVFP4 custom ops.
›TensorRT RTX EP gains RTX runtime caching, CUDA graph support, BFloat16, and memory-mapped engine support.
›QNN EP upgraded to SDK 2.42.0, adding RMSNorm, ScatterElements, GatherND, STFT, and RandomUniformLike ops, plus Gelu pattern fusion, LPBQ quantization, ARM64 wheel builds, and v81 device support.
›OpenVINO EP upgraded to 2025.4.1.
›MIGraphX EP adds QuickGelu, multihead attention, and QLinear pooling ops.
›WebGPU EP gains Flash Attention optimizations, graph capture, Split-K MatMul, qMoE support, and WGSL templates.
›WebNN EP adds GQA local attention, GatherBlockQuantized, ConvInteger, and MatMulInteger ops.
›Node.js binding updated to Node.js v22 with JSI for React Native and JSPI build support.
›CPU backend adds MoE/qMoE kernels, RotaryEmbeddings (opset 23), LayerNorm/RMSNorm broadcasting, SME1/SME2 Convolution and SGemm kernels via KleidiAI, S390x SIMD, and LoongArch64 4-bit quantization.
›Arm NN EP is formally deprecated and will be removed in an upcoming release; all --use_armnn build options will be dropped.
└──▷ BREAKING ON UPGRADE
!Python 3.10 wheels are no longer published; upgrade to Python 3.11 or later is required.
!x86_64 binaries for macOS and iOS are no longer provided, and the minimum macOS version is raised to 14.0.
!Builds using --use_armnn will fail once the upstream ArmNN EP removal lands (release TBD); adjust configurations in advance.
llama.cpp b7957 adds Kimi-Linear model support with backend-agnostic inference and MLA KV cache.
└──▷ GET THIS VERSION
$ git clone --branch b7957 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b7957
›Adds support for the Kimi-Linear (Kimi-K2) model architecture, including convert_hf_to_gguf.py conversion, backend-agnostic inference, and MLA KV cache via the llm_arch_is_hybrid path.
›Introduces llm_graph_input_mem_hybrid_k class to support MLA-style KV cache for hybrid architectures like Kimi-Linear.
›Adds Kimi-K2-specific end-of-generation (EOG) tokens to the vocabulary recognition layer.
›Adds causal_conv1d static function abstracting convolution logic for query, key, and value projections in Kimi-Linear layers.
›Supports Kimi-Linear MoE parameters including n_experts, n_experts_used, and score_func via the shared TextModel conversion path in convert_hf_to_gguf.py.
+1 moreshow less
›Skips quantization of conv1d weights for Kimi-Linear models during GGUF conversion.
Arize Phoenix 12.34.0 adds a tool_selection evaluator to the evals library.
└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v12.34.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:$ git checkout arize-phoenix-v12.34.0
›Adds tool_selection evaluator to the evals library for assessing whether an LLM chose the correct tool during a tool-use span.
LanceDB python-v0.29.0 adds VoyageAI v4 embeddings, exposes fast_search in the sync API, and introduces storage options APIs.
└──▷ GET THIS VERSION
$ git clone --branch python-v0.29.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:$ git checkout python-v0.29.0
└──▷ USE IT
Run an approximate nearest-neighbor search using the synchronous API without waiting for a full index build.