chore(deps): bump opendal to 0.56, migrate to reqsign-core 3.0#2401
Open
kszucs wants to merge 2 commits intoapache:mainfrom
Open
chore(deps): bump opendal to 0.56, migrate to reqsign-core 3.0#2401kszucs wants to merge 2 commits intoapache:mainfrom
kszucs wants to merge 2 commits intoapache:mainfrom
Conversation
23f5d13 to
4659c06
Compare
kszucs
commented
May 4, 2026
| format!("{relative_path}/") | ||
| }; | ||
| Ok(op.remove_all(&path).await.map_err(from_opendal_error)?) | ||
| Ok(op |
CTTY
reviewed
May 5, 2026
Member
Author
|
@CTTY ready for another review |
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
Bumps
opendalfrom0.55to0.56, which is now published on crates.io.The 0.56 release made two breaking API changes that required code updates:
opendal::Schemewas removed.OpenDalResolvingStorageused it as the HashMap key for caching per-scheme storage instances. Replaced with&'static str(e.g."s3","gcs"), with S3-family aliases (s3a,s3n) and GCS aliases (gs) still collapsing to a single entry.reqsign was split into focused crates. The old
reqsign 0.16monolith (withAwsCredentialLoad/reqwest::Client) was replaced byreqsign-aws-v4+reqsign-core3.0.CustomAwsCredentialLoadernow wraps anyProvideCredential<Credential = AwsCredential>implementation instead ofArc<dyn AwsCredentialLoad>, which removes theArcwrapping at call sites.