From b5a3e1e764d1013591ab32c43f61d1951293193d Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 28 May 2026 11:08:54 +0000 Subject: [PATCH] =?UTF-8?q?deps(core):=20align=20kv-lance=20pins=20with=20?= =?UTF-8?q?lance-graph=20#423=20(lance=204=E2=86=926,=20lancedb=200.27?= =?UTF-8?q?=E2=86=920.29,=20arrow=2057=E2=86=9258)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Catches the AdaWorldAPI/surrealdb fork up to lance-graph main (post #423): - lance 4.0.0 → 6.0.0 (exact-equals) - lance-index 4.0.0 → 6.0.0 (lock-step) - lancedb 0.27.2 → 0.29.0 (exact-equals; transitively pins lance =6.0.0) - arrow-array 57 → 58 (lock-step with datafusion 53 in lance-graph) - arrow-schema 57 → 58 All bumps under the optional `kv-lance` feature (no change to default build). Cargo.toml-only; no .rs touched. Note: the user-authorised follow-on patch to lance =6.0.1 is currently BLOCKED by lancedb 0.29.0's transitive `lance = "=6.0.0"` requirement (lancedb 0.29.0 is the latest 0.29.x on crates.io). See lance-graph root Cargo.toml RESOLVED(A) for the full reasoning. Re-bump when lancedb 0.29.1+ ships. https://claude.ai/code/session_01FMooFcE7hgRWWvknNr2N4i --- surrealdb/core/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/surrealdb/core/Cargo.toml b/surrealdb/core/Cargo.toml index 26b2ba7f377c..7cdb25d539bc 100644 --- a/surrealdb/core/Cargo.toml +++ b/surrealdb/core/Cargo.toml @@ -107,11 +107,11 @@ surrealdb-types = { workspace = true } vart.workspace = true # External KV stores -lance = { version = "=4.0.0", optional = true } -lance-index = { version = "=4.0.0", optional = true } -lancedb = { version = "=0.27.2", optional = true } -arrow-array = { version = "57", optional = true } -arrow-schema = { version = "57", optional = true } +lance = { version = "=6.0.0", optional = true } +lance-index = { version = "=6.0.0", optional = true } +lancedb = { version = "=0.29.0", optional = true } +arrow-array = { version = "58", optional = true } +arrow-schema = { version = "58", optional = true } rocksdb = { workspace = true, optional = true } tikv = { workspace = true, optional = true }