Skip to content

Commit c79e9b5

Browse files
Merge branch 'release-1.21.37'
* release-1.21.37: Bumping version to 1.21.37 Add changelog entries from botocore Add CRT examples to docs (#3217)
2 parents e85a235 + 7b02898 commit c79e9b5

File tree

6 files changed

+34
-9
lines changed

6 files changed

+34
-9
lines changed

.changes/1.21.37.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"category": "``mediaconvert``",
4+
"description": "[``botocore``] AWS Elemental MediaConvert SDK has added support for the pass-through of WebVTT styling to WebVTT outputs, pass-through of KLV metadata to supported formats, and improved filter support for processing 444/RGB content.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``wafv2``",
9+
"description": "[``botocore``] Add a new CurrentDefaultVersion field to ListAvailableManagedRuleGroupVersions API response; add a new VersioningSupported boolean to each ManagedRuleGroup returned from ListAvailableManagedRuleGroups API response.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``mediapackage-vod``",
14+
"description": "[``botocore``] This release adds ScteMarkersSource as an available field for Dash Packaging Configurations. When set to MANIFEST, MediaPackage will source the SCTE-35 markers from the manifest. When set to SEGMENTS, MediaPackage will source the SCTE-35 markers from the segments.",
15+
"type": "api-change"
16+
}
17+
]

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
CHANGELOG
33
=========
44

5+
1.21.37
6+
=======
7+
8+
* api-change:``mediaconvert``: [``botocore``] AWS Elemental MediaConvert SDK has added support for the pass-through of WebVTT styling to WebVTT outputs, pass-through of KLV metadata to supported formats, and improved filter support for processing 444/RGB content.
9+
* api-change:``wafv2``: [``botocore``] Add a new CurrentDefaultVersion field to ListAvailableManagedRuleGroupVersions API response; add a new VersioningSupported boolean to each ManagedRuleGroup returned from ListAvailableManagedRuleGroups API response.
10+
* api-change:``mediapackage-vod``: [``botocore``] This release adds ScteMarkersSource as an available field for Dash Packaging Configurations. When set to MANIFEST, MediaPackage will source the SCTE-35 markers from the manifest. When set to SEGMENTS, MediaPackage will source the SCTE-35 markers from the segments.
11+
12+
513
1.21.36
614
=======
715

boto3/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from boto3.session import Session
1818

1919
__author__ = 'Amazon Web Services'
20-
__version__ = '1.21.36'
20+
__version__ = '1.21.37'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

docs/source/guide/quickstart.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ and throughput optimizations across AWS SDKs.
6868
When the AWS CRT is included, Boto3 uses it to incorporate features not otherwise
6969
available in the AWS SDK for Python.
7070

71-
At this time, Boto3 uses the AWS CRT's authentication package (`aws-c-auth
72-
<https://github.com/awslabs/aws-c-auth>`_) to add support for the `AWS Signature Version 4
73-
<https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html>`_ (sigv4) signer, which
74-
adds authentication to your AWS requests using your security credentials (your AWS access key and
75-
secret access key).
71+
You'll find it used in features like:
7672

77-
Boto3 doesn't use the AWS CRT by default but you can opt into using it by specifying the
73+
- `Amazon S3 Multi-Region Access Points <https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiRegionAccessPoints.html>`_
74+
- `Amazon S3 Object Integrity <https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html>`_
75+
- Amazon EventBridge Global Endpoints
76+
77+
However, Boto3 doesn't use the AWS CRT by default but you can opt into using it by specifying the
7878
:code:`crt` `extra feature <https://www.python.org/dev/peps/pep-0508/#extras>`_ when installing Boto3::
7979

8080
pip install boto3[crt]

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore>=1.24.36,<1.25.0
6+
botocore>=1.24.37,<1.25.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.5.0,<0.6.0
99

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
requires = [
16-
'botocore>=1.24.36,<1.25.0',
16+
'botocore>=1.24.37,<1.25.0',
1717
'jmespath>=0.7.1,<2.0.0',
1818
's3transfer>=0.5.0,<0.6.0',
1919
]

0 commit comments

Comments
 (0)