Skip to content

Commit 7bcd669

Browse files
Merge branch 'release-1.18.13'
* release-1.18.13: Bumping version to 1.18.13 Add changelog entries from botocore Add info on installing with CRT support (#2812) Add crt extra to Boto3 (#2943)
2 parents 27f65d1 + c25afdf commit 7bcd669

File tree

6 files changed

+74
-3
lines changed

6 files changed

+74
-3
lines changed

.changes/1.18.13.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"category": "``redshift``",
4+
"description": "[``botocore``] API support for Redshift Data Sharing feature.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``iotsitewise``",
9+
"description": "[``botocore``] My AWS Service (placeholder) - This release introduces custom Intervals and offset for tumbling window in metric for AWS IoT SiteWise.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``glue``",
14+
"description": "[``botocore``] Add ConcurrentModificationException to create-table, delete-table, create-database, update-database, delete-database",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``mediaconvert``",
19+
"description": "[``botocore``] AWS Elemental MediaConvert SDK has added control over the passthrough of XDS captions metadata to outputs.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``proton``",
24+
"description": "[``botocore``] Docs only add idempotent create apis",
25+
"type": "api-change"
26+
}
27+
]

CHANGELOG.rst

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

5+
1.18.13
6+
=======
7+
8+
* api-change:``redshift``: [``botocore``] API support for Redshift Data Sharing feature.
9+
* api-change:``iotsitewise``: [``botocore``] My AWS Service (placeholder) - This release introduces custom Intervals and offset for tumbling window in metric for AWS IoT SiteWise.
10+
* api-change:``glue``: [``botocore``] Add ConcurrentModificationException to create-table, delete-table, create-database, update-database, delete-database
11+
* api-change:``mediaconvert``: [``botocore``] AWS Elemental MediaConvert SDK has added control over the passthrough of XDS captions metadata to outputs.
12+
* api-change:``proton``: [``botocore``] Docs only add idempotent create apis
13+
14+
515
1.18.12
616
=======
717

boto3/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
__author__ = 'Amazon Web Services'
21-
__version__ = '1.18.12'
21+
__version__ = '1.18.13'
2222

2323

2424
# The default Boto3 session; autoloaded when needed.

docs/source/guide/quickstart.rst

+31
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,37 @@ certain versions, you may provide constraints when installing::
5656

5757
The latest development version of Boto3 is on `GitHub <https://github.com/boto/boto3>`_.
5858

59+
Using the AWS Common Runtime (CRT)
60+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
61+
62+
In addition to the default install of Boto3, you can choose to include the new `AWS Common Runtime <https://docs.aws.amazon.com/sdkref/latest/guide/common-runtime.html>`_
63+
(CRT). The AWS CRT is a collection of modular packages that serve as a new foundation for AWS SDKs.
64+
Each library provides better performance and minimal footprint for the functional area it
65+
implements. Using the CRT, SDKs can share the same base code when possible, improving consistency
66+
and throughput optimizations across AWS SDKs.
67+
68+
When the AWS CRT is included, Boto3 uses it to incorporate features not otherwise
69+
available in the AWS SDK for Python.
70+
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).
76+
77+
Boto3 doesn't use the AWS CRT by default but you can opt into using it by specifying the
78+
:code:`crt` `extra feature <https://www.python.org/dev/peps/pep-0508/#extras>`_ when installing Boto3::
79+
80+
pip install boto3[crt]
81+
82+
To revert to the non-CRT version of Boto3, use this command::
83+
84+
pip uninstall awscrt
85+
86+
If you need to re-enable CRT, reinstall :code:`boto3[crt]` to ensure you get a compatible version of :code:`awscrt`::
87+
88+
pip install boto3[crt]
89+
5990
Configuration
6091
-------------
6192

setup.cfg

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore>=1.21.12,<1.22.0
6+
botocore>=1.21.13,<1.22.0
77
jmespath>=0.7.1,<1.0.0
88
s3transfer>=0.5.0,<0.6.0
9+
10+
[options.extras_require]
11+
crt = botocore[crt]>=1.21.0,<2.0a0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
requires = [
17-
'botocore>=1.21.12,<1.22.0',
17+
'botocore>=1.21.13,<1.22.0',
1818
'jmespath>=0.7.1,<1.0.0',
1919
's3transfer>=0.5.0,<0.6.0'
2020
]

0 commit comments

Comments
 (0)