diff --git a/.changes/1.34.89.json b/.changes/1.34.89.json new file mode 100644 index 0000000000..7044d94f2f --- /dev/null +++ b/.changes/1.34.89.json @@ -0,0 +1,42 @@ +[ + { + "category": "``bedrock-agent``", + "description": "[``botocore``] Releasing the support for simplified configuration and return of control", + "type": "api-change" + }, + { + "category": "``bedrock-agent-runtime``", + "description": "[``botocore``] Releasing the support for simplified configuration and return of control", + "type": "api-change" + }, + { + "category": "``payment-cryptography``", + "description": "[``botocore``] Adding support to TR-31/TR-34 exports for optional headers, allowing customers to add additional metadata (such as key version and KSN) when exporting keys from the service.", + "type": "api-change" + }, + { + "category": "``redshift-serverless``", + "description": "[``botocore``] Updates description of schedule field for scheduled actions.", + "type": "api-change" + }, + { + "category": "``route53profiles``", + "description": "[``botocore``] Route 53 Profiles allows you to apply a central DNS configuration across many VPCs regardless of account.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] This release adds support for Real-Time Collaboration and Shared Space for JupyterLab App on SageMaker Studio.", + "type": "api-change" + }, + { + "category": "``servicediscovery``", + "description": "[``botocore``] This release adds examples to several Cloud Map actions.", + "type": "api-change" + }, + { + "category": "``transfer``", + "description": "[``botocore``] Adding new API to support remote directory listing using SFTP connector", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fc54ecaac9..8477c261d7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.34.89 +======= + +* api-change:``bedrock-agent``: [``botocore``] Releasing the support for simplified configuration and return of control +* api-change:``bedrock-agent-runtime``: [``botocore``] Releasing the support for simplified configuration and return of control +* api-change:``payment-cryptography``: [``botocore``] Adding support to TR-31/TR-34 exports for optional headers, allowing customers to add additional metadata (such as key version and KSN) when exporting keys from the service. +* api-change:``redshift-serverless``: [``botocore``] Updates description of schedule field for scheduled actions. +* api-change:``route53profiles``: [``botocore``] Route 53 Profiles allows you to apply a central DNS configuration across many VPCs regardless of account. +* api-change:``sagemaker``: [``botocore``] This release adds support for Real-Time Collaboration and Shared Space for JupyterLab App on SageMaker Studio. +* api-change:``servicediscovery``: [``botocore``] This release adds examples to several Cloud Map actions. +* api-change:``transfer``: [``botocore``] Adding new API to support remote directory listing using SFTP connector + + 1.34.88 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 2aa8e65432..e7a591bc99 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.88' +__version__ = '1.34.89' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 535a248548..cc1f538c05 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.88,<1.35.0 + botocore>=1.34.89,<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 75e3c932fe..825c6642b4 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.88,<1.35.0', + 'botocore>=1.34.89,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]