feat: add LanceDB 0.33.0 image and make it the recommended version#55
Merged
gordonmurray merged 1 commit intoJun 10, 2026
Merged
Conversation
0.33.0 is the current stable lancedb release; the newest image in the
matrix was 0.29.2 from February. Adds a constraints file pinning
lancedb==0.33.0 with pyarrow>=16,<25, a seventh entry in the build and
test matrices, and moves the canonical-version tag rules (latest,
stable, v{version}), the Dockerfile default, and the README
recommendation from 0.29.2 to 0.33.0.
Intermediate releases (0.30.x, 0.32.0) are skipped on purpose: each
matrix entry costs two CI jobs per run and their data is readable with
the 0.33.0 image.
Fixes lance-format#53
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
LanceDB 0.33.0 is the current stable release (May 28); the newest image in our matrix was 0.29.2 from February.
backend/constraints-0.33.0.txtpinninglancedb==0.33.0andpyarrow>=16,<25.latest,stable, andv{version}tags, the Dockerfile defaultLANCEDB_VERSION, and the README recommendation.Intermediate releases (0.30.x, 0.32.0) are skipped on purpose. Each matrix entry costs two CI jobs per run, and data written by those versions is readable with the 0.33.0 image.
Note:
table_names()is deprecated as of newer lancedb but still works on 0.33.0; the fallback is tracked in #54.Test plan
/healthzreports lancedb 0.33.0 with the right build tag,/datasetsworks against an empty mountFixes #53