diff --git a/.changes/1.34.107.json b/.changes/1.34.107.json new file mode 100644 index 0000000000..289b248a6d --- /dev/null +++ b/.changes/1.34.107.json @@ -0,0 +1,42 @@ +[ + { + "category": "``acm-pca``", + "description": "[``botocore``] This release adds support for waiters to fail on AccessDeniedException when having insufficient permissions", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] Adding Contact Flow metrics to the GetMetricDataV2 API", + "type": "api-change" + }, + { + "category": "``kafka``", + "description": "[``botocore``] AWS MSK support for Broker Removal.", + "type": "api-change" + }, + { + "category": "``mwaa``", + "description": "[``botocore``] Amazon MWAA now supports Airflow web server auto scaling to automatically handle increased demand from REST APIs, Command Line Interface (CLI), or more Airflow User Interface (UI) users. Customers can specify maximum and minimum web server instances during environment creation and update workflow.", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "[``botocore``] This release adds DescribeKeyRegistration and UpdateKeyRegistration APIs to manage QuickSight Customer Managed Keys (CMK).", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Introduced WorkerAccessConfiguration to SageMaker Workteam. This allows customers to configure resource access for workers in a workteam.", + "type": "api-change" + }, + { + "category": "``secretsmanager``", + "description": "[``botocore``] Documentation updates for AWS Secrets Manager", + "type": "api-change" + }, + { + "category": "retries", + "description": "[``botocore``] Fix backoff calculation for truncated binary exponential backoff (`#3178 `__)", + "type": "bugfix" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cf12bdce1f..5ad4050ab4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.34.107 +======== + +* api-change:``acm-pca``: [``botocore``] This release adds support for waiters to fail on AccessDeniedException when having insufficient permissions +* api-change:``connect``: [``botocore``] Adding Contact Flow metrics to the GetMetricDataV2 API +* api-change:``kafka``: [``botocore``] AWS MSK support for Broker Removal. +* api-change:``mwaa``: [``botocore``] Amazon MWAA now supports Airflow web server auto scaling to automatically handle increased demand from REST APIs, Command Line Interface (CLI), or more Airflow User Interface (UI) users. Customers can specify maximum and minimum web server instances during environment creation and update workflow. +* api-change:``quicksight``: [``botocore``] This release adds DescribeKeyRegistration and UpdateKeyRegistration APIs to manage QuickSight Customer Managed Keys (CMK). +* api-change:``sagemaker``: [``botocore``] Introduced WorkerAccessConfiguration to SageMaker Workteam. This allows customers to configure resource access for workers in a workteam. +* api-change:``secretsmanager``: [``botocore``] Documentation updates for AWS Secrets Manager +* bugfix:retries: [``botocore``] Fix backoff calculation for truncated binary exponential backoff (`#3178 `__) + + 1.34.106 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index e527ecf0f3..f3f8dc4de3 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.106' +__version__ = '1.34.107' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index cbf7b940d4..901cd8913f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.106,<1.35.0 + botocore>=1.34.107,<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 799a820854..18c9e1bb29 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.106,<1.35.0', + 'botocore>=1.34.107,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]