Skip to content

Releases: awslabs/aws-c-s3

Enable headers callback invocation for failed requests

09 Dec 19:12
76f49fb
Compare
Choose a tag to compare

For Default meta requests, the response headers callback was called
only for successful responses. This release enables the callback invocation on errors too.

Remove using of try_lock

02 Dec 23:18
bb35b7a
Compare
Choose a tag to compare
Pre-release
  • Try lock is not available in Windows Server 2008. Remove it from our debug build

Fix build

29 Nov 21:41
cac40e3
Compare
Choose a tag to compare
Fix build Pre-release
Pre-release
  • Fix build for cross compile
  • Dashboard updates

Update default max part size to 4GB for 32bit, and 5GB for 64bit

01 Oct 21:33
8655417
Compare
Choose a tag to compare

Issue #, if available:

  • previous 32MB max part size cannot support huge files(large than 0.3TB)

Description of changes:

Proxy environment variable support

22 Sep 21:00
1ea630b
Compare
Choose a tag to compare
Pre-release
  • Use the proxy environment variable support from aws-c-http

Use correct package id for s3 error codes and log subjects

18 Aug 21:14
e38bdad
Compare
Choose a tag to compare
v0.1.25

trivial update and audit fix (#147)

Remove sba_allocator

29 Jul 17:26
071f0de
Compare
Choose a tag to compare
Remove sba_allocator Pre-release
Pre-release
  • Remove sba_allocator in case the allocator is gone when the Client clean itself up. (When the client destroy itself, there is a race between the connection destroy and S3 client destroy, may result in a crash)
  • Fixed a memory leak about endpoint hash map.

BYO_CRYPTO on_error compiler fix

20 Jul 18:14
dca8df1
Compare
Choose a tag to compare
Pre-release

BYO_CRYPTO builds don't build due to unused tag, this release fixes.

Error Level Log for retry

06 Jul 20:20
d48c693
Compare
Choose a tag to compare
Pre-release
  • The Error causing retry is hidden. Log the reason will help us to identify the error.
  • TODO: We need to add the error to the error message of exceeding max number of retries.

Multiple Bucket Support, Compute-MD5 defaults to off, Cancel Bug Fix

25 Jun 22:48
c16f10d
Compare
Choose a tag to compare
  • Adding multiple bucket support.
  • Defaulting compute-MD5 to off.
  • BUG_FIX: Fixing cancelling bug during request preparation. After a meta-request has been canceled, individual requests that have been queued to be prepared (ie: reading data from input streams, signing, etc.), and that are not marked "always send", will fail instead of being needlessly prepared.