diff --git a/.changes/1.35.47.json b/.changes/1.35.47.json new file mode 100644 index 0000000000..2d7d5cad44 --- /dev/null +++ b/.changes/1.35.47.json @@ -0,0 +1,37 @@ +[ + { + "category": "``bedrock``", + "description": "[``botocore``] Doc updates for supporting converse", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] Amazon Connect Service Feature: Add support to start screen sharing for a web calling contact.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Amazon EC2 X8g, C8g and M8g instances are powered by AWS Graviton4 processors. X8g provide the lowest cost per GiB of memory among Graviton4 instances. C8g provide the best price performance for compute-intensive workloads. M8g provide the best price performance in for general purpose workloads.", + "type": "api-change" + }, + { + "category": "``mwaa``", + "description": "[``botocore``] Introducing InvokeRestApi which allows users to invoke the Apache Airflow REST API on the webserver with the specified inputs.", + "type": "api-change" + }, + { + "category": "``payment-cryptography``", + "description": "[``botocore``] Add support for ECC P-256 and P-384 Keys.", + "type": "api-change" + }, + { + "category": "``payment-cryptography-data``", + "description": "[``botocore``] Add ECDH support on PIN operations.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Fix S3 200 Error handling to address bugs introduced in payload operations.", + "type": "bugfix" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f1f4334eb9..38159e2220 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.35.47 +======= + +* api-change:``bedrock``: [``botocore``] Doc updates for supporting converse +* api-change:``connect``: [``botocore``] Amazon Connect Service Feature: Add support to start screen sharing for a web calling contact. +* api-change:``ec2``: [``botocore``] Amazon EC2 X8g, C8g and M8g instances are powered by AWS Graviton4 processors. X8g provide the lowest cost per GiB of memory among Graviton4 instances. C8g provide the best price performance for compute-intensive workloads. M8g provide the best price performance in for general purpose workloads. +* api-change:``mwaa``: [``botocore``] Introducing InvokeRestApi which allows users to invoke the Apache Airflow REST API on the webserver with the specified inputs. +* api-change:``payment-cryptography``: [``botocore``] Add support for ECC P-256 and P-384 Keys. +* api-change:``payment-cryptography-data``: [``botocore``] Add ECDH support on PIN operations. +* bugfix:``s3``: [``botocore``] Fix S3 200 Error handling to address bugs introduced in payload operations. + + 1.35.46 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 2863990f3e..102e83aadd 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.35.46' +__version__ = '1.35.47' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 9dc66633b1..818c2159f4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.46,<1.36.0 + botocore>=1.35.47,<1.36.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index bd8254355c..a5d91cee1d 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.46,<1.36.0', + 'botocore>=1.35.47,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]