diff --git a/.changes/1.28.35.json b/.changes/1.28.35.json new file mode 100644 index 0000000000..fa6970f286 --- /dev/null +++ b/.changes/1.28.35.json @@ -0,0 +1,17 @@ +[ + { + "category": "``cloudtrail``", + "description": "[``botocore``] Add ThrottlingException with error code 429 to handle CloudTrail Delegated Admin request rate exceeded on organization resources.", + "type": "api-change" + }, + { + "category": "``cloudwatch``", + "description": "[``botocore``] Update cloudwatch client to latest version", + "type": "api-change" + }, + { + "category": "``detective``", + "description": "[``botocore``] Added protections to interacting with fields containing customer information.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8d26fee49c..7e17fcc15f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.28.35 +======= + +* api-change:``cloudtrail``: [``botocore``] Add ThrottlingException with error code 429 to handle CloudTrail Delegated Admin request rate exceeded on organization resources. +* api-change:``cloudwatch``: [``botocore``] Update cloudwatch client to latest version +* api-change:``detective``: [``botocore``] Added protections to interacting with fields containing customer information. + + 1.28.34 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 428beb2090..23992de11a 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.28.34' +__version__ = '1.28.35' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 1098f216c3..8bead0ff86 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.34,<1.32.0 + botocore>=1.31.35,<1.32.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index 94fd282473..3e52056b95 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.34,<1.32.0', + 'botocore>=1.31.35,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]