[v0.51.0] Bump version to 0.51.0#1013
Merged
arkrishn94 merged 2 commits intomainfrom May 5, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Bumps the Rust workspace/package version to 0.51.0 to propagate breaking API changes to downstream consumers.
Changes:
- Update
[workspace.package]version to0.51.0 - Update all
workspace.dependenciesinternal crate versions to0.51.0
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1013 +/- ##
==========================================
- Coverage 90.63% 89.51% -1.12%
==========================================
Files 460 460
Lines 85424 85424
==========================================
- Hits 77427 76471 -956
- Misses 7997 8953 +956
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
63d8dea to
12861d6
Compare
harsha-simhadri
approved these changes
May 5, 2026
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.
Bump version to 0.51.0 due to propagate changes to downstream consumers
Breaking API changes (AI Generated)
ObjectPoolmoved (Move ObjectPool from diskann to diskann-utils #975): now lives indiskann-utils. Update imports fromdiskann::...::ObjectPool→diskann_utils::ObjectPool.AlignedSliceremoved (remove alignedslice and replace with direct poly calls #994): theAlignedSliceabstraction indiskann-vectoris gone. Code that converted between vector representations throughAlignedSliceshould now use thePoly/CastFromSlicepolymorphic interfaces directly (seediskann-vector::conversionanddiskann-quantization::alloc::poly). Storage that previously heldAlignedSlicevalues should holdPoly<T, A>instead.AsThreadPoolgeneric removed (Remove AsThreadPool generic and take &RayonThreadPool directly #967): functions that previously tookpool: impl AsThreadPoolnow takepool: &RayonThreadPool. Pass a borrow of an existing pool; remove the generic parameter from your call sites.sgemm()returnsResult(Replace sgemm() panics with Result-based error handling #997): indiskann-linalg, the new signature is:SgemmErrorhas variantsInvalidMatrixDimensions { matrix_name, expected_rows, expected_cols, actual_len }andDimensionOverflow { matrix_name, rows, cols }. Replace previous panic-on-bad-input assumptions with explicit handling.Benchmarks are stateful ([benchmark/filtered-search prep] Make benchmarks stateful #995): the
Benchmarkimpls indiskann-benchmarkare no longer stateless unit structs. Each benchmark type now has a::new()constructor (often holdingPhantomData<T>or plugin state), and registration uses an instance:If you wrote a custom benchmark, give it a
new()and register an instance. Combined with [benchmark/filtered-search prep] Search Plugins #996, search-side benchmarks now composePlugins<Provider, Phase, Strategy>and expose builder methods like.search(plugin)to register search plugins on the instance.diskann-benchmark:async→graph-index(Rename async to graph-index in diskann-benchmark #1009): the benchmark category previously namedasyncwas renamed tograph-index. JSON configtypevalues and example file names changed accordingly:async-build→graph-index-buildasync-dynamic-run→graph-index-dynamic-run*-pq,*-sq,*-spherical-quantization, etc.Update any benchmark config files, scripts, or CI that reference the old
async-*names.diskann-diskbuffer alignment decoupled fromblock_size([diskann-disk] Decouple buffer memory alignment from disk block_size #984): code that assumed I/O buffer alignment equals the disk block size should now configure alignment explicitly.Non-breaking
compute_closest_centersallocation reduction (compute_closest_centers(): remove unnecessary allocation when pts_norms_squared is provided #980).DistanceComputer'staticbound relaxed (Relax the'staticbound onDistanceComputer. #1007) and redundantDistanceFunctionimpls removed (Remove unnecessary distance function implementations. #1008)Full Changelog: v0.50.1...v0.51.0