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.
$ git clone --branch v2.3.0 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:$ git checkout v2.3.0
└──▷ USE IT
Print a multi-agent Team response while showing each member's individual output, for debugging delegation chains.
python
team.print_response("Summarise the threat landscape", show_member_responses=True)
›Introduces MigrationManager class to apply schema migrations for sessions and memories tables across PostgreSQL, SQLite, MySQL, and SingleStore backends.
›Adds get_messages and get_chat_history methods to AgentSession, TeamSession, and WorkflowSession session classes, with full filtering capabilities.
›Adds get_session_messages and get_chat_history methods to Agent, Team, and Workflow classes; adds get_chat_history to the WorkflowStep class.
›Adds show_member_responses parameter to Team.print_response and Team.aprint_response to surface member-level outputs during streaming.
›Adds RedisCluster support when configuring a RedisDb instance for agent database storage.
+3 moreshow less
›Adds sound-effect generation support to ModelLabsTools via ModelsLab SFX.
›All model instances now share a global httpx client singleton with http2 multiplexing enabled, improving resource use and instantiation speed.
›Stateless knowledge-base filters now work correctly with AgentOS; using knowledge(...) filters requires setting contents_db.
└──▷ BREAKING ON UPGRADE
!delegate_task_to_all_members parameter on Team is renamed to delegate_to_all_members; existing code using the old name will break.
!GoogleSearchTools toolkit has been removed entirely; callers must switch to DuckDuckGoTools.
!stream_events parameter has been removed from print_response, aprint_response, and CLI methods on Agent, Team, and Workflow.
!get_messages_for_session has been removed from Agent and Team.
!get_messages_from_last_n_runs has been removed from Session, Agent, and Team.
!Using knowledge(...) with knowledge_filters now requires contents_db to be set; omitting it will break filtering.
!The deprecated AgentOS parameters os_id, fastapi_app, enable_mcp, and replace_routes have been removed; use id, base_app, enable_mcp_server, and on_route_conflict respectively.
!The default Nebius model endpoint changed from the AI Studio URL to api.tokenfactory.nebius.com; users targeting Nebius AI Studio must now explicitly pass that URL as base_url.
!PostgreSQL sessions and memories tables require migration: created_at and feedback columns added to memories, and all JSON columns in PostgresDb converted to JSONB.
PydanticAI v1.21.0 adds MCP client resource support, server instructions exposure, and a BinaryContent path loader.
└──▷ GET THIS VERSION
$ git clone --branch v1.21.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:$ git checkout v1.21.0
└──▷ USE IT
Load a local image or binary file into an agent message without manually reading bytes.
python
from pydantic_ai.messages import BinaryContent
content = BinaryContent.from_path('screenshot.png')
Inspect the instructions a connected MCP server advertises, useful for debugging server configuration.
python
from pydantic_ai.mcp import MCPServerSSE
server = MCPServerSSE(url='http://localhost:8080/sse')
print(server.instructions)
›Adds BinaryContent.from_path convenience method for loading binary content directly from a file path.
›Exposes MCP server instructions via the MCPServer.instructions property.
›Adds MCP client Resources support, enabling agents to read resources from MCP servers.
›Enforces that message history always starts with a user message.
›Always strips Markdown fences from structured output, improving reliability of parsed responses.
└──▷ BREAKING ON UPGRADE
!Message history that does not start with a user message is now rejected — any existing code passing histories beginning with a non-user message will break.
An open-source AI agent that brings the power of Gemini directly into your terminal.
gemini-cli v0.19.0-nightly adds Gemini 3 thinking-level support, live preview-feature toggling, and user email in the about box.
└──▷ GET THIS VERSION
$ git clone --branch v0.19.0-nightly.20251121.5982abeff https://github.com/google-gemini/gemini-cli.git
# already have the repo? check out this version:$ git checkout v0.19.0-nightly.20251121.5982abeff
›Adds thinking-level control for Gemini 3 models, wired into the model config hierarchy.
›Enables switching preview features on and off without restarting the CLI.
›Displays the authenticated user's email in the about box.
›Wires up chat code path to honour per-model config settings.
›Applies default model routing for the Zed integration.
└──▷ BREAKING ON UPGRADE
!The default compress threshold for API key users is changed to 0.5 (from its previous value), which may trigger context compression sooner than before on existing setups.
›New Geometry data type stores OGC-compliant geometric objects (POINT, LINESTRING, POLYGON) with spatial relationship operators (st_contains, st_intersects, st_within, st_dwithin) and an RTREE spatial index for LBS and mapping workloads.
›New TIMESTAMPTZ data type brings timezone-aware temporal storage; supports a timezone property on Databases and Collections for a default time context, expression-based filtering for time range queries, and a timezone parameter on query/search for on-the-fly timestamp conversion.
›New Boost Ranker lets searches apply an optional filtering condition and a specified weight to promote or demote matched candidates in final results, independent of raw vector distance scores.
›STL_SORT index now supports VARCHAR and TIMESTAMPTZ datatypes.
›Dynamic field can now be enabled on an existing collection via ALTER COLLECTION without recreating it.
+9 moreshow less
›Supports JSONL/NDJSON files for bulk-insert (bulkinsert) operations.
›geometrycache is now an optional configuration, allowing operators to tune memory usage for spatial workloads.
›Adds max_connection config for remote storage connections.
›Removes the maximum vector field number limit per collection.
›Adds new config keys with dynamic update support.
›Knowhere thread pool config is now refreshable at runtime.
›RBAC support added for updateReplicateConfiguration.
›Import job listings now show create time.
›nullable support added for Geometry and TIMESTAMPTZ field types.
Weaviate v1.31.20 adds Geo HNSW index configuration, replication scaling, VoyageAI v3.5 models, Cohere dimensions, and Google batch API support.
└──▷ GET THIS VERSION
$ git clone --branch v1.31.20 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:$ git checkout v1.31.20
›Adds configurable HNSW index settings for Geo indexes, enabling tuning of the Geo HNSW index via collection configuration.
›Introduces a replication scaling plan with a dedicated scale URL that includes collection and replication factor parameters, enabling dynamic replication factor changes.
›Adds support for the dimensions setting in Cohere embedding modules, allowing control over output vector dimensionality.
›Introduces VoyageAI's v3.5 models as supported embedding options in the VoyageAI module.
›Adds batch API support in the text2vec-google module, enabling bulk vectorization requests to the Google embedding API.
+1 moreshow less
›Adds support for the newest Anthropic models in the generative-anthropic module.