fix(ci): sync Cargo.lock after version bump#722
Merged
Conversation
Contributor
📊 Performance ReportCommit: 3ebd001 Cala Performance Benchmark Results (non-representative)Criterion Benchmark Results (single-threaded)
Load Testing Results (parallel-execution)
Note: Performance results may vary based on system resources and database state. Last updated by commit 3ebd001 |
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
Why
The dev-version commit updated the workspace Cargo.toml files but left Cargo.lock with the old local package versions. CI then failed when Cargo was asked to run with --locked.
Validation
Note: nix flake check was run on a Darwin host and omitted incompatible Linux systems locally; the locked metadata command exercises the specific CI failure mode.
Note
Low Risk
Low risk lockfile-only change that aligns local workspace crate versions with the recent dev version bump, primarily affecting reproducible/
--lockedbuilds in CI.Overview
Updates
Cargo.lockto reflect the workspace crate version bump from0.15.9to0.15.10-dev(e.g.,cala-ledger,cala-cel-*,cala-tracing).This brings the lockfile back in sync with the workspace manifests so
cargo --lockedoperations (and CI) no longer fail due to mismatched local package versions.Reviewed by Cursor Bugbot for commit 3ebd001. Bugbot is set up for automated code reviews on this repo. Configure here.