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.
LlamaIndex 0.14.8 adds buffer support for media blocks, ScrapyWebReader, Bedrock tool call block integration, and OpenAI v2 SDK support across packages.
└──▷ GET THIS VERSION
$ git clone --branch v0.14.8 https://github.com/run-llama/llama_index.git
# already have the repo? check out this version:$ git checkout v0.14.8
└──▷ USE IT
Load web pages at scale using the new Scrapy-based reader when you need to crawl structured or JavaScript-heavy sites.
python
from llama_index.readers.web import ScrapyWebReader
reader = ScrapyWebReader()
documents = reader.load_data(urls=["https://example.com"])
›Adds buffer field to image, audio, video, and document blocks in llama-index-core, enabling direct binary data handling in multimodal pipelines.
›Adds ScrapyWebReader integration in llama-index-readers-web, enabling Scrapy-based web crawling as a document source.
›Adds RawMessageDeltaEvent support in llama-index-llms-anthropic streaming responses.
›Integrates tool call block support into llama-index-llms-bedrock-converse, aligning Bedrock Converse with the tool-block pattern.
›Integrates tool block support into llama-index-llms-google-genai, aligning Google GenAI with the tool-block pattern.
+3 moreshow less
›Adds token usage information to additional_kwargs in llama-index-llms-google-genai chat responses.
›Adds OpenAI v2 SDK support across llama-index-llms-openai, llama-index-llms-upstage, llama-index-packs-streamlit-chatbot, llama-index-packs-voyage-query-engine, llama-index-readers-whisper.
›Updates llama-index-llms-bedrock-converse model name extraction to include the jp region prefix.
PydanticAI v1.13.0 adds AgentRun message accessors and new gateway config fields for API type, profile, and routing group.
└──▷ GET THIS VERSION
$ git clone --branch v1.13.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:$ git checkout v1.13.0
└──▷ USE IT
Inspect all messages from a completed agent run, including tool calls and responses, for logging or audit.
python
result = await agent.run('What is the capital of France?')
all_msgs = result.all_messages()
new_msgs = result.new_messages_json()
Route gateway traffic to a specific profile and routing group when using the PydanticAI gateway integration.
python
from pydantic_ai.models.gateway import GatewayModel
model = GatewayModel(
model_name='gpt-4o',
api_type='azure',
profile='prod-profile',
routing_group='eu-west',
)
›Adds AgentRun.all_messages(), AgentRun.new_messages(), AgentRun.all_messages_json(), and AgentRun.new_messages_json() methods to retrieve accumulated or incremental messages from an agent run.
›Adds api_type support to the gateway integration, enabling selection of the backend API type via gateway config.
›Adds profile and routing_group support to the gateway integration, enabling fine-grained routing control.
›Expands known model lists for Cerebras and Heroku providers.
Qwen Code v0.2.0-nightly adds TodoWriteTool and TaskTool support to the Zed editor integration.
└──▷ GET THIS VERSION
$ git clone --branch v0.2.0-nightly.20251110.3c01c715 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:$ git checkout v0.2.0-nightly.20251110.3c01c715
›Extends the Zed editor integration with TodoWriteTool and TaskTool support, enabling todo and task management surfaces inside Zed.
An open-source AI agent that brings the power of Gemini directly into your terminal.
gemini-cli v0.15.0-nightly adds /extensions restart command, live memory reload on extension changes, and a new a2a listCommands endpoint.
└──▷ GET THIS VERSION
$ git clone --branch v0.15.0-nightly.20251110.c0b766ad https://github.com/google-gemini/gemini-cli.git
# already have the repo? check out this version:$ git checkout v0.15.0-nightly.20251110.c0b766ad
└──▷ TRY IT
Reload all extensions mid-session after editing an extension config or toggling excluded tools — no need to restart the CLI.
$ /extensions restart
›Adds /extensions restart slash command to reload extensions without restarting the CLI.
›Reloads Gemini memory automatically when extensions are loaded or unloaded.
›Respects updates to excluded tools when extensions are reloaded at runtime.