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.
What
Update dependency
bytes
from 1.6.0 to 1.6.1.Why
Installing
stellar-cli
with the--locked
option is currently displaying a warning that one of the dependencies,bytes
1.6.0, has been yanked.Usually yanks of a published version are because of something like an accidental publish so we'd want to update urgently and republish so folks can continue to use
cargo install --locked
. In this case it was just a bug fix and that crate has a different policy for yanking where bugs cause yanks too (tokio-rs/bytes#722).The bug fix isn't critical to the stellar-cli as far as I can tell, but without updating, cargo install displays warnings which can be worrying to users and result in them running cargo install without
--locked
which results in untested code from executing.