Skip to content

Commit 7beb63d

Browse files
Merge branch 'release-1.22.71'
* release-1.22.71: Bumping version to 1.22.71 Update changelog based on model updates Remove section on download checksum validation. (#6770)
2 parents 188c58f + cdfc342 commit 7beb63d

7 files changed

Lines changed: 19 additions & 25 deletions

File tree

.changes/1.22.71.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"category": "``comprehend``",
4+
"description": "Amazon Comprehend now supports extracting the sentiment associated with entities such as brands, products and services from text documents.",
5+
"type": "api-change"
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+
1.22.71
6+
=======
7+
8+
* api-change:``comprehend``: Amazon Comprehend now supports extracting the sentiment associated with entities such as brands, products and services from text documents.
9+
10+
511
1.22.70
612
=======
713

awscli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
import os
1919

20-
__version__ = '1.22.70'
20+
__version__ = '1.22.71'
2121

2222
#
2323
# Get our data path to be added to botocore's search path

awscli/topics/s3-faq.rst

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Below are common questions regarding the use of Amazon S3 in the AWS CLI.
1313
Q: Does the AWS CLI validate checksums?
1414
---------------------------------------
1515

16-
The AWS CLI will perform checksum validation for uploading and downloading
17-
files in specific scenarios.
16+
The AWS CLI will perform checksum validation for uploading files in
17+
specific scenarios.
1818

1919
Upload
2020
~~~~~~
@@ -42,22 +42,3 @@ the high level ``aws s3`` commands that perform uploads
4242
commands including ``aws s3api put-object`` and ``aws s3api upload-part``.
4343

4444
If you want to verify the integrity of an object during upload, see `How can I check the integrity of an object uploaded to Amazon S3? <https://aws.amazon.com/premiumsupport/knowledge-center/data-integrity-s3/>`_ in the *AWS Knowledge Center*.
45-
46-
Download
47-
~~~~~~~~
48-
49-
The AWS CLI will attempt to verify the checksum of downloads when possible,
50-
based on the ``ETag`` header returned from a ``GetObject`` request that's
51-
performed whenever the AWS CLI downloads objects from S3. If the calculated
52-
MD5 checksum does not match the expected checksum, the file is deleted
53-
and the download is retried. This process is retried up to 3 times.
54-
If a downloads fails, the AWS CLI will exit with a non zero RC.
55-
See ``aws help return-codes`` for more information.
56-
57-
There are several conditions where the CLI is *not* able to verify
58-
checksums on downloads:
59-
60-
* If the object was uploaded via multipart uploads
61-
* If the object was uploaded using server side encryption with KMS
62-
* If the object was uploaded using a customer provided encryption key
63-
* If the object is downloaded using range ``GetObject`` requests

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.22.'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.22.70'
55+
release = '1.22.71'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.24.15
6+
botocore==1.24.16
77
docutils>=0.10,<0.16
88
s3transfer>=0.5.0,<0.6.0
99
PyYAML>=3.10,<5.5

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def find_version(*file_paths):
2424

2525

2626
install_requires = [
27-
'botocore==1.24.15',
27+
'botocore==1.24.16',
2828
'docutils>=0.10,<0.16',
2929
's3transfer>=0.5.0,<0.6.0',
3030
'PyYAML>=3.10,<5.5',

0 commit comments

Comments
 (0)