Skip to content

Commit 9281a7c

Browse files
Merge branch 'release-0.16.1' into develop
* release-0.16.1: Bumping version to 0.16.1 Merge customizations for S3
2 parents fb16ad3 + e14ba12 commit 9281a7c

4 files changed

Lines changed: 19 additions & 1 deletion

File tree

.changes/0.16.1.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"category": "``TransferManager``",
4+
"description": "Add support for customer-provided full-object checksums using the SHA512, MD5, XXHASH3, XXHASH64, and XXHASH128 algorithms.",
5+
"type": "enhancement"
6+
}
7+
]

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
CHANGELOG
33
=========
44

5+
0.16.1
6+
======
7+
8+
* enhancement:``TransferManager``: Add support for customer-provided full-object checksums using the SHA512, MD5, XXHASH3, XXHASH64, and XXHASH128 algorithms.
9+
10+
511
0.16.0
612
======
713

s3transfer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def __call__(self, bytes_amount):
146146
from s3transfer.exceptions import RetriesExceededError, S3UploadFailedError
147147

148148
__author__ = 'Amazon Web Services'
149-
__version__ = '0.16.0'
149+
__version__ = '0.16.1'
150150

151151

152152
logger = logging.getLogger(__name__)

s3transfer/constants.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,13 @@
3030
'ChecksumCRC32',
3131
'ChecksumCRC32C',
3232
'ChecksumCRC64NVME',
33+
'ChecksumMD5',
3334
'ChecksumSHA1',
3435
'ChecksumSHA256',
36+
'ChecksumSHA512',
37+
'ChecksumXXHASH3',
38+
'ChecksumXXHASH64',
39+
'ChecksumXXHASH128',
3540
]
3641

3742
USER_AGENT = f's3transfer/{s3transfer.__version__}'

0 commit comments

Comments
 (0)