diff --git a/.changes/1.34.93.json b/.changes/1.34.93.json new file mode 100644 index 0000000000..251ba57763 --- /dev/null +++ b/.changes/1.34.93.json @@ -0,0 +1,37 @@ +[ + { + "category": "``codepipeline``", + "description": "[``botocore``] Add ability to manually and automatically roll back a pipeline stage to a previously successful execution.", + "type": "api-change" + }, + { + "category": "``cognito-idp``", + "description": "[``botocore``] Add LimitExceededException to SignUp errors", + "type": "api-change" + }, + { + "category": "``connectcampaigns``", + "description": "[``botocore``] This release adds support for specifying if Answering Machine should wait for prompt sound.", + "type": "api-change" + }, + { + "category": "``marketplace-entitlement``", + "description": "[``botocore``] Releasing minor endpoint updates.", + "type": "api-change" + }, + { + "category": "``oam``", + "description": "[``botocore``] This release introduces support for Source Accounts to define which Metrics and Logs to share with the Monitoring Account", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] SupportsLimitlessDatabase field added to describe-db-engine-versions to indicate whether the DB engine version supports Aurora Limitless Database.", + "type": "api-change" + }, + { + "category": "``support``", + "description": "[``botocore``] Releasing minor endpoint updates.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6538fb4750..db347e8c16 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.34.93 +======= + +* api-change:``codepipeline``: [``botocore``] Add ability to manually and automatically roll back a pipeline stage to a previously successful execution. +* api-change:``cognito-idp``: [``botocore``] Add LimitExceededException to SignUp errors +* api-change:``connectcampaigns``: [``botocore``] This release adds support for specifying if Answering Machine should wait for prompt sound. +* api-change:``marketplace-entitlement``: [``botocore``] Releasing minor endpoint updates. +* api-change:``oam``: [``botocore``] This release introduces support for Source Accounts to define which Metrics and Logs to share with the Monitoring Account +* api-change:``rds``: [``botocore``] SupportsLimitlessDatabase field added to describe-db-engine-versions to indicate whether the DB engine version supports Aurora Limitless Database. +* api-change:``support``: [``botocore``] Releasing minor endpoint updates. + + 1.34.92 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 31e661a133..5b7d53fff5 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.92' +__version__ = '1.34.93' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 9ffff42e83..4264d3a932 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.92,<1.35.0 + botocore>=1.34.93,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 46b4d23a5f..bf211bd8d5 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.92,<1.35.0', + 'botocore>=1.34.93,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]