diff --git a/.changes/1.24.83.json b/.changes/1.24.83.json new file mode 100644 index 0000000000..31ab17b792 --- /dev/null +++ b/.changes/1.24.83.json @@ -0,0 +1,57 @@ +[ + { + "category": "``acm``", + "description": "[``botocore``] This update returns additional certificate details such as certificate SANs and allows sorting in the ListCertificates API.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] u-3tb1 instances are powered by Intel Xeon Platinum 8176M (Skylake) processors and are purpose-built to run large in-memory databases.", + "type": "api-change" + }, + { + "category": "``emr-serverless``", + "description": "[``botocore``] This release adds API support to debug Amazon EMR Serverless jobs in real-time with live application UIs", + "type": "api-change" + }, + { + "category": "``fsx``", + "description": "[``botocore``] This release adds support for Amazon File Cache.", + "type": "api-change" + }, + { + "category": "``migrationhuborchestrator``", + "description": "[``botocore``] Introducing AWS MigrationHubOrchestrator. This is the first public release of AWS MigrationHubOrchestrator.", + "type": "api-change" + }, + { + "category": "``polly``", + "description": "[``botocore``] Added support for the new Cantonese voice - Hiujin. Hiujin is available as a Neural voice only.", + "type": "api-change" + }, + { + "category": "``proton``", + "description": "[``botocore``] This release adds an option to delete pipeline provisioning repositories using the UpdateAccountSettings API", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] SageMaker Training Managed Warm Pools let you retain provisioned infrastructure to reduce latency for repetitive training workloads.", + "type": "api-change" + }, + { + "category": "``secretsmanager``", + "description": "[``botocore``] Documentation updates for Secrets Manager", + "type": "api-change" + }, + { + "category": "``translate``", + "description": "[``botocore``] This release enables customers to access control rights on Translate resources like Parallel Data and Custom Terminology using Tag Based Authorization.", + "type": "api-change" + }, + { + "category": "``workspaces``", + "description": "[``botocore``] This release includes diagnostic log uploading feature. If it is enabled, the log files of WorkSpaces Windows client will be sent to Amazon WorkSpaces automatically for troubleshooting. You can use modifyClientProperty api to enable/disable this feature.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3a6a320308..77d1f5b153 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,22 @@ CHANGELOG ========= +1.24.83 +======= + +* api-change:``acm``: [``botocore``] This update returns additional certificate details such as certificate SANs and allows sorting in the ListCertificates API. +* api-change:``ec2``: [``botocore``] u-3tb1 instances are powered by Intel Xeon Platinum 8176M (Skylake) processors and are purpose-built to run large in-memory databases. +* api-change:``emr-serverless``: [``botocore``] This release adds API support to debug Amazon EMR Serverless jobs in real-time with live application UIs +* api-change:``fsx``: [``botocore``] This release adds support for Amazon File Cache. +* api-change:``migrationhuborchestrator``: [``botocore``] Introducing AWS MigrationHubOrchestrator. This is the first public release of AWS MigrationHubOrchestrator. +* api-change:``polly``: [``botocore``] Added support for the new Cantonese voice - Hiujin. Hiujin is available as a Neural voice only. +* api-change:``proton``: [``botocore``] This release adds an option to delete pipeline provisioning repositories using the UpdateAccountSettings API +* api-change:``sagemaker``: [``botocore``] SageMaker Training Managed Warm Pools let you retain provisioned infrastructure to reduce latency for repetitive training workloads. +* api-change:``secretsmanager``: [``botocore``] Documentation updates for Secrets Manager +* api-change:``translate``: [``botocore``] This release enables customers to access control rights on Translate resources like Parallel Data and Custom Terminology using Tag Based Authorization. +* api-change:``workspaces``: [``botocore``] This release includes diagnostic log uploading feature. If it is enabled, the log files of WorkSpaces Windows client will be sent to Amazon WorkSpaces automatically for troubleshooting. You can use modifyClientProperty api to enable/disable this feature. + + 1.24.82 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 847f14df4a..fa5ed020f1 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.82' +__version__ = '1.24.83' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index b0af416ca0..fe20f66f22 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.27.82,<1.28.0 + botocore>=1.27.83,<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 393f5f61f6..e833f4403b 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.27.82,<1.28.0', + 'botocore>=1.27.83,<1.28.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]