diff --git a/.changes/1.26.130.json b/.changes/1.26.130.json new file mode 100644 index 0000000000..28fb632f6b --- /dev/null +++ b/.changes/1.26.130.json @@ -0,0 +1,22 @@ +[ + { + "category": "``glue``", + "description": "[``botocore``] We don't do release notes https://w.amazon.com/bin/view/AWSDocs/common-tasks/release-notes", + "type": "api-change" + }, + { + "category": "``guardduty``", + "description": "[``botocore``] Add AccessDeniedException 403 Error message code to support 3 Tagging related APIs", + "type": "api-change" + }, + { + "category": "``iotsitewise``", + "description": "[``botocore``] Provide support for 20,000 max results for GetAssetPropertyValueHistory/BatchGetAssetPropertyValueHistory and 15 minute aggregate resolution for GetAssetPropertyAggregates/BatchGetAssetPropertyAggregates", + "type": "api-change" + }, + { + "category": "``sts``", + "description": "[``botocore``] Documentation updates for AWS Security Token Service.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9704888d94..35937569f5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.26.130 +======== + +* api-change:``glue``: [``botocore``] We don't do release notes https://w.amazon.com/bin/view/AWSDocs/common-tasks/release-notes +* api-change:``guardduty``: [``botocore``] Add AccessDeniedException 403 Error message code to support 3 Tagging related APIs +* api-change:``iotsitewise``: [``botocore``] Provide support for 20,000 max results for GetAssetPropertyValueHistory/BatchGetAssetPropertyValueHistory and 15 minute aggregate resolution for GetAssetPropertyAggregates/BatchGetAssetPropertyAggregates +* api-change:``sts``: [``botocore``] Documentation updates for AWS Security Token Service. + + 1.26.129 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 560cd0a1ab..fc536cdbc5 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.129' +__version__ = '1.26.130' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index d00d3a870c..f1feddc074 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.129,<1.30.0 + botocore>=1.29.130,<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 a8f4f21a36..f881e2e6cf 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.129,<1.30.0', + 'botocore>=1.29.130,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]