diff --git a/.changes/1.24.23.json b/.changes/1.24.23.json new file mode 100644 index 0000000000..175d952da4 --- /dev/null +++ b/.changes/1.24.23.json @@ -0,0 +1,32 @@ +[ + { + "category": "``config``", + "description": "[``botocore``] Updating documentation service limits", + "type": "api-change" + }, + { + "category": "``lexv2-models``", + "description": "[``botocore``] Update lexv2-models client to latest version", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "[``botocore``] This release allows customers to programmatically create QuickSight accounts with Enterprise and Enterprise + Q editions. It also releases allowlisting domains for embedding QuickSight dashboards at runtime through the embedding APIs.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Adds waiters support for DBCluster.", + "type": "api-change" + }, + { + "category": "``rolesanywhere``", + "description": "[``botocore``] IAM Roles Anywhere allows your workloads such as servers, containers, and applications to obtain temporary AWS credentials and use the same IAM roles and policies that you have configured for your AWS workloads to access AWS resources.", + "type": "api-change" + }, + { + "category": "``ssm-incidents``", + "description": "[``botocore``] Adds support for tagging incident-record on creation by providing incident tags in the template within a response-plan.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ee412b580c..2fe584f45a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.24.23 +======= + +* api-change:``config``: [``botocore``] Updating documentation service limits +* api-change:``lexv2-models``: [``botocore``] Update lexv2-models client to latest version +* api-change:``quicksight``: [``botocore``] This release allows customers to programmatically create QuickSight accounts with Enterprise and Enterprise + Q editions. It also releases allowlisting domains for embedding QuickSight dashboards at runtime through the embedding APIs. +* api-change:``rds``: [``botocore``] Adds waiters support for DBCluster. +* api-change:``rolesanywhere``: [``botocore``] IAM Roles Anywhere allows your workloads such as servers, containers, and applications to obtain temporary AWS credentials and use the same IAM roles and policies that you have configured for your AWS workloads to access AWS resources. +* api-change:``ssm-incidents``: [``botocore``] Adds support for tagging incident-record on creation by providing incident tags in the template within a response-plan. + + 1.24.22 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 47a64609b2..647c4da574 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.24.22' +__version__ = '1.24.23' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 02fce59062..39eb23f9f3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.27.22,<1.28.0 + botocore>=1.27.23,<1.28.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index a2dac3632b..4e3e6cf45c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.27.22,<1.28.0', + 'botocore>=1.27.23,<1.28.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]