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.
An open-source AI agent that brings the power of Gemini directly into your terminal.
gemini-cli v0.5.0-preview.1 adds git/PR review commands, runtime ripgrep download, MCP slash command discoverability, and smarter tool output handling.
└──▷ GET THIS VERSION
$ git clone --branch v0.5.0-preview.1 https://github.com/google-gemini/gemini-cli.git
# already have the repo? check out this version:$ git checkout v0.5.0-preview.1
└──▷ TRY IT
Install an extension by passing the source as a positional argument instead of a flag.
$ gemini extensions install <source>
›Adds new /docs, /git, and /PR review slash commands for documentation lookup, git operations, and pull request review workflows.
›Downloads ripgrep at runtime when enabled, removing the need for a pre-installed binary.
›Saves large shell command tool outputs to a file and returns truncated lines to the model, preventing context overflow.
›Improves discoverability of MCP slash commands in the UI.
›Adds enum option support in settings.json for constrained setting values.
+5 moreshow less
›Makes source a positional argument in extensions install, simplifying the install invocation.
›Allows users to type input while waiting for MCP servers to initialize.
›Adds hidden property support for slash commands, enabling commands to opt out of autocompletion and /help discovery.
›Moves scope settings into a new dedicated dialog for clearer configuration management.
›Shifts IDE context filtering to the CLI side and updates port discovery logic for the IDE companion.
└──▷ BREAKING ON UPGRADE
!Org/repo install support for extensions has been removed; extensions install no longer accepts org/repo targets.
langchain-chroma 0.2.6 adds collection forking support for Chroma vector stores.
└──▷ GET THIS VERSION
$ git clone --branch langchain-chroma==0.2.6 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:$ git checkout langchain-chroma==0.2.6
›Adds support for collection forking in the Chroma vector store integration, enabling practitioners to duplicate and branch existing collections.
langchain-anthropic adds web fetch beta support for Claude models.
└──▷ GET THIS VERSION
$ git clone --branch langchain-anthropic==0.3.20 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:$ git checkout langchain-anthropic==0.3.20
›Adds web fetch beta support to ChatAnthropic, enabling Claude models to retrieve content from URLs during inference.
Chroma 1.0.21 adds sparse vector support with a new search endpoint, AVX512-accelerated distance calculations, and HNSW index loading without disk intermediary.
└──▷ GET THIS VERSION
$ git clone --branch 1.0.21 https://github.com/chroma-core/chroma.git
# already have the repo? check out this version:$ git checkout 1.0.21
›Adds get_collection_by_crn to the JS client for retrieving collections by cloud resource name.
›Adds new internal SPANN config nreplica_count to limit the number of centers considered on write.
›Adds AVX512 support to distance calculations, accelerating nearest-neighbor search on compatible hardware.
›Implements sparse vector support, integrating a sparse index into the metadata segment.
›Implements a new search endpoint supporting sparse vector queries, with updated auth and metering.
+9 moreshow less
›Implements search for the Python client, enabling sparse vector queries directly from Python.
›Allows adding annotations to the SysDb deployment in the Helm chart.
›Loads HNSW index without a disk intermediary, reducing I/O overhead on the write path.
›Auth hooks now return user identity, enabling identity-aware authorization logic.
›Adds the requesting tenant as a requester:UUID scorecard tag for improved observability.
›Adds metrics for the log client and compactor.
›Manifest and etag caching added to the log layer to reduce redundant fetches.
›Improves Python client write throughput via internal optimizations.