Heads up This site is currently under heavy development.
Subscribe Get it delivered — the daily firehose, filtered to the tools you run, plus the documentation changes vendors never announce. Compare plans →

The AI Toolchain — issue -125, April 16, 2026

THE AI TOOLCHAIN NO. -125
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED APRIL 16, 2026 · EVERY WEEKDAY
EDITIONS tail grep head diff uniq

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.

VIEW
ISSUE VIEW full issue
Do you prefer this view?
$ tct list   # 16 tools matched
AI & LLM Tooling
◆  AI Coding Agents

Anthropic Claude Code

Sources Release notes → v2.1.111 NOTES

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.111 adds /ultrareview for cloud-based PR analysis, xhigh effort tier, PowerShell support, and a permission-prompt reducer.

└──▷ GET THIS VERSION
$ git clone --branch v2.1.111 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:
$ git checkout v2.1.111
└──▷ TRY IT
Review a specific GitHub PR with multi-agent cloud analysis to get comprehensive feedback before merging.
$ /ultrareview 4821
Reduce permission prompts in a project by auto-generating an allowlist from your session history.
$ /less-permission-prompts
Emit full API request and response bodies as OpenTelemetry log events to trace model calls during debugging.
$ OTEL_LOG_RAW_API_BODIES=1 claude --output-format stream-json '<prompt>'
  • Adds xhigh effort level for Opus 4.7, sitting between high and max; selectable via /effort, --effort, or the model picker.
  • New /ultrareview command runs comprehensive code review in the cloud using parallel multi-agent analysis — no arguments reviews the current branch; /ultrareview <PR#> fetches and reviews a specific GitHub PR.
  • New /less-permission-prompts skill scans transcripts for common read-only Bash and MCP tool calls and proposes a prioritized allowlist for .claude/settings.json.
  • Auto mode is now available for Max subscribers using Opus 4.7, and no longer requires the --enable-auto-mode flag.
  • Adds PowerShell tool support on Windows (progressive rollout); opt in/out with CLAUDE_CODE_USE_POWERSHELL_TOOL; enable on Linux/macOS with CLAUDE_CODE_USE_POWERSHELL_TOOL=1 (requires pwsh on PATH).
+9 moreshow less
  • Adds OTEL_LOG_RAW_API_BODIES environment variable to emit full API request and response bodies as OpenTelemetry log events for debugging.
  • New 'Auto (match terminal)' theme option automatically matches the terminal's dark/light mode; selectable via /theme.
  • /effort now opens an interactive slider with arrow-key navigation and Enter to confirm when called without arguments.
  • Read-only bash commands with glob patterns (e.g. ls *.ts) and commands beginning with cd <project-dir> && no longer trigger a permission prompt.
  • /skills menu now supports sorting by estimated token count — press t to toggle.
  • Ctrl+L now forces a full screen redraw in addition to clearing the prompt input.
  • Transcript view footer now shows [ (dump to scrollback) and v (open in editor) shortcuts.
  • Headless --output-format stream-json now includes plugin_errors on the init event when plugins are demoted for unsatisfied dependencies.
  • Improved /setup-vertex and /setup-bedrock to show the actual settings.json path when CLAUDE_CONFIG_DIR is set, seed model candidates from existing pins on re-run, and offer a '1M context' option for supported models.
└──▷ BREAKING ON UPGRADE
  • !Ctrl+U behavior changed: it now clears the entire input buffer instead of deleting only to the start of the line (press Ctrl+Y to restore).
Was this useful?

Cline

Sources Release notes → v3.79.0 NOTES

Autonomous coding agent as an SDK, IDE extension, or CLI assistant.

Cline v3.79.0 adds Claude Opus 4.7, Azure Blob Storage, and globalSkills remote config support.

└──▷ GET THIS VERSION
$ git clone --branch v3.79.0 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.79.0
  • Adds Claude Opus 4.7 model support.
  • Adds Azure Blob Storage as a storage provider.
  • Adds inline value reuse in user-level remote-config discovery.
Was this useful?

Charm Crush

Sources Release notes → v0.59.0 NOTES

Glamourous agentic coding for all

Crush v0.59.0 adds built-in jq support with a dedicated skill, skills discovery in the sidebar, and Rio Terminal progress bar feedback.

└──▷ GET THIS VERSION
$ git clone --branch v0.59.0 https://github.com/charmbracelet/crush.git
# already have the repo? check out this version:
$ git checkout v0.59.0
  • Adds built-in jq as a bash builtin so agents can query JSON files without requiring jq installed on the host machine.
  • Includes a built-in jq skill to instruct the model on how to invoke jq during agentic tasks.
  • Shows available skills in the sidebar and landing page for improved discoverability.
  • Enables progress bar feedback when running inside Rio Terminal.
Was this useful?

GitHub Copilot CLI

Sources Release notes → v1.0.30 3 RELEASES · 2026-04-16 NOTES STABLE

GitHub Copilot CLI v1.0.30 adds /statusline command to customize the status bar and expands image paste to Ctrl+V and Meta+V.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.30 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:
$ git checkout v1.0.30
└──▷ TRY IT
Trim the status bar to only the current branch and quota to reduce visual noise during long sessions.
$ /statusline branch quota
  • Adds /statusline command (with /footer alias) to customize which items appear in the status bar, supporting: directory, branch, effort, context window, and quota.
  • Extends image paste from clipboard to both Ctrl+V and Meta+V across all platforms.
└──▷ BREAKING ON UPGRADE
  • !The --list-env flag (which logged loaded plugins, agents, skills, and MCP servers in prompt mode) has been removed.
2 more releases in this issue · 2026-04-16
v1.0.29 NOTES STABLE

GitHub Copilot CLI v1.0.29 adds --list-env flag, COPILOT_AGENT_SESSION_ID, Claude Opus 4.7 support, and HTTP-default MCP config.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.29 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:
$ git checkout v1.0.29
└──▷ USE IT
Define a remote MCP server without specifying a type, relying on the new http default.
yaml
servers:
  - name: my-mcp-server
    url: https://mcp.example.com/v1
  • Adds --list-env flag to prompt mode, logging all loaded plugins, agents, skills, and MCP servers — useful for verifying environment configuration in CI pipelines.
  • Injects COPILOT_AGENT_SESSION_ID as an environment variable into shell commands and MCP servers, enabling session-scoped tracking across tool calls.
  • Remote MCP server config now allows omitting the type field, defaulting to http when unspecified.
  • Adds support for Claude Opus 4.7 as a model option.
v1.0.28 NOTES STABLE

GitHub Copilot CLI v1.0.28 adds remote session resumption, terminal title opt-out, and live custom instruction reloading.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.28 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:
$ git checkout v1.0.28
  • Adds COPILOT_DISABLE_TERMINAL_TITLE environment variable to opt out of terminal title updates.
  • Enables connecting to CLI remote control sessions directly from the --resume picker.
  • Custom instructions and skills now refresh from disk automatically after /clear or /new, removing the need to restart.
Was this useful?

SST OpenCode

Sources Release notes → v1.4.7 NOTES

The open source coding agent.

OpenCode v1.4.7 adds xhigh adaptive reasoning for Claude Opus 4.7 and cross-workspace auth context propagation.

└──▷ GET THIS VERSION
$ git clone --branch v1.4.7 https://github.com/sst/opencode.git
# already have the repo? check out this version:
$ git checkout v1.4.7
└──▷ TRY IT
Lock in a specific agent from the command line when you don't want a restored session to override it with its saved agent.
$ opencode --agent <your-agent>
  • Supports xhigh adaptive reasoning effort for Claude Opus 4.7, enabling deeper multi-step reasoning.
  • Claude Opus 4.7 now surfaces summarized thinking output by default.
  • Auth context is now shared across workspace sessions, so provider sign-in persists when switching workspaces.
  • Sessions now automatically retry provider 5xx errors even when the provider SDK does not flag them as retryable.
  • Desktop builds display a Beta or Dev badge in the title bar when running pre-release builds.
+1 moreshow less
  • The --agent flag on the command line is no longer overwritten by a session's saved agent.
Was this useful?

Earendil Works Pi

Sources Release notes → v0.67.6 2 RELEASES · 2026-04-16 NOTES STABLE

AI agent toolkit: unified LLM API, agent loop, TUI, coding agent CLI

Pi v0.67.6 adds prompt template argument hints, a new extension hook for HTTP response inspection, and OSC 8 hyperlink rendering.

└──▷ GET THIS VERSION
$ git clone --branch v0.67.6 https://github.com/earendil-works/pi.git
# already have the repo? check out this version:
$ git checkout v0.67.6
└──▷ USE IT
Document required and optional arguments on a prompt template so users see hints in the / autocomplete dropdown.
yaml
---
name: summarize
argument-hint: <file> [max-words]
description: Summarize a file
---
Summarize the contents of {{file}} in at most {{max-words}} words.
  • Adds argument-hint frontmatter field for prompt templates, displayed before the description in the / autocomplete dropdown using <angle> for required and [square] for optional arguments.
  • New after_provider_response extension hook lets extensions inspect provider HTTP status codes and headers after each response is received and before stream consumption begins.
  • Compact interactive startup header now shows loaded AGENTS.md files, prompt templates, skills, and extensions as a comma-separated list; press Ctrl+O to toggle the expanded view.
  • Markdown links in assistant output render as OSC 8 hyperlinks on supporting terminals, with safe fallback to plain text on unknown terminals and tmux/screen.
1 more release in this issue · 2026-04-16
v0.67.4 NOTES STABLE

Pi v0.67.4 adds --no-context-files flag, exportable context-file utility, new extension hook, and claude-opus-4-7 model support.

└──▷ GET THIS VERSION
$ git clone --branch v0.67.4 https://github.com/earendil-works/pi.git
# already have the repo? check out this version:
$ git checkout v0.67.4
└──▷ TRY IT
Run Pi without injecting any AGENTS.md or CLAUDE.md context files — useful in CI or when testing a prompt in isolation.
$ pi --no-context-files "Explain what this repo does"
Use the exported utility inside an extension to discover project context files using the same resolution order as the CLI.
javascript
import { loadProjectContextFiles } from 'pi';

const files = await loadProjectContextFiles(process.cwd());
console.log('Context files found:', files);
  • New --no-context-files (-nc) flag disables automatic AGENTS.md / CLAUDE.md discovery for clean runs without project context injection.
  • Exports loadProjectContextFiles() as a standalone utility for extensions and SDK-style integrations to inspect context-file resolution order.
  • New after_provider_response extension hook enables extensions to inspect provider HTTP status codes and headers after each response and before stream consumption.
  • Adds claude-opus-4-7 model for Anthropic provider.
  • Anthropic prompt caching now adds a cache_control breakpoint on the last tool definition, enabling tool schemas to be cached independently from transcript updates.
Was this useful?
◆  AI Agent Frameworks

Nous Research Hermes

Sources Release notes → v2026.4.16 NOTES

The agent that grows with you

Hermes v2026.4.16 adds Nous Tool Gateway: web search, image gen, TTS, and browser automation for Portal subscribers.

└──▷ GET THIS VERSION
$ git clone --branch v2026.4.16 https://github.com/NousResearch/hermes-agent.git
# already have the repo? check out this version:
$ git checkout v2026.4.16
└──▷ TRY IT
Enable gateway-backed tools for a Portal subscriber without configuring any separate API keys.
$ hermes model
Verify which gateway tools are active after opt-in via use_gateway config.
$ hermes tools && hermes status
  • New Nous Tool Gateway gives paid Nous Portal subscribers automatic access to web search (Firecrawl), image generation (FAL / FLUX 2 Pro), text-to-speech (OpenAI TTS), and browser automation (Browser Use) — no extra API keys required.
  • Per-tool opt-in via use_gateway config key, with full visibility through hermes tools and hermes status.
  • Runtime now prefers the gateway over direct API keys when both are present.
└──▷ BREAKING ON UPGRADE
  • !The HERMES_ENABLE_NOUS_MANAGED_TOOLS environment variable is replaced by subscription-based detection via the Nous Tool Gateway; setups relying on that env var will no longer activate managed tools.
Was this useful?

LangChain

Sources Release notes → langchain-core==1.3.0a3 NOTES

LangChain Core 1.3.0a3 adds invocation-param tracing, ContextOverflowError, multimodal token counting, XML buffer formatting, and more.

└──▷ GET THIS VERSION
$ git clone --branch langchain-core==1.3.0a3 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-core==1.3.0a3
└──▷ USE IT
Catch context-window overflow explicitly instead of handling a generic exception when a prompt is too long.
python
from langchain_core.exceptions import ContextOverflowError

try:
    response = llm.invoke(very_long_messages)
except ContextOverflowError as e:
    print(f'Context limit exceeded: {e}')
    # truncate or summarize messages and retry
Estimate token usage for a multimodal conversation that includes images before sending to the model.
python
from langchain_core.messages import HumanMessage
from langchain_core.utils.token_counter import count_tokens_approximately

messages = [
    HumanMessage(content=[
        {"type": "text", "text": "What is in this image?"},
        {"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}}
    ])
]

print(count_tokens_approximately(messages))
  • Adds ContextOverflowError exception class, raised automatically by Anthropic and OpenAI integrations when context window is exceeded.
  • Adds multimodal support to count_tokens_approximately, enabling approximate token counting for messages containing images and other non-text content.
  • Adds tool schema token counting to count_tokens_approximately, so tool definitions are included in context estimates.
  • Adds scaling by reported usage in count_tokens_approximately to calibrate approximate counts against actual model-reported token usage.
  • Adds xml format option to get_buffer_string() for serializing conversation history as XML.
+9 moreshow less
  • Adds custom message separator support to get_buffer_string() via a new separator argument.
  • Adds chat model and LLM invocation params (e.g. temperature, model name) to LangSmith traceable metadata.
  • Adds text_inputs and text_outputs fields to model-profiles model profile definitions.
  • Adds LangSmith integration metadata to create_agent and init_chat_model.
  • Adds __deprecated__ attribute (PEP 702) support to the @deprecated decorator, enabling IDE and type-checker deprecation warnings.
  • Adds ChatBaseten to the LangChain serializable mapping, enabling serialization/deserialization of Baseten chat models.
  • Adds placeholder filename imputation for OpenAI file inputs when a filename is absent.
  • Hardens anti-SSRF protections in langchain-core with stricter private-IP and link-local range enforcement.
  • Defers specific langsmith imports at startup to reduce overall import time.
Was this useful?

OpenClaw

Sources Release notes → v2026.4.15 NOTES

Your own personal AI assistant. Any OS.

OpenClaw v2026.4.15 adds Gemini TTS, GitHub Copilot embeddings, LanceDB cloud storage, and a Model Auth status card.

└──▷ GET THIS VERSION
$ git clone --branch v2026.4.15 https://github.com/openclaw/openclaw.git
# already have the repo? check out this version:
$ git checkout v2026.4.15
└──▷ USE IT
Opt back in to legacy inline dreaming storage if your workflow depends on phase blocks appearing inside daily memory files.
yaml
plugins:
  entries:
    memory-core:
      config:
        dreaming:
          storage:
            mode: "inline"
  • Adds Gemini text-to-speech support to the bundled google plugin, with voice selection, WAV reply output, and PCM telephony output.
  • Adds a Model Auth status card in Control UI/Overview showing OAuth token health and provider rate-limit pressure, with expiry callouts, backed by a new models.authStatus gateway method.
  • Adds GitHub Copilot as an embedding provider for memory search, with a dedicated Copilot embedding host helper for plugin reuse.
  • Adds cloud storage support to memory-lancedb so durable memory indexes can run on remote object storage instead of local disk only.
  • Adds experimental agents.defaults.experimental.localModelLean: true to drop heavyweight default tools (browser, cron, message) and reduce prompt size for weaker local-model setups.
+1 moreshow less
  • Bundles Claude Opus 4.7 as the new default Anthropic model selection, including opus aliases and image understanding.
└──▷ BREAKING ON UPGRADE
  • !The default dreaming.storage.mode changes from inline to separate, so Dreaming phase blocks (## Light Sleep, ## REM Sleep) now land in memory/dreaming/{phase}/YYYY-MM-DD.md instead of memory/YYYY-MM-DD.md. Operators who want the previous behavior must explicitly set plugins.entries.memory-core.config.dreaming.storage.mode: "inline".
Was this useful?

PydanticAI

Sources Release notes → v1.83.0 NOTES

PydanticAI v1.83.0 adds xAI tool support, FastMCP metadata injection, Bedrock/Anthropic prompt caching, and a graceful parallel-tool end strategy.

└──▷ GET THIS VERSION
$ git clone --branch v1.83.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v1.83.0
└──▷ USE IT
Use the graceful end strategy so a parallel tool run completes in-flight calls before stopping, rather than cancelling abruptly.
python
agent = Agent(model=model, end_strategy='graceful')
Declare an agent whose output may be a plain string or absent, avoiding a required structured-output wrapper.
python
agent = Agent(model=model, output_type=str | None)
  • Adds XSearchTool and FileSearch support for the xAI provider.
  • Adds metadata injection per tool call via FastMCPToolset.
  • Adds prompt cache TTL support for the Bedrock provider.
  • Adds automatic prompt caching support for Anthropic.
  • Adds a 'graceful' end strategy for parallel tool calls.
+1 moreshow less
  • Supports Agent(output_type=str | None) for optional agent output.
Was this useful?
◆  AI Model & Data Infrastructure

Ollama

Sources Release notes → v0.21.0 NOTES

Get up and running with Kimi-K2.6, GLM-5.2, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models.

Ollama v0.21.0 adds Hermes Agent, GitHub Copilot CLI integration, and Gemma 4 on Apple Silicon MLX.

└──▷ GET THIS VERSION
$ git clone --branch v0.21.0 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.21.0
└──▷ TRY IT
Launch the Hermes Agent to get an AI assistant that learns your workflows and builds skills over time.
$ ollama launch hermes
  • Adds ollama launch hermes to run the Hermes Agent, which automatically creates skills to better serve research and engineering workflows.
  • Adds GitHub Copilot CLI as a supported integration in ollama launch, configurable alongside other coding agents in a single command.
  • Supports running Gemma 4 via the MLX backend on Apple Silicon, including a text-only MLX runtime.
  • Adds mixed-precision quantization to the MLX backend.
  • Expands MLX backend with new op wrappers: Conv2d, Pad, activations, trig, masked SDPA, and RoPE-with-freqs.
+1 moreshow less
  • ollama launch opencode now writes config inline instead of to a separate file, consistent with other integrations.
Was this useful?
◆  Local LLM Runtimes

llama.cpp

Sources Release notes → b8815 3 RELEASES · 2026-04-16 NOTES STABLE

llama.cpp b8815 adds Metal ROLL op implementation for Apple Silicon GPU acceleration.

└──▷ GET THIS VERSION
$ git clone --branch b8815 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b8815
  • Implements the ROLL operation for the Metal backend, enabling GPU-accelerated tensor rolling on Apple Silicon and iOS devices.
2 more releases in this issue · 2026-04-16
b8814 NOTES STABLE

Adds 128-bit RISC-V Vector (RVV) implementations for i-quants, ternary quants, iq2_xs, iq3_s, iq3_xxs, and tq2_0 quantization dot products.

└──▷ GET THIS VERSION
$ git clone --branch b8814 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b8814
  • Adds 128-bit RVV (RISC-V Vector) kernel implementations for quantization vector dot products, covering iq2_xs, iq3_s, iq3_xxs, tq2_0, i-quants, and ternary quants — enabling hardware-accelerated inference on 128-bit RVV-capable RISC-V CPUs.
b8813 NOTES STABLE

llama.cpp b8813 adds a SIMD GEMM kernel for the RISC-V Vector extension, accelerating inference on RVV hardware.

└──▷ GET THIS VERSION
$ git clone --branch b8813 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b8813
  • Adds a simd_gemm kernel for the RISC-V Vector (RVV) extension in ggml, enabling hardware-accelerated matrix multiplication on RVV-capable CPUs.
Was this useful?
Other / Uncategorized
◆  AI OBSERVABILITY

Arize Phoenix

Sources Release notes → arize-phoenix-v14.8.0 2 RELEASES · 2026-04-16 NOTES STABLE

Arize Phoenix v14.8.0 adds Azure managed identity authentication for PostgreSQL connections.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v14.8.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v14.8.0
  • Adds Azure managed identity authentication support for PostgreSQL database connections.
1 more release in this issue · 2026-04-16
arize-phoenix-v14.7.0 NOTES STABLE

Phoenix 14.7.0 adds session pagination, a trace annotation dataloader, and auto-refreshing projects page.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v14.7.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v14.7.0
  • Adds a trace annotation dataloader for more efficient bulk loading of trace annotations.
  • Adds session pagination support for navigating large sets of sessions.
  • The projects page now auto-refreshes on mount and every 60 seconds, keeping project status current without manual reloads.
Was this useful?
◆  VECTOR DB RAG

Chroma

Sources Release notes → 1.5.8 NOTES

Chroma 1.5.8 adds sharding-aware compaction, configurable RPC timeouts, pod anti-affinity in Helm, and new WAL read levels.

└──▷ GET THIS VERSION
$ git clone --branch 1.5.8 https://github.com/chroma-core/chroma.git
# already have the repo? check out this version:
$ git checkout 1.5.8
  • Adds IndexAndBoundedWal and IndexAndAdaptiveWal read levels to clients for finer-grained WAL read control.
  • Makes admin RPC timeout configurable via the config system.
  • Makes compaction client gRPC timeout configurable.
  • Adds pod anti-affinity support to StatefulSet Helm templates for improved workload distribution.
  • Adds a fault injection control plane for testing resilience scenarios.
+6 moreshow less
  • Adds an optional upload fault injector for WAL3.
  • Supports partial manifest scans in WAL3.
  • Adds composite rules for tiering decisions in the compaction layer.
  • Adds per-tenant config in the compactor for controlling shard sizes.
  • Integrates the Superlinked embedding function as a new integration.
  • Adds a CLI I/O terminal and I/O abstraction layer, backed by the official Rust client, for interactive testing and scripting.
Was this useful?

LanceDB

Sources Release notes → python-v0.31.0-beta.6 2 RELEASES · 2026-04-16 NOTES STABLE

LanceDB python-v0.31.0-beta.6 adds nested namespace support for listing databases.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.31.0-beta.6 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.31.0-beta.6
  • Supports nested namespace operations when listing databases.
1 more release in this issue · 2026-04-16
v0.28.0-beta.6 NOTES STABLE

LanceDB v0.28.0-beta.6 adds nested namespace support for listing databases in Rust.

└──▷ GET THIS VERSION
$ git clone --branch v0.28.0-beta.6 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.28.0-beta.6
  • Supports nested namespace operations when listing databases via the Rust client.
Was this useful?

Weaviate

Sources Release notes → v1.37.0 NOTES

Weaviate v1.37.0 adds a native MCP server, BlobHash property type, collection export, extensible tokenizers, and drop-vector-index support.

└──▷ GET THIS VERSION
$ git clone --branch v1.37.0 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:
$ git checkout v1.37.0
  • Adds BlobHash property type that automatically stores blob data as hashes, greatly reducing disk space required for blob workloads.
  • Introduces a native MCP (Model Context Protocol) server interface (preview), enabling AI agents such as Claude and IDEs to natively read and write to Weaviate without custom code, with hybrid search, RAG, and multi-tenancy support out of the box.
  • Adds collection export to cloud backends (AWS, GCP, Azure) and filesystem with point-in-time exports, multi-node support, concurrent exports, multi-tenancy handling, cancellation, and observability; disabled by default and configured via environment variables including a default path env var.
  • Adds a tokenizer endpoint and middleware integration for extensible tokenizers (Phase 1), bringing self-serve, multilingual tokenization with accent-insensitive processing options for text properties and custom stopword presets.
  • Adds experimental support for dropping vector indices from existing collections via an alter-schema endpoint, allowing memory reclamation; endpoint can be disabled via an environment setting.
+7 moreshow less
  • Adds file-based incremental backups, chunked backup file splits for large collections, backup/restore of INACTIVE tenants, and avoids halting compactions during backup.
  • Migrates replica internal cluster communication from REST to gRPC for improved performance and security hardening.
  • Adds Google AI Studio model support and audio support to the multi2vec-google module.
  • Introduces token source authentication for backups-gcs and usage-gcs modules.
  • Adds S3 assume-role support for S3-backed storage.
  • Adds HFresh index preview improvements including an auto category, increased max posting size floor, and continued operation during backups.
  • Adds validation that async replication is enabled before use, with async replication now production-ready.
Was this useful?
my-toolchain — 0 tools
paste an install list to detect your tools

A brew list, a Brewfile, requirements.txt, a Dockerfile — or just the product names, free-form. Nothing leaves your browser.

    browse all tools →