diff --git a/.changes/1.34.32.json b/.changes/1.34.32.json new file mode 100644 index 0000000000..4d63c6fbe8 --- /dev/null +++ b/.changes/1.34.32.json @@ -0,0 +1,22 @@ +[ + { + "category": "``cloudformation``", + "description": "[``botocore``] CloudFormation IaC generator allows you to scan existing resources in your account and select resources to generate a template for a new or existing CloudFormation stack.", + "type": "api-change" + }, + { + "category": "``elbv2``", + "description": "[``botocore``] Update elbv2 client to latest version", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] Update page size limits for GetJobRuns and GetTriggers APIs.", + "type": "api-change" + }, + { + "category": "``ssm``", + "description": "[``botocore``] This release adds an optional Duration parameter to StateManager Associations. This allows customers to specify how long an apply-only-on-cron association execution should run. Once the specified Duration is out all the ongoing cancellable commands or automations are cancelled.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-cloudformation-14502.json b/.changes/next-release/api-change-cloudformation-14502.json deleted file mode 100644 index 832152d8a6..0000000000 --- a/.changes/next-release/api-change-cloudformation-14502.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cloudformation``", - "description": "[``botocore``] CloudFormation IaC generator allows you to scan existing resources in your account and select resources to generate a template for a new or existing CloudFormation stack." -} diff --git a/.changes/next-release/api-change-elbv2-33614.json b/.changes/next-release/api-change-elbv2-33614.json deleted file mode 100644 index aaded39a44..0000000000 --- a/.changes/next-release/api-change-elbv2-33614.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``elbv2``", - "description": "[``botocore``] Update elbv2 client to latest version" -} diff --git a/.changes/next-release/api-change-glue-69986.json b/.changes/next-release/api-change-glue-69986.json deleted file mode 100644 index da2cdd8ed4..0000000000 --- a/.changes/next-release/api-change-glue-69986.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``glue``", - "description": "[``botocore``] Update page size limits for GetJobRuns and GetTriggers APIs." -} diff --git a/.changes/next-release/api-change-ssm-34198.json b/.changes/next-release/api-change-ssm-34198.json deleted file mode 100644 index f1155f1c2b..0000000000 --- a/.changes/next-release/api-change-ssm-34198.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ssm``", - "description": "[``botocore``] This release adds an optional Duration parameter to StateManager Associations. This allows customers to specify how long an apply-only-on-cron association execution should run. Once the specified Duration is out all the ongoing cancellable commands or automations are cancelled." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b72ddfe3c0..0567870966 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.34.32 +======= + +* api-change:``cloudformation``: [``botocore``] CloudFormation IaC generator allows you to scan existing resources in your account and select resources to generate a template for a new or existing CloudFormation stack. +* api-change:``elbv2``: [``botocore``] Update elbv2 client to latest version +* api-change:``glue``: [``botocore``] Update page size limits for GetJobRuns and GetTriggers APIs. +* api-change:``ssm``: [``botocore``] This release adds an optional Duration parameter to StateManager Associations. This allows customers to specify how long an apply-only-on-cron association execution should run. Once the specified Duration is out all the ongoing cancellable commands or automations are cancelled. + + 1.34.31 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index efa2c4693b..0f46c3caff 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.31' +__version__ = '1.34.32' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 0df36894fc..f9db6ad96f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.31,<1.35.0 + botocore>=1.34.32,<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 cf41ee37f3..07b2ab066f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.31,<1.35.0', + 'botocore>=1.34.32,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]