Skip to content

Releases: awslabs/aws-c-s3

Fix pause api call breaking ecs cred provider

20 Jul 22:15
4ff8318
Compare
Choose a tag to compare
Pause json cleanup (#197)

* remove json lib init

Fix crash because of TLS setup failure

05 Jul 18:50
4d82a49
Compare
Choose a tag to compare
Pre-release

What's Changed

Full Changelog: v0.1.42...v0.1.43

Pause/Resume

29 Jun 00:00
d861067
Compare
Choose a tag to compare
Pause/Resume Pre-release
Pre-release

Support for pause/resume for put

fix copy file url encoding

13 May 14:55
a884b3c
Compare
Choose a tag to compare
Pre-release

fix a bug where copy-file was decoding encoded urls

Fix user metadata headers "x-amz-meta-" in multipart upload

03 May 17:55
1bd8222
Compare
Choose a tag to compare

What's Changed

  • Don't re-send "x-amz-meta-" headers in each part of a multipart upload. by @graebm in #189

Full Changelog: v0.1.39...v0.1.40

Adapt new input stream API

27 Apr 16:44
2f6fa84
Compare
Choose a tag to compare
Pre-release

What's Changed

Full Changelog: v0.1.38...v0.1.39

Don't install sample app

12 Apr 20:39
Compare
Choose a tag to compare
Pre-release

What's Changed

  • Copy siging config by @ilevyor in #186
  • Don't install sample app by @serzhick in #187

New Contributors

  • @serzhick made their first contribution in #187

Full Changelog: v0.1.37...v0.1.38

Internize signed body value for streaming requests

29 Mar 18:50
85b791a
Compare
Choose a tag to compare

Internally set the signed body value to the correct value for streaming requests.

Checksums

07 Mar 13:20
303d62c
Compare
Choose a tag to compare
Checksums Pre-release
Pre-release

Add checksums configuration to meta-request

CopyObject meta request bug fixes

21 Feb 17:21
8af5489
Compare
Choose a tag to compare
Pre-release

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.