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 -077, June 3, 2026

THE AI TOOLCHAIN NO. -077
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED JUNE 3, 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   # 12 tools matched
AI & LLM Tooling
◆  AI Coding Agents

Anthropic Claude Code

Sources Release notes → v2.1.162 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 agents gets richer status info, --tools Grep/Glob now works on native builds, and /effort persists as default.

└──▷ GET THIS VERSION
$ git clone --branch v2.1.162 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:
$ git checkout v2.1.162
└──▷ TRY IT
Poll agent session status in CI/automation to detect which sessions are blocked waiting for a permission prompt.
$ claude agents --json | jq '.[] | select(.waitingFor != null) | {id, waitingFor}'
Restrict Claude Code to only built-in Grep and Glob search tools on a native build — previously listing these names was silently ignored.
$ claude --tools Grep,Glob
  • Adds waitingFor field to claude agents --json output, showing what a waiting session is blocked on (e.g. a permission prompt).
  • Explicitly listing Grep or Glob in --tools now activates the dedicated embedded search tools on native builds (previously silently ignored).
  • The /effort command now confirms when the chosen level will persist as the default for new sessions.
  • Clicking a slash command in the autocomplete menu fills it into the prompt instead of running it immediately — press Enter to run.
  • Remote Control status is now shown as a persistent footer pill with a session link instead of a one-time startup message.
+2 moreshow less
  • Launch-prompt warnings (deep link/pre-filled prompt) now stay pinned below the input until acted upon instead of scrolling away.
  • Background service startup and claude update now wait for endpoint-security scanning of new binaries instead of timing out after 5 seconds.
Was this useful?

Cline

Sources Release notes → v3.87.0 2 RELEASES · 2026-06-03 NOTES STABLE

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

Cline v3.87.0 adds MiniMax M3 model support.

└──▷ GET THIS VERSION
$ git clone --branch v3.87.0 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.87.0
  • Adds MiniMax M3 as a supported model.
1 more release in this issue · 2026-06-03
cli-v3.0.16 NOTES STABLE

Cline v3.0.16 adds plugin uninstall, Slack socket mode, custom Anthropic base URLs, and a plugin import timeout override.

└──▷ GET THIS VERSION
$ git clone --branch cli-v3.0.16 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout cli-v3.0.16
└──▷ TRY IT
Remove a plugin you no longer need without touching the TUI.
$ cline plugin uninstall <plugin-slug>
Extend the plugin import timeout in slow environments to prevent premature failures.
$ CLINE_PLUGIN_IMPORT_TIMEOUT_MS=10000 cline <command>
  • Installs official Cline plugins by slug from the new github.com/cline/plugins collection.
  • New cline plugin uninstall <plugin> command (and TUI option) to remove installed plugins.
  • Plugins can now bundle skills, with plugin skills grouped together in settings.
  • Adds Slack socket mode support.
  • Supports a custom base URL for Anthropic vendor-type providers.
+1 moreshow less
  • New CLINE_PLUGIN_IMPORT_TIMEOUT_MS environment variable to control the plugin import timeout.
Was this useful?

Block Goose

Sources Release notes → v1.37.0 NOTES

an open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM

Goose v1.37.0 adds 20+ new providers, goose review, PreToolUse hooks, a TUI diff viewer, and encrypted Nostr session sharing.

└──▷ GET THIS VERSION
$ git clone --branch v1.37.0 https://github.com/block/goose.git
# already have the repo? check out this version:
$ git checkout v1.37.0
└──▷ TRY IT
Run an AI-powered code review on your local repository without opening a chat session.
$ goose review
Switch the model mid-session — useful when a complex subtask needs a more powerful model and you want to switch back without restarting.
$ /model
Cap tool response payloads to avoid context bloat when tools return large outputs (e.g., grepping a large codebase).
$ GOOSE_MAX_TOOL_RESPONSE_SIZE=65536 goose run --recipe my-recipe.yaml
  • Adds goose review command for local code review without leaving the CLI.
  • Adds /model slash command to switch models mid-session without restarting.
  • Adds /goal slash command for agent self-evaluation before finishing a task.
  • Adds PreToolUse denial hooks so practitioners can intercept and block tool calls before execution.
  • Adds a hooks system for automating actions around agent events.
+38 moreshow less
  • Adds xAI SuperGrok OAuth subscription provider.
  • Adds Perplexity as a declarative OpenAI-compatible provider.
  • Adds Alibaba (Qwen via DashScope) as a declarative provider.
  • Adds Databricks AI Gateway provider.
  • Adds NEAR AI Cloud provider.
  • Adds Scaleway provider.
  • Adds Routstr as a declarative provider.
  • Adds FuturMix provider.
  • Adds oMLX declarative provider.
  • Adds Atomic Chat as a declarative OpenAI-compatible provider.
  • Adds Vercel AI Gateway provider with opt-in leaderboard.
  • Adds GitHub Copilot /responses API support.
  • Adds Scholar Sidekick MCP extension.
  • Adds Linux Vulkan support for local inference.
  • Adds Nushell terminal and shell completion support.
  • Adds TUI command (goose tui) to goose-cli.
  • Adds TUI diff viewer for reviewing file changes in-terminal.
  • Adds encrypted Nostr session sharing.
  • Adds goose://resume and goose://new-session deep links for desktop integration.
  • Adds configurable tool output size limit via GOOSE_MAX_TOOL_RESPONSE_SIZE environment variable.
  • Adds configurable MAX_CODE_BLOCK_LINES via environment variable.
  • Adds GOOSE_FAST_MODEL env var support in ModelConfig::with_fast.
  • Adds GOOSE_OAUTH_CALLBACK_PORT env var for a stable OAuth redirect URI.
  • Adds proactive OAuth token refresh to avoid re-authentication on every session.
  • Adds ACP session system prompt setter.
  • Adds slash commands (built-in, skill, recipe) in ACP server.
  • Exposes raw provider supported models over ACP.
  • Adds ACP session list pagination.
  • Adds Harbor eval runner for automated evaluation workflows.
  • Adds quarterly scheduling option for the recipe scheduler.
  • Adds optional --parameters flag to scheduled recipes.
  • Adds projects as backend sources with system prompt injection.
  • Groups consecutive tool calls into one summarized chain card in the UI.
  • Strips chain-of-thought markers from custom provider output.
  • Adds CLI command to list skills with token counts.
  • Adds Simplified Chinese (zh-CN), Russian, and Turkish locale support.
  • Adds summon subagent instructions for multi-agent workflows.
  • Adds GPT-5.5 to ChatGPT Codex known models.
Was this useful?

Alibaba Qwen Code

Sources Release notes → v0.17.1 NOTES

Qwen Code v0.17.1 adds post-tool-batch hooks, context env vars in shells, CPU profiling, MiniMax-M3 support, and auto-compact /compress plumbing.

└──▷ GET THIS VERSION
$ git clone --branch v0.17.1 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:
$ git checkout v0.17.1
└──▷ TRY IT
Capture a CPU profile during a heavy session for analysis in Chrome DevTools to identify performance bottlenecks.
$ qwen --cpu-profile
  • Adds respectUserColors and hideContextIndicator options for the statusline, letting users control terminal color and context indicator display.
  • Adds post tool batch hooks so hook scripts can now fire after each complete batch of tool calls, not just individual tool calls.
  • Injects context environment variables (session, agent, and prompt IDs) into shell subprocesses spawned during a session.
  • Adds CPU profiling support for Chrome DevTools analysis, enabling performance tracing of the CLI.
  • Adds a warning dialog when settings.json is detected as corrupted on startup.
+17 moreshow less
  • Adds /compress instructions, PreCompact hook plumbing, and plan/subagent attachments as part of auto-compact follow-up.
  • Adds a memory pressure monitor and auto-dumps memory diagnostics to disk on pressure detection.
  • Adds MiniMax-M3 model to the searchable model setup flow.
  • Adds a triage skill for issue/PR gatekeeping workflows.
  • Adds agent reproduction workflows to the skills library.
  • Adds a simplify bundled skill to core.
  • Adds a fork subagent feature gate with 'Don't peek / Don't race' prompt discipline.
  • Adds notifications when background shell commands finish.
  • Adds background housekeeping for stale file-history directories.
  • Adds virtual viewport rendering for long conversations (ink 7), reducing UI overhead on extended sessions.
  • Adds atomic write rollout for credentials, memory, config, and JSONL files to prevent data corruption.
  • Adds AUTO mode denial observability and caps.
  • Switches the computer-use integration to use the @qwen-code/open-computer-use fork (signed and notarized).
  • Improves hooks matcher display in the UI.
  • Deduplicates tool guidance between system prompt and tool descriptions to reduce prompt bloat.
  • Enhances system prompts with global reasoning discipline and iterative planning.
  • Improves IME input handling by moving the physical cursor to the visual cursor position.
└──▷ BREAKING ON UPGRADE
  • !The 'Default' approval mode is renamed to 'Ask permissions' in the CLI UI.
Was this useful?

Zed

Sources Release notes → v1.5.3 NOTES

Zed v1.5.3 adds clickable LSP document links, Fast Mode for OpenAI, a new git_commit_buffer_font_size setting, and improved Mermaid rendering.

└──▷ GET THIS VERSION
$ git clone --branch v1.5.3 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v1.5.3
└──▷ USE IT
Disable LSP-provided clickable document links if they interfere with your workflow.
json
{
  "lsp_document_links": false
}
Set a larger font size for the Git commit message editor without affecting the rest of the UI.
json
{
  "git_commit_buffer_font_size": 16
}
  • Adds "lsp_document_links": false setting to control clickable document links provided by language servers (enabled by default).
  • Adds git_commit_buffer_font_size setting and makes the in-panel and modal commit message editors zoomable.
  • Adds the zed: open status page action for opening the Zed status page from the command palette.
  • Adds Fast Mode (priority service tier) support to OpenAI models used through the ChatGPT subscription provider.
  • Adds Fast Mode (priority service tier) support to the OpenAI API provider.
+20 moreshow less
  • Adds support for renaming agent threads directly from the sidebar.
  • Adds the ability to reorder projects in the sidebar via the ellipsis menu.
  • Makes file paths in backticks clickable in the Agent Panel, opening the referenced file at the given line when present.
  • Adds a logout flow for ACP agents that support it.
  • Allows external ACP agents that support it to access all working directories in a project.
  • Adds automatic refreshes for the list of Zed-hosted models without requiring a restart.
  • Adds notification indicators to collapsed project headers in the sidebar when a thread completes.
  • Adds a UI control for wrapping and unwrapping Markdown code block contents.
  • Adds shift+click support in Markdown preview to extend text selection.
  • Adds icons for Bitbucket, Codeberg, Forgejo, Gitea, and GitLab remote providers.
  • Adds recognition for HIP files in C++ language support.
  • Adds support for local features in dev containers.
  • OpenCode: Adds Gemini 3.5 Flash and Grok Build 0.1 models; removes MiniMax M2.5 Free.
  • Improves Mermaid diagram rendering speed and accuracy.
  • Swaps q and Q in Helix mode so they record and replay macros per Helix defaults.
  • Makes the Project Panel auto-reveal multi-buffer excerpts for the latest selection.
  • Adds the setting scope (user or project) to Settings Editor breadcrumbs.
  • Improves read_file tool output rendering with a line-number gutter in the Agent Panel.
  • Improves Git worktree creation by fetching the latest origin/main before creating a worktree.
  • Rust: Uses the rust-analyzer from a worktree's Rust toolchain when specified, improving toolchain compatibility.
Was this useful?

Google gemini-cli

Sources Release notes → v0.45.0 NOTES

An open-source AI agent that brings the power of Gemini directly into your terminal.

gemini-cli v0.45.0 exposes A2A usage metadata and updates default auto routing.

└──▷ GET THIS VERSION
$ git clone --branch v0.45.0 https://github.com/google-gemini/gemini-cli.git
# already have the repo? check out this version:
$ git checkout v0.45.0
  • Exposes usage metadata for A2A (agent-to-agent) interactions, giving practitioners visibility into token and resource consumption across agent calls.
  • Updates default auto routing behavior for model selection.
Was this useful?
◆  AI Agent Frameworks

deepset Haystack

Sources Release notes → v2.30.0 NOTES

Haystack v2.30.0 adds syntax-aware Python code splitting and plain-string input for all ChatGenerators.

└──▷ GET THIS VERSION
$ git clone --branch v2.30.0 https://github.com/deepset-ai/haystack.git
# already have the repo? check out this version:
$ git checkout v2.30.0
└──▷ USE IT
Split a Python source file for a code-RAG pipeline while keeping class definitions attached to their method chunks and docstrings in metadata.
python
from haystack.components.preprocessors import PythonCodeSplitter

splitter = PythonCodeSplitter(
    max_effective_lines=80,
    strip_docstrings=True,
    preserve_class_definition=True,
)
result = splitter.run(documents=[doc])
for chunk in result["documents"]:
    print(chunk.meta["start_line"], chunk.meta["unit_kinds"], chunk.content[:120])
Quickly probe an OpenAI chat model with a one-liner string instead of constructing a ChatMessage list.
python
from haystack.components.generators.chat import OpenAIChatGenerator

generator = OpenAIChatGenerator()
response = generator.run("Summarize the OWASP Top 10 in three sentences.")
print(response["replies"][0].text)
  • Introduces PythonCodeSplitter component (importable from haystack.components.preprocessors) that parses Python source files via the ast module and merges units — module docstrings, import blocks, top-level functions, class headers, methods, nested classes — into chunks of roughly max_effective_lines lines, keeping whole functions and methods intact.
  • Adds strip_docstrings=True parameter to PythonCodeSplitter to move docstrings into chunk metadata instead of inline content.
  • Adds preserve_class_definition=True parameter to PythonCodeSplitter to prepend the enclosing class signature to chunks whose members spill into a later chunk.
  • Adds oversized_factor parameter to PythonCodeSplitter to control the threshold at which an oversized function falls back to a line-based secondary split (delegating to DocumentSplitter) with overlap.
  • Each PythonCodeSplitter chunk carries metadata fields start_line, end_line, unit_kinds, include_classes, decorators, docstrings, source_id, and split_id for rich downstream filtering.
+4 moreshow less
  • All ChatGenerator components now accept a plain str for the messages parameter, automatically wrapping it in a ChatMessage with the user role — applies to AzureOpenAIChatGenerator, AzureOpenAIResponsesChatGenerator, FallbackChatGenerator, HuggingFaceAPIChatGenerator, HuggingFaceLocalChatGenerator, OpenAIChatGenerator, and OpenAIResponsesChatGenerator.
  • Adds run_async to TextEmbeddingRetriever, MultiQueryEmbeddingRetriever, and MultiQueryTextRetriever, enabling native coroutine execution in AsyncPipeline with fallback to a thread executor.
  • Updates ToolsType so that any class inheriting from Tool or Toolset is accepted in any sequence type (list, tuple, etc.) for the tools parameter.
  • Pipeline.draw() and Pipeline.show() now validate the Mermaid server response against expected output formats (PNG, JPEG, WebP, SVG, PDF) via magic-byte signature and Content-Type header before writing to disk, raising PipelineDrawingError on mismatch.
└──▷ BREAKING ON UPGRADE
  • !DALLEImageGenerator default model changed from dall-e-3 to gpt-image-2; accepted quality values changed from standard/hd to auto/high/medium/low; accepted size values changed to 1024x1024, 1024x1536, 1536x1024, or auto; the response_format parameter is now ignored and the component always returns base64-encoded JSON.
Was this useful?

OpenClaw

Sources Release notes → v2026.6.1 NOTES

Your own personal AI assistant. Any OS.

OpenClaw v2026.6.1 adds Skill Workshop, Workboard multi-agent coordination, MiniMax M3, Tailscale routing, and Android inspection commands.

└──▷ GET THIS VERSION
$ git clone --branch v2026.6.1 https://github.com/openclaw/openclaw.git
# already have the repo? check out this version:
$ git checkout v2026.6.1
└──▷ TRY IT
Check disk space health alongside other system probes during post-upgrade validation.
$ openclaw doctor
Access the Skill Workshop proposal dashboard in Control UI to view, revise, and approve pending skill proposals.
📍In the Control UI, navigate to the Skill Workshop tab to view the styled dashboard, switch between the board and today views, open the revision dialog for a pending proposal, and preview support files via the file preview modal.
  • Adds Skill Workshop with pending proposals, CLI/Gateway review actions, rollback metadata, and the skill_workshop agent tool for governed skill lifecycle management.
  • Adds Control UI Skill Workshop dashboard with proposal today view, revision dialog, file preview modal, searchable preview files, and localized strings.
  • Adds Workboard orchestration primitives and agent coordination tools for multi-agent planning and run tracking.
  • Adds task-backed board runs and task comment display in the Workboard edit modal.
  • Adds Android installed-app inspection commands, notification picker helpers, and updated-system-app classification.
+15 moreshow less
  • Adds MiniMax M3 model support.
  • Supports Tailscale Serve service names for local service routing in the Gateway.
  • Adds a Dreaming-tab agent selector in Control UI, propagating the selected agent through Dreaming status, diary, and diary actions.
  • Adds disk space health checks to the Doctor command.
  • Externalizes Tokenjuice as the official @openclaw/tokenjuice plugin with npm and ClawHub publish metadata.
  • Externalizes the GitHub Copilot agent runtime as the official @openclaw/copilot plugin with npm and ClawHub publish metadata.
  • Adds typed presentation command actions and the bounded resolve_exec_env hook to the Plugin SDK for plugin-provided exec environment contributions.
  • Adds a SecretRef provider integration manifest contract for plugins.
  • Persists the plugin install index in SQLite so installed package lookup survives reloads without full filesystem scanning.
  • Stores inbound channel queues in SQLite and migrates iMessage monitor state to SQLite-backed tracking.
  • Adds hosted push relay defaults, realtime Talk playback, and a guarded WebSocket ping path for more reliable iOS mobile sessions.
  • Supports native iPad display layouts.
  • Adds internal namespaces for scoped agent/global sessions and exact namespace tool dispatch in Code mode.
  • Allows validated host-local text document media sends while keeping unsafe plain-text media sends blocked.
  • Adds calmer chat composer controls, local draft typing state, and first-output latency instrumentation in Control UI.
Was this useful?
◆  AI Model & Data Infrastructure

Ollama

Sources Release notes → v0.30.4 3 RELEASES · 2026-06-03 NOTES STABLE

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

Ollama v0.30.4 adds NVIDIA Nemotron-3-Ultra and improves MLX Modelfile REQUIRES support for experimental model creation.

└──▷ GET THIS VERSION
$ git clone --branch v0.30.4 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.30.4
└──▷ TRY IT
Pull and run NVIDIA's Nemotron-3-Ultra for agent or reasoning workloads.
$ ollama run nemotron-3-ultra
Create an MLX-based model that declares dependencies via REQUIRES in its Modelfile.
$ ollama create --experimental my-mlx-model -f ./Modelfile
  • New model: Nemotron-3-Ultra, NVIDIA's model optimized for high-throughput reasoning and long-running agent workflows.
  • ollama create --experimental now respects the REQUIRES directive in Modelfiles for MLX-based models.
2 more releases in this issue · 2026-06-03
v0.30.3 NOTES STABLE

Ollama v0.30.3 adds support for running the Gemma 4 12B multimodal model locally.

└──▷ GET THIS VERSION
$ git clone --branch v0.30.3 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.30.3
└──▷ TRY IT
Pull and run the new Gemma 4 12B multimodal model locally for reasoning or image tasks.
$ ollama run gemma4:12b
  • Supports Gemma 4 12B, a multimodal model with advanced reasoning designed to run on consumer laptops.
v0.30.2 NOTES STABLE

Ollama v0.30.2 adds Qwen Code support, Laguna architecture backend, and Radeon 8060S GPU enablement.

└──▷ GET THIS VERSION
$ git clone --branch v0.30.2 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.30.2
└──▷ TRY IT
Run Codex in an isolated configuration so it doesn't interfere with your existing Codex settings.
$ ollama launch codex
  • Adds Qwen Code model support via ollama launch, including guided Cline CLI installation when missing.
  • Adds llama.cpp backend support for Poolside's Laguna model architecture.
  • Enables Radeon 8060S integrated GPUs by default.
  • Includes template details in logs to aid troubleshooting of model prompts.
  • llama.cpp backend now includes cached prompt tokens in token accounting, improving usage reporting for prompt-cache-hit requests.
Was this useful?
◆  Local LLM Runtimes

llama.cpp

Sources Release notes → b9494 3 RELEASES · 2026-06-03 NOTES STABLE

llama.cpp b9494 enables non-causal vision support for Gemma 4 unified multimodal inference.

└──▷ GET THIS VERSION
$ git clone --branch b9494 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b9494
  • Enables non-causal vision attention in the mtmd (multimodal) subsystem for Gemma 4 unified model inference.
2 more releases in this issue · 2026-06-03
b9489 NOTES STABLE

llama.cpp b9489 reserves CUDA memory for quantized KV-cache at startup to avoid runtime allocation failures.

└──▷ GET THIS VERSION
$ git clone --branch b9489 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b9489
  • CUDA backend now reserves GPU memory for quantized KV-cache at startup, preventing runtime out-of-memory errors when using KV-cache quantization.
b9488 NOTES STABLE

llama.cpp b9488 adds Qwen3 SSM architecture support and a new LLM_KV_ATTENTION_RECURRENT_LAYERS key.

└──▷ GET THIS VERSION
$ git clone --branch b9488 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b9488
  • Adds LLM_KV_ATTENTION_RECURRENT_LAYERS architecture key to support recurrent layer configuration in GGUF models.
  • Extends test coverage to include Qwen3 SSM (state-space model) architectures.
Was this useful?
Other / Uncategorized
◆  AI OBSERVABILITY

Arize Phoenix

Sources Release notes → arize-phoenix-v17.2.0 NOTES

Arize Phoenix 17.2.0 adds a PXI route info tool.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v17.2.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v17.2.0
  • Adds a PXI route info tool for surfacing routing information within the PXI interface.
Was this useful?
◆  VECTOR DB RAG

LanceDB

Sources Release notes → v0.30.1-beta.1 2 RELEASES · 2026-06-03 NOTES STABLE

LanceDB v0.30.1-beta.1 adds remote table support in PyTorch dataloaders, per-field metadata editing, and blob mode queries.

└──▷ GET THIS VERSION
$ git clone --branch v0.30.1-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.30.1-beta.1
  • Adds update_field_metadata method to edit per-field metadata on tables.
  • Supports blob modes in query to_pandas conversions.
  • Supports remote tables in PyTorch dataloaders for distributed training workflows.
1 more release in this issue · 2026-06-03
python-v0.33.1-beta.1 NOTES STABLE

LanceDB v0.33.1-beta.1 adds remote table PyTorch dataloader support, per-field metadata editing, and blob mode queries.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.33.1-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.33.1-beta.1
  • Adds update_field_metadata method to edit per-field metadata on a table.
  • Supports blob modes in query to_pandas conversions.
  • Supports remote tables in PyTorch dataloaders.
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 →