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.
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
Claude Code v2.1.113 adds domain blocklisting, exec-wrapper deny rules, and expanded Remote Control capabilities.
└──▷ GET THIS VERSION
$ git clone --branch v2.1.113 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:$ git checkout v2.1.113
└──▷ USE IT
Block a specific domain (e.g., an exfiltration endpoint) even when a wildcard allowedDomains rule would normally permit it.
json
# In your Claude Code settings (e.g., .claude/settings.json)
{
"sandbox": {
"network": {
"allowedDomains": ["*.example.com"],
"deniedDomains": ["malicious.example.com"]
}
}
}
›New sandbox.network.deniedDomains setting blocks specific domains even when a broader allowedDomains wildcard would otherwise permit them.
›Security: Bash deny rules now match commands wrapped in env/sudo/watch/ionice/setsid and similar exec wrappers, closing bypass paths.
GitHub Copilot CLI v1.0.32 adds --connect, --print-debug-info, --session-idle-timeout, short session ID resumption, auto model selection, and file attachment to prompts.
└──▷ GET THIS VERSION
$ git clone --branch v1.0.32 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:$ git checkout v1.0.32
└──▷ TRY IT
Resume a previous session using just the first 7+ hex characters of its ID instead of the full ID.
$ gh copilot --resume a3f92b1
Diagnose environment or terminal capability issues by printing version and environment details.
$ gh copilot --print-debug-info
Set a session idle timeout so long-running unattended sessions are automatically cleaned up.
$ gh copilot --session-idle-timeout 30m
›Adds --connect flag to directly connect to a remote session by ID without additional steps.
›Adds --print-debug-info flag to display version, terminal capabilities, and environment variables — useful for diagnosing environment issues.
›Adds --session-idle-timeout flag to configure session idle timeout (disabled by default).
›Allows short session ID prefixes (7+ hex characters) with --resume and /resume instead of requiring the full ID.
›Adds auto as a selectable model value, letting Copilot automatically pick the best available model for each session.
+6 moreshow less
›Supports attaching document files to prompts for the agent to read and reason about.
›Shows warnings when approaching 75% and 90% of weekly usage limits.
›Rate-limited sessions now pause queued messages and automatically retry instead of dropping them.
›Skills that exceed the token limit remain discoverable and invocable by name.
›Current date and time in agent context now includes local timezone offset.
›/feedback saves the bundle to TEMP when the working directory is not writable.
Framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks.
langchain-core 1.3.0 adds chat model and LLM invocation params to traceable metadata.
└──▷ GET THIS VERSION
$ git clone --branch langchain-core==1.3.0 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:$ git checkout langchain-core==1.3.0
›Adds chat model and LLM invocation parameters to traceable metadata, giving tracing pipelines richer context about how models were called.
langchain-anthropic 1.4.1 adds adaptive thinking mode and Claude Opus 4.7 feature support.
└──▷ GET THIS VERSION
$ git clone --branch langchain-anthropic==1.4.1 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:$ git checkout langchain-anthropic==1.4.1
llama.cpp server gains LLAMA_MEDIA_MARKER env var to pin the media marker used in multimodal prompts.
└──▷ GET THIS VERSION
$ git clone --branch b8821 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:$ git checkout b8821
›Adds LLAMA_MEDIA_MARKER environment variable to pin the server's media marker token, overriding the randomly generated one; useful for scripted or automated multimodal prompt workflows.
Milvus v2.6.15 adds sub-millisecond latency metrics, a requery policy parameter, delegator-side segment pruning, and a querycoord load-priority override.
└──▷ GET THIS VERSION
$ git clone --branch v2.6.15 https://github.com/milvus-io/milvus.git
# already have the repo? check out this version:$ git checkout v2.6.15
└──▷ USE IT
Tune the requery stage for regular search to reduce reduce-phase overhead in latency-sensitive workloads.
yaml
common:
searchRequeryPolicy: <policy_value>
›Adds common.searchRequeryPolicy parameter to control the requery stage in regular search, enabling fine-grained tuning of search result refresh behavior.
›Adds a querycoord configuration to force-override segment load task priority, giving operators direct control over load scheduling.
›Adds delegator-side segment pruning via PK predicate hints, reducing unnecessary data scanned during search.
›Improves latency metrics precision by switching from milliseconds to microseconds for insert, delete, query, search, and upsert paths, preserving sub-millisecond resolution.
›Separates metrics for internal upsert/delete requery operations from user-initiated queries, enabling more accurate monitoring of user-facing query performance.
+2 moreshow less
›Reduces remote IO syscalls during BM25 IDF preload by buffering the storage reader in streamOneFile.
›Removes the unused SuffixSnapshot time-travel layer from RootCoord metadata storage, simplifying the catalog and eliminating orphaned snapshot keys.