chore(java): bump lance-namespace client to 0.12.0 - #8979
Open
wjones127 wants to merge 1 commit into
Open
Conversation
Aligns the Java lance-namespace-core/apache-client dependencies with the Rust lance-namespace-reqwest-client pin already at 0.12.0 (lance-format#8915). The 0.12.0 release models merge_insert's on key as a repeated field instead of a single string, so this lets Java callers express composite on keys as a real List<String> rather than the legacy comma-joined form. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
wjones127
marked this pull request as ready for review
September 3, 2026 23:52
Contributor
There was a problem hiding this comment.
✅ Gate recommendation: approve.
The dependency pins now match the published namespace model and Rust implementation for composite merge keys. This is the minimal change needed to expose the generated List<String> contract while keeping the two Java artifacts aligned.
Please mark this PR with the breaking-change label.
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.
The Rust
lance-namespace-reqwest-clientdependency was already bumped to 0.12.0 in #8915, which changedMergeInsertIntoTableRequest.onfrom a single string to a repeated field somerge_insertcan express a composite key. The Javalance-namespace-core/lance-namespace-apache-clientdependencies injava/pom.xmlwere left behind at 0.11.1, where the generated model still only has a singleonstring.This PR bumps those two Java dependencies to 0.12.0 to match, so
org.lance:lance-corecan send compositeonkeys as a realList<String>instead of relying on the legacy comma-joined string encoding.Not included
Wiring an actual
mergeInsertJava client method that uses the newList<String>onfield is separate downstream work (inlancedb's Java bindings), not part of this dependency bump.