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.
OpenCode v1.0.210 adds web interface project opening, global Claude skills, variants toggle, plugin server URL exposure, and desktop system notifications.
└──▷ GET THIS VERSION
$ git clone --branch v1.0.210 https://github.com/sst/opencode.git
# already have the repo? check out this version:$ git checkout v1.0.210
›Adds ability to open projects in the web interface.
›Reads global Claude skills in addition to project-specific skills.
›Adds a variants toggle.
›Exposes server URL to plugins.
›Adds readline shortcuts to the desktop app.
+1 moreshow less
›Adds system notifications support for the desktop application.
OpenHands 1.1.0 adds OAuth 2.0 Device Flow for CLI auth, Forgejo integration, and conversation export.
└──▷ GET THIS VERSION
$ git clone --branch 1.1.0 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:$ git checkout 1.1.0
└──▷ HOW TO FIND IT
Authenticate the OpenHands CLI from a headless server or remote shell without needing a browser on the same machine.
📍In the OpenHands CLI, select 'Login' and follow the Device Flow prompt: visit the displayed URL on any device and enter the code to authorize the session.
Save a full agent conversation for audit, review, or sharing — useful after a complex remediation session.
📍In the OpenHands UI, open the conversation panel, locate the session, and click 'Export Conversation' to download the conversation as a file.
›Adds OAuth 2.0 Device Flow for CLI authentication, enabling headless and browser-less login workflows.
›Adds Forgejo integration, extending repository provider support to the self-hosted Forgejo platform.
›Adds an Export Conversation button in the conversation panel to save full conversation history.
›Adds a Refresh button on the Changes tab for on-demand file-diff updates without reloading.
Qwen Code v0.6.0-nightly adds locale-based LLM language auto-detection and ChatCompletionContentPart merging support.
└──▷ GET THIS VERSION
$ git clone --branch v0.6.0-nightly.20251230.105ad743 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.6.0-nightly.20251230.105ad743
›Auto-detects the system locale to set the LLM output language, eliminating manual language configuration.
›Supports merging ChatCompletionContentPart objects and filters empty messages from chat completion requests.
›Adds keep_alive parameter to llama-index-embeddings-ollama embedding class to control model persistence in memory.
›Switches use_file_api to a flexible file_mode field in llama-index-llms-google-genai for more granular file upload handling, with a bump to google-genai v1.52.0.
›Adds gpt-5.2 and gpt-5.2 pro model support to llama-index-llms-openai.
›Adds async support to ToolSpec across llama-index-core, llama-index-vector-stores-azurepostgresql, llama-index-vector-stores-lancedb, and llama-index-callbacks-agentops.
›Adds new Element node parser to llama-index-core for structured element-level document parsing.
+11 moreshow less
›Adds new llama-index-llms-aibadgr integration (v0.1.0) for AI Badgr OpenAI-compatible LLMs.
›Adds new llama-index-tools-typecast integration (v0.1.0) with text-to-speech features.
›Adds MENTIONS edge type to the NebulaGraph property graph store in llama-index-graph-stores-nebula.
›Adds Voyage Multimodal 3.5 model support to llama-index-embeddings-voyageai.
›Adds async MongoDB Atlas vector store support to llama-index-vector-stores-mongodb.
›Adds delete index capability to llama-index-vector-stores-mongodb.
›Adds Google Vertex AI Vector Search v2.0 support to llama-index-vector-stores-vertexaivectorsearch.
›Permits passing a custom httpx.AsyncClient when constructing a BasicMCPClient in llama-index-tools-mcp.
›Restores haiku-3 model support to llama-index-llms-anthropic.
›Improves MockFunctionCallingLLM in llama-index-core for better testing of function-calling workflows.
›Adds positional thought signature for 'thoughts' in llama-index-llms-google-genai.
└──▷ BREAKING ON UPGRADE
!The use_file_api field in llama-index-llms-google-genai is replaced by file_mode; existing code setting use_file_api must be updated to use file_mode.