Releases: awslabs/aws-c-s3
Releases · awslabs/aws-c-s3
Fix pause api call breaking ecs cred provider
Pause json cleanup (#197) * remove json lib init
Fix crash because of TLS setup failure
What's Changed
Full Changelog: v0.1.42...v0.1.43
Pause/Resume
Support for pause/resume for put
fix copy file url encoding
fix a bug where copy-file was decoding encoded urls
Fix user metadata headers "x-amz-meta-" in multipart upload
What's Changed
Full Changelog: v0.1.39...v0.1.40
Adapt new input stream API
What's Changed
Full Changelog: v0.1.38...v0.1.39
Don't install sample app
What's Changed
New Contributors
- @serzhick made their first contribution in #187
Full Changelog: v0.1.37...v0.1.38
Internize signed body value for streaming requests
Internally set the signed body value to the correct value for streaming requests.
Checksums
CopyObject meta request bug fixes
Invoke headers callback when CopyObject request is bypassed
Prior to this fix the headers callback was invoked only
when the Copy meta request performed a multi-part copy, but not
when the object was small and resulted in a bypassed CopyObject request.
This commit fixes the issue, invoking the headers callback
in both cases.
Support leading slash in x-amz-copy-source
The CopyObject meta request required the x-amz-copy-source
to be in strict form of {bucket}/{key}
.
But as per S3 docs, /{bucket}/{key}
is also valid.
This fix adds support for both formats.