diff --git a/.changes/1.34.119.json b/.changes/1.34.119.json new file mode 100644 index 0000000000..ace7364cb6 --- /dev/null +++ b/.changes/1.34.119.json @@ -0,0 +1,22 @@ +[ + { + "category": "``ec2``", + "description": "[``botocore``] U7i instances with up to 32 TiB of DDR5 memory and 896 vCPUs are now available. C7i-flex instances are launched and are lower-priced variants of the Amazon EC2 C7i instances that offer a baseline level of CPU performance with the ability to scale up to the full compute performance 95% of the time.", + "type": "api-change" + }, + { + "category": "``pipes``", + "description": "[``botocore``] This release adds Timestream for LiveAnalytics as a supported target in EventBridge Pipes", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Extend DescribeClusterNode response with private DNS hostname and IP address, and placement information about availability zone and availability zone ID.", + "type": "api-change" + }, + { + "category": "``taxsettings``", + "description": "[``botocore``] Initial release of AWS Tax Settings API", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-ec2-38639.json b/.changes/next-release/api-change-ec2-38639.json deleted file mode 100644 index 8bc0ae3a19..0000000000 --- a/.changes/next-release/api-change-ec2-38639.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ec2``", - "description": "[``botocore``] U7i instances with up to 32 TiB of DDR5 memory and 896 vCPUs are now available. C7i-flex instances are launched and are lower-priced variants of the Amazon EC2 C7i instances that offer a baseline level of CPU performance with the ability to scale up to the full compute performance 95% of the time." -} diff --git a/.changes/next-release/api-change-pipes-62273.json b/.changes/next-release/api-change-pipes-62273.json deleted file mode 100644 index 16905131ae..0000000000 --- a/.changes/next-release/api-change-pipes-62273.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``pipes``", - "description": "[``botocore``] This release adds Timestream for LiveAnalytics as a supported target in EventBridge Pipes" -} diff --git a/.changes/next-release/api-change-sagemaker-54814.json b/.changes/next-release/api-change-sagemaker-54814.json deleted file mode 100644 index 4a8672c2e3..0000000000 --- a/.changes/next-release/api-change-sagemaker-54814.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sagemaker``", - "description": "[``botocore``] Extend DescribeClusterNode response with private DNS hostname and IP address, and placement information about availability zone and availability zone ID." -} diff --git a/.changes/next-release/api-change-taxsettings-62232.json b/.changes/next-release/api-change-taxsettings-62232.json deleted file mode 100644 index 36f109c05a..0000000000 --- a/.changes/next-release/api-change-taxsettings-62232.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``taxsettings``", - "description": "[``botocore``] Initial release of AWS Tax Settings API" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4f5aa87558..ff9f0ee920 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.34.119 +======== + +* api-change:``ec2``: [``botocore``] U7i instances with up to 32 TiB of DDR5 memory and 896 vCPUs are now available. C7i-flex instances are launched and are lower-priced variants of the Amazon EC2 C7i instances that offer a baseline level of CPU performance with the ability to scale up to the full compute performance 95% of the time. +* api-change:``pipes``: [``botocore``] This release adds Timestream for LiveAnalytics as a supported target in EventBridge Pipes +* api-change:``sagemaker``: [``botocore``] Extend DescribeClusterNode response with private DNS hostname and IP address, and placement information about availability zone and availability zone ID. +* api-change:``taxsettings``: [``botocore``] Initial release of AWS Tax Settings API + + 1.34.118 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 5e78721244..ab12812745 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.118' +__version__ = '1.34.119' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 78ba6e83b8..6de383a41a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.118,<1.35.0 + botocore>=1.34.119,<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 7231803564..1653e24d29 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.118,<1.35.0', + 'botocore>=1.34.119,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]