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 autogpt-platform-beta-v0.6.70 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:$ git checkout autogpt-platform-beta-v0.6.70
›Adds hire/install API and roster seeds for a new Expert entity, enabling programmatic management of expert agents.
›Adds configurable transcription endpoints in CoPilot, allowing operators to point speech-to-text at custom or self-hosted services.
›Adds 'Most Recently Ran' sorting option in the Library for faster access to active agents.
›Enables pasting images directly from the clipboard into CoPilot chat.
›Surfaces skipped webhook presets when a trigger is swapped, making preset conflicts visible during trigger changes.
+2 moreshow less
›Surfaces clear file-size errors on image and logo uploads so users know exactly why an upload was rejected.
›Adds a described search command dialog, improving discoverability of the search interface.
PydanticAI v2.20.0 adds Claude Opus 5 and OpenAI Responses API reasoning.context support for GPT-5 families.
└──▷ GET THIS VERSION
$ git clone --branch v2.20.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:$ git checkout v2.20.0
└──▷ USE IT
Run inference against the new Claude Opus 5 model.
python
from pydantic_ai import Agent
agent = Agent('anthropic:claude-opus-5')
result = agent.run_sync('Summarize the OWASP Top 10 for 2025.')
print(result.output)
›Adds reasoning.context support for the OpenAI Responses API, defaulting to all_turns, for the gpt-5.4, gpt-5.5, and gpt-5.6 model families.
›Adds claude-opus-5 model support via the Anthropic provider.
Autonomous coding agent as an SDK, IDE extension, or CLI assistant.
Cline desktop v0.0.7 adds system tray status, session favorites, subagent visibility, and free-tier model support.
└──▷ GET THIS VERSION
$ git clone --branch desktop-v0.0.7 https://github.com/cline/cline.git
# already have the repo? check out this version:$ git checkout desktop-v0.0.7
›New system tray icon displays live app status and the count of currently running agent sessions.
›Session history is now paginated in ten-session pages, loading older sessions on demand as you scroll.
›Sessions can be favorited and are ordered by most recent activity, with consistent status dot colors across views.
›Subagent and teammate runs now appear inline within their parent session, showing status and results.
›Free Cline models are now available and labeled '(free)' in model pickers, with a message including reset time when the free-tier limit is reached.
+1 moreshow less
›Chat UI adds tool-specific icons on tool disclosures, elapsed thinking time, restyled reasoning sections, aligned timestamps, and layout-stable message actions with a viewport-anchored scroll.
Goose v1.45.0 adds tab completion for the model command, a GOOSE_DOCS_ROOT env var for air-gapped deployments, and the ability to disable built-in skills.
└──▷ GET THIS VERSION
$ git clone --branch v1.45.0 https://github.com/block/goose.git
# already have the repo? check out this version:$ git checkout v1.45.0
└──▷ TRY IT
Point Goose at a local documentation mirror so it can answer help queries without outbound internet access.
Lightweight coding agent that runs in your terminal
Codex CLI adds managed in-app updates so the tool can keep itself current without manual reinstallation.
└──▷ GET THIS VERSION
$ git clone --branch rust-v0.146.0-alpha.9.1 https://github.com/openai/codex.git
# already have the repo? check out this version:$ git checkout rust-v0.146.0-alpha.9.1
›Adds managed in-app updates, allowing Codex CLI to update itself automatically from within the application.
$ git clone --branch rust-v0.147.0-alpha.1 https://github.com/openai/codex.git
# already have the repo? check out this version:$ git checkout rust-v0.147.0-alpha.1
›Adds MCP 2026-07-28 discovery support and completes the full MCP 2026 client specification.
›Raises the MCP server recursion limit to unblock deeper tool-call chains.
›Exposes cached MCP tools before the MCP server finishes starting up, reducing turn latency at session start.
›Routes MCP OAuth flows through the configured HTTP clients, ensuring proxy and routing settings apply to all authentication requests.
›Adds persisted sections for organizing threads in the TUI.
+9 moreshow less
›Adds configurable developer instructions for v2 subagents.
›Supports model-owned token budget defaults.
›Routes curated plugins by authentication mode.
›Supports self-serve Business ProLite accounts.
›Scales skill metadata budgets with context windows.
›Adds bounded metadata for executed tool calls.
›Adds managed policy support for in-app updates.
›Terminates Windows non-TTY processes on interrupt, improving Ctrl-C behavior in non-interactive pipelines.
›Raises the Windows exec yield floor to 10 seconds for more reliable subprocess scheduling.
›Adds pi auth print-api-key and pi auth print-bearer-token commands to export configured credentials to external clients, with automatic OAuth refresh and minimum-validity enforcement.
›Adds support for manual redirect URL and authorization-code entry during pi auth login on OpenRouter, enabling headless and SSH-remote sign-in when the loopback callback is unavailable.
›Adds the 'pending' stop reason for partial streaming messages in the custom provider stream pattern.
›Adds per-request fetch injection for supported text and image provider transports.
›Adds Claude Opus 5 support via GitHub Copilot with adaptive thinking and a 1M context window.
└──▷ BREAKING ON UPGRADE
!TypeBox aliases upgraded to 1.3.7, removing Type.Base, Type.Awaited, Type.Promise, Type.AsyncIterator, Type.Iterator, Type.Options, and Value.Mutate; extensions using these APIs must migrate to supported TypeBox APIs.
$ git clone --branch v2.71.0 https://github.com/triton-inference-server/server.git
# already have the repo? check out this version:$ git checkout v2.71.0
›Redacts restriction header values from the OpenAI frontend startup log and enforces inference restrictions in the SageMaker MME invoke handler.
›Adds a streaming tool-call parse buffer limit to the OpenAI-compatible frontend to cap memory usage during streaming tool calls.
›Adds --spec-type draft-mtp support for GLM_DSA (GLM-5.2) models, enabling NextN/MTP speculative decoding with a dense MLA draft head, sigmoid-gated MoE with shared expert, and NVFP4 _s scale tensor support.
›Adds --mtp and --no-mtp export flags to the converter for GlmMoeDsaForCausalLM (GLM-5.2): --no-mtp drops the NextN block (blk.78) and its nextn_predict_layers KV; --mtp keeps only the NextN block plus shared embeddings, norm, and lm_head.
Langfuse v4 brings full-text search, monitors/alerts, filter search bar, and faster Observations/Metrics API v2 to self-hosted deployments.
└──▷ GET THIS VERSION
$ git clone --branch v4.0.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:$ git checkout v4.0.0
›Adds Observations API v2 with significantly faster performance for self-hosted deployments.
›Adds Metrics API v2 with significantly faster performance for self-hosted deployments.
›Adds full-text search across inputs, outputs, and metadata for self-hosted deployments.
›Adds a filter search bar for narrowing trace and observation views.
›Adds monitors and alerts for metric-based observability.
+8 moreshow less
›Adds tracing filter for ingested API key, enabling per-key trace attribution.
›Adds opt-in queue-consumption liveness health check for the worker service.
›Adds approximate row count display in the traces table.
›Adds outlier chart strip (Pulse) above the trace table for surfacing anomalous events.
›Adds append-only agent run events for the in-app agent (public beta), now available outside Enterprise Edition.
›Adds authentication headers support on remote experiment runs.
›Adds fresh download URL minting on the exports page for batch exports.
›Adds worker path for background in-app agent runs.
└──▷ BREAKING ON UPGRADE
!Upgrading from v3 to v4 requires following the dedicated upgrade guide at langfuse.com/self-hosting/upgrade/upgrade-guides/upgrade-v3-to-v4; existing deployments will not work without this migration.
$ git clone --branch v3.0.0 https://github.com/milvus-io/milvus.git
# already have the repo? check out this version:$ git checkout v3.0.0
└──▷ USE IT
Reproduce a custom Faiss recipe directly on Milvus — useful when you have a tuned FAISS index-factory string from offline experiments and want to apply it in production without re-engineering.
›Adds FAISS index type accepting arbitrary Faiss index-factory strings via the faiss_index_name parameter (e.g., IVF64,Flat, HNSW16,Flat, OPQ16,IVF64,PQ16x4), with search parameters passed through so Faiss recipes reproduce directly on Milvus.
›Adds milvus-table external format that treats Milvus Snapshot metadata and Storage V3 manifests as an external source, enabling a collection snapshot to be served as an external table for shared, manifest-backed access across batch and serving systems.
›Introduces TEXT fields for long text with storage-side length limits removed, supporting text_match, phrase_match, and BM25; values under 64 KB stay inline, larger values go to partition-level LOB files in Vortex format storing only (file_id, offset) references.
›Adds native XGBoost scoring for L0 reranking using UBJ models registered as FileResources, plus Hugging Face Inference Providers for server-managed text embedding and sentence-similarity reranking via the Function Chain API.
›Overhauled sparse vector index with SINDI, Block-Max WAND, and Block-Max MaxScore algorithms, inverted-list compression, and configurable quantization; SINDI becomes the default for sparse IP search and MaxScore for BM25 once new index versions are enabled — compressed BM25 index is ~3x smaller than the 2.6 sparse index and SINDI reaches ~10x the QPS of MaxScore on learned sparse embeddings.
+7 moreshow less
›Supports online schema evolution: columns can be added, backfilled (external or inner/kernel-derived), and dropped on live collections without downtime, including BM25 and MinHash function output fields computed over existing data automatically.
›Extends External Collection to support function output fields (BM25 sparse vectors, MinHash signatures, text embeddings) and additive schema refresh — new columns in the external table patch affected segments instead of rebuilding the collection.
›Adds faceted search on the search path: specify a facet field at search time and Milvus returns top facet values with their best-matching ANN member and aggregates such as COUNT and AVG in a single request.
›Expands StructArray with null value support, bitmap indexes, dynamic field addition on live collections, partial upsert of struct fields, REST and bulk-import coverage, and element-level hybrid search with per-entity collapse (max / sum / avg / top-k variants), range search, group-by, element_filter predicates, MATCH_ANY / MATCH_ALL / MATCH_LEAST / MATCH_MOST / MATCH_EXACT quantifiers, positional sub-field access such as tags[0][name], and array_length() on the struct column.
›Adds composable reranking through the Function Chain API, executing an ordered typed pipeline within a single search request combining L0 rescoring on QueryNode and L2 post-reduction reranking on Proxy, with score transformation, model-based reranking, sorting, and candidate trimming.
›Adds Lance alongside Parquet for open-ecosystem storage interchange, and introduces Vortex as the next-generation internal columnar format with adaptive encodings (dictionary, RLE, bit-packing, float-specific compression) and zero-copy decompression.
›Woodpecker WAL can now be deployed as an independent standalone service for independent scaling, fault isolation, and observability on large clusters and high-write workloads.
└──▷ BREAKING ON UPGRADE
!GPU images now require CUDA 12.9 and no longer support Ubuntu 20.04 GPU compatibility.
!Once Storage V3 is enabled or used (e.g., via common.storage.useLoonFFI), rollback from 3.0 to 2.6 is no longer possible, even though a 3.0 deployment that has not used Storage V3 features can be rolled back.