Releases: paolobarbolini/rusty-s3
Releases · paolobarbolini/rusty-s3
v0.5.0
What's Changed
- Add a bunch of options on the list objects action by @irevoire in #85
- Make
CreateMultipartUploadResponse
public by @irevoire in #83 - Add wasm-bindgen feature that activates the time crate's wasm-bindgen feature by @pretentious7 in #80
- Do not unwrap when creating a bucket by @irevoire in #82
- Bump MSRV to 1.67 by @paolobarbolini in #87
- Bump quick-xml to 0.30 by @paolobarbolini in #79
New Contributors
- @pretentious7 made their first contribution in #80
- @irevoire made their first contribution in #83
Full Changelog: v0.4.1...v0.5.0
`HeadBucket` requests and `base64` 0.21
What's Changed
- feat: support
HeadBucket
request by @DDtKey in #71 - cargo: bump base64 to v0.21 by @paolobarbolini in #73
New Contributors
Full Changelog: v0.4.0...v0.4.1
Better compatibility with some s3 backends
What's Changed
- Make
MaxKeys
optional inListObjectsV2Response
by @hokwangchoi in #67
New Contributors
- @hokwangchoi made their first contribution in #67
Full Changelog: v0.3.3...v0.4.0
New round of dependencies updates
What's Changed
- cargo: bump quick-xml to 0.26 by @paolobarbolini in #64
- cargo: bump base64 to v0.20 by @paolobarbolini in #65
- cargo: bump quick-xml to 0.27.1 by @paolobarbolini in #68
Full Changelog: v0.3.2...v0.3.3
quick-xml dependency bump + 1.61 as the new MSRV
What's Changed
- rust: bump MSRV to 1.61 by @paolobarbolini in #62
- cargo: bump quick-xml to 0.24 by @paolobarbolini in #59
Full Changelog: v0.3.1...v0.3.2
Minor updates
What's Changed
- Fix error message by @hsmtkk in #55
- Make
BucketError
public. by @ryanmcgrath in #57 - Bump quick-xml to 0.23 in 606e27f
New Contributors
- @hsmtkk made their first contribution in #55
- @ryanmcgrath made their first contribution in #57
Full Changelog: v0.3.0...v0.3.1
v0.3.0
What's Changed
- Make
ListObjectsContent.storage_class
an option by @Raz-Hemo in #50 - Bump MSRV to 1.56 by @paolobarbolini in b09e722
- Bump edition to 2021 by @paolobarbolini in d3a4b85
New Contributors
Full Changelog: v0.2.1...v0.3.0
rust-crypto dependencies bump
What's Changed
- Use the md-5 crate from RustCrypto by @paolobarbolini in #43
- Upgrade hmac to 0.12, sha2 to 0.10 by @paolobarbolini in #42
Full Changelog: v0.2.0...v0.2.1
v0.2 here we are!
New supported API methods
- actions: add DeleteObjects action by @Cykooz in #24
- actions: add ListParts action by @Cykooz in #26
- actions: add HeadObject action by @paolobarbolini in #18
Breaking changes
- credentials: use impl Into by @paolobarbolini in #41
- Bucket::new() returns now a Result instead of Option by @manuelpelloni in #34
- UrlStyle by @manuelpelloni in #35
- Fix
Bucket::new
generic arguments by @malobre in #37 - Introduce the 'full' feature by @paolobarbolini in #39
- change Bucket::new() Implementation by @SKTT1Ryze in #14
- Move 'sign_with_time' method to 'S3Action' by @z4f1r0v in #28
Other changes
- Make the signing module public by @01101101 in #12
- Upgrade to time 0.3 by @paolobarbolini in #13
- Bump MSRV to 1.52 by @paolobarbolini in #25
- cargo: bump pretty-assertions by @paolobarbolini in #33
- Use dualstack endpoints in doc tests by @manuelpelloni in #36
- Setup zeroizing secrets by @paolobarbolini in #40
New Contributors
- @01101101 made their first contribution in #12
- @dependabot made their first contribution in #15
- @SKTT1Ryze made their first contribution in #14
- @Cykooz made their first contribution in #24
- @z4f1r0v made their first contribution in #28
- @manuelpelloni made their first contribution in #36
- @malobre made their first contribution in #37
Full Changelog: v0.1.2...v0.2.0
v0.1.2: DeleteBucket support and ListObjectsV2 bug fix
New:
DeleteBucket
action
Fixes:
- Parsing responses to
ListObjectsV2
requests to empty buckets