deps: bump roaring to 0.11.4 - #6834
Merged
Merged
Conversation
roaring 0.11.3 dropped the `Eq` impl on `RoaringBitmap` and `RoaringTreemap`; 0.11.4 restored it (RoaringBitmap/roaring-rs#341). Because the pin here is exact, that omission propagates to every crate that shares a dependency graph with dbsp. lance >= 8.0.0 requires `roaring ^0.11.4`, since it derives `Eq` on a type holding a `RoaringBitmap`, so today dbsp and lance cannot be resolved into the same build at all. The pin stays exact and the rationale in the comment above it still holds: 0.11.4 raises roaring's MSRV from 1.82.0 to 1.90.0, still below this workspace's `rust-version` of 1.93.1. Otherwise 0.11.4 is a bugfix release: an off-by-one in `IntervalStore`'s iterator `nth()` found by the croaring differential fuzzer (RoaringBitmap/roaring-rs#353), and a 32-bit `RoaringTreemap` overflow (RoaringBitmap/roaring-rs#345). Neither is reachable from dbsp today -- `TrackingRoaringBitmap` only pushes, optimizes, queries and serializes, and never iterates a bitmap -- so no behaviour change is expected here. Signed-off-by: Sacha Weatherstone <sachaw100@hotmail.com>
gz
approved these changes
Aug 10, 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.
Bumps the workspace
roaringpin from=0.11.3to=0.11.4.0.11.3 dropped the
Eqimpl onRoaringBitmap/RoaringTreemap; 0.11.4 restored it (roaring-rs#341). Because the pin is exact, that propagates: lance >= 8.0.0 requiresroaring ^0.11.4, so lance and dbsp currently cannot resolve into the same build.Keeping the pin exact — 0.11.4's MSRV is 1.90.0, below this workspace's
rust-versionof 1.93.1.Describe Manual Test Plan
cargo test -p dbsp --lib: 575/576 pass. The failure,recursive::test::issue4168, is its own 200s watchdog tripping under parallel load — alone it passes in 22.7s.Checklist
Breaking Changes?
Mark if you think the answer is yes for any of these components:
Describe Incompatible Changes
None.