diff --git a/.changes/1.26.138.json b/.changes/1.26.138.json new file mode 100644 index 0000000000..b302e4bead --- /dev/null +++ b/.changes/1.26.138.json @@ -0,0 +1,17 @@ +[ + { + "category": "``backup``", + "description": "[``botocore``] Added support for tags on restore.", + "type": "api-change" + }, + { + "category": "``pinpoint``", + "description": "[``botocore``] Amazon Pinpoint is deprecating the tags parameter in the UpdateSegment, UpdateCampaign, UpdateEmailTemplate, UpdateSmsTemplate, UpdatePushTemplate, UpdateInAppTemplate and UpdateVoiceTemplate. Amazon Pinpoint will end support tags parameter by May 22, 2023.", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "[``botocore``] Add support for Asset Bundle, Geospatial Heatmaps.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c06018baa6..168ff82cc6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.26.138 +======== + +* api-change:``backup``: [``botocore``] Added support for tags on restore. +* api-change:``pinpoint``: [``botocore``] Amazon Pinpoint is deprecating the tags parameter in the UpdateSegment, UpdateCampaign, UpdateEmailTemplate, UpdateSmsTemplate, UpdatePushTemplate, UpdateInAppTemplate and UpdateVoiceTemplate. Amazon Pinpoint will end support tags parameter by May 22, 2023. +* api-change:``quicksight``: [``botocore``] Add support for Asset Bundle, Geospatial Heatmaps. + + 1.26.137 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 77f71fc3c6..7c4809cda5 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.26.137' +__version__ = '1.26.138' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index a946c368ef..9aac5581b7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.137,<1.30.0 + botocore>=1.29.138,<1.30.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index 6b4a08e4bb..c38dd5ec39 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.137,<1.30.0', + 'botocore>=1.29.138,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]