Skip to content

Commit

Permalink
Merge branch 'release-1.36.21'
Browse files Browse the repository at this point in the history
* release-1.36.21:
  Bumping version to 1.36.21
  Add changelog entries from botocore
  Ignore .venv directories (#4440)
  Add venv callout from README into quickstart guide (#4439)
  • Loading branch information
aws-sdk-python-automation committed Feb 14, 2025
2 parents 4084764 + 1ef4449 commit 3d1cda2
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 4 deletions.
37 changes: 37 additions & 0 deletions .changes/1.36.21.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"category": "``codebuild``",
"description": "[``botocore``] Added test suite names to test case metadata",
"type": "api-change"
},
{
"category": "``connect``",
"description": "[``botocore``] Release Notes: 1) Analytics API enhancements: Added new ListAnalyticsDataLakeDataSets API. 2) Onboarding API Idempotency: Adds ClientToken to instance creation and management APIs to support idempotency.",
"type": "api-change"
},
{
"category": "``dms``",
"description": "[``botocore``] Introduces premigration assessment feature to DMS Serverless API for start-replication and describe-replications",
"type": "api-change"
},
{
"category": "``rds-data``",
"description": "[``botocore``] Add support for Stop DB feature.",
"type": "api-change"
},
{
"category": "``s3``",
"description": "[``botocore``] Added support for Content-Range header in HeadObject response.",
"type": "api-change"
},
{
"category": "``wafv2``",
"description": "[``botocore``] The WAFv2 API now supports configuring data protection in webACLs.",
"type": "api-change"
},
{
"category": "``workspaces-thin-client``",
"description": "[``botocore``] Update Environment and Device name field definitions",
"type": "api-change"
}
]
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ tests/.coverage
coverage.xml

# Common virtualenv names
.venv
venv
env2
env3
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
CHANGELOG
=========

1.36.21
=======

* api-change:``codebuild``: [``botocore``] Added test suite names to test case metadata
* api-change:``connect``: [``botocore``] Release Notes: 1) Analytics API enhancements: Added new ListAnalyticsDataLakeDataSets API. 2) Onboarding API Idempotency: Adds ClientToken to instance creation and management APIs to support idempotency.
* api-change:``dms``: [``botocore``] Introduces premigration assessment feature to DMS Serverless API for start-replication and describe-replications
* api-change:``rds-data``: [``botocore``] Add support for Stop DB feature.
* api-change:``s3``: [``botocore``] Added support for Content-Range header in HeadObject response.
* api-change:``wafv2``: [``botocore``] The WAFv2 API now supports configuring data protection in webACLs.
* api-change:``workspaces-thin-client``: [``botocore``] Update Environment and Device name field definitions


1.36.20
=======

Expand Down
2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from boto3.session import Session

__author__ = 'Amazon Web Services'
__version__ = '1.36.20'
__version__ = '1.36.21'


# The default Boto3 session; autoloaded when needed.
Expand Down
17 changes: 16 additions & 1 deletion docs/source/guide/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,22 @@ Python. For details, including the deprecation schedule and how to update your
project to use Python 3.8, see :ref:`guide_migration_py3`.

For information about how to get the latest version of Python, see the official `Python
documentation <https://www.python.org/downloads/>`_.
documentation <https://www.python.org/downloads/>`_.

Setup a virtual environment
~~~~~~~~~~~~~~~~~~~~~~~~~~~

Once you have a supported version of Python installed, you should set up
your workspace by creating a virtual environment and activate it::

$ python -m venv .venv
...
$ source .venv/bin/activate

This provides an isolated space for your installation that will avoid unexpected
interactions with packages installed at the system level. Skipping this step may
result in unexpected dependency conflicts or failures with other tools installed
on your system.

Install Boto3
~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore>=1.36.20,<1.37.0
botocore>=1.36.21,<1.37.0
jmespath>=0.7.1,<2.0.0
s3transfer>=0.11.0,<0.12.0

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


requires = [
'botocore>=1.36.20,<1.37.0',
'botocore>=1.36.21,<1.37.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.11.0,<0.12.0',
]
Expand Down

0 comments on commit 3d1cda2

Please sign in to comment.