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.
Qwen Code v0.10.0 adds session resume, export to Markdown/HTML, Java SDK alpha, Agent Skills GA, and large-paste UI improvements.
└──▷ GET THIS VERSION
$ git clone --branch v0.10.0-nightly.20260207.36931e1e https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.10.0-nightly.20260207.36931e1e
└──▷ TRY IT
Resume a previous conversation session in a scripted or long-running workflow without losing context.
$ qwen query --resume <sessionId> 'Continue the refactor we started'
›Adds --resume <sessionId> support to the query command so practitioners can resume previous sessions by session ID.
›Adds export command for session history with markdown and HTML output formats.
›Adds resume and continue options and extends authType support in the SDK.
›Adds FORK_MODE support to ProcessTransport for Electron IPC integration.
›Adds Java SDK (alpha) for programmatic access to Qwen Code capabilities.
+5 moreshow less
›Promotes Agent Skills from experimental to stable.
›Adds a large-paste placeholder in the CLI UI, improving handling of large clipboard input on macOS.
›Adds debug mode output routed logfile-first via debugLogger, replacing direct console calls.
›Adds source information tracking in telemetry logs.
›Adds a UI hint for installing external-source extensions.
└──▷ BREAKING ON UPGRADE
!Settings renamed from disable* to enable* (negative to positive naming) — any configuration or scripts referencing the old disable* setting keys will break.
!The Smart Edit tool and ClearcutLogger are removed.
!The read_many_files tool is removed; its functionality is replaced by the readManyFiles utility for user @-commands.
!Qwen OAuth free quota reduced from 2000 to 1000 requests per day.
›Adds ace-step backend for music generation (MusicGen/Ace-Step), with a new Web UI for text-to-music generation directly in the browser.
›Adds transcribe response format request parameter to the STT API endpoint, letting callers control transcription output format.
›Adds whisperx backend for transcription with native speaker diarization (identifying who is speaking in multi-speaker audio).
›Adds vllm-omni backend for high-performance inference with vLLM Omni models.
›Adds VoxCPM TTS backend with streaming mode support, reducing time-to-first-audio for speech synthesis.
+7 moreshow less
›Adds qwen-asr backend for Qwen speech recognition models.
›Adds nemo backend for Nvidia NeMo ASR (speech-to-text).
›Adds vibevoice ASR support alongside its existing TTS capability.
›Adds qwen-tts (Qwen-TTS) model support for text-to-speech.
›Introduces native realtime audio conversation support compatible with OpenAI's Realtime API, including STT/TTS pipelines, voice-to-voice models, and tool call support.
›Extends MLX build support to CUDA 12, CUDA 13, L4T (Nvidia Jetson), SBSA, and macOS Metal for broader hardware coverage.
›Adds most remaining Piper voices from Hugging Face to the model gallery.
└──▷ BREAKING ON UPGRADE
!The ExLlama backend has been removed; migrate to ExLlamaV2 or llama.cpp loaders.
!The Bark backend has been removed (upstream unmaintained); use the new TTS backends (VoxCPM, Qwen-TTS, Piper) instead.
llama.cpp b7964 adds support for the Step3.5-Flash model architecture.
└──▷ GET THIS VERSION
$ git clone --branch b7964 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b7964
›Adds support for the Step3.5-Flash model architecture (LLM_ARCH_STEP35), including GGUF conversion, swiglu clamp KV entries, and KV shifting disabled for this architecture.