diff --git a/.changes/1.28.41.json b/.changes/1.28.41.json new file mode 100644 index 0000000000..0ae0370c6d --- /dev/null +++ b/.changes/1.28.41.json @@ -0,0 +1,47 @@ +[ + { + "category": "``billingconductor``", + "description": "[``botocore``] This release adds support for line item filtering in for the custom line item resource.", + "type": "api-change" + }, + { + "category": "``cloud9``", + "description": "[``botocore``] Added support for Ubuntu 22.04 that was not picked up in a previous Trebuchet request. Doc-only update.", + "type": "api-change" + }, + { + "category": "``compute-optimizer``", + "description": "[``botocore``] This release adds support to provide recommendations for G4dn and P3 instances that use NVIDIA GPUs.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Introducing Amazon EC2 C7gd, M7gd, and R7gd Instances with up to 3.8 TB of local NVMe-based SSD block-level storage. These instances are powered by AWS Graviton3 processors, delivering up to 25% better performance over Graviton2-based instances.", + "type": "api-change" + }, + { + "category": "``ecs``", + "description": "[``botocore``] Documentation only update for Amazon ECS.", + "type": "api-change" + }, + { + "category": "``events``", + "description": "[``botocore``] Update events client to latest version", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Add support for feature integration with AWS Backup.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] SageMaker Neo now supports data input shape derivation for Pytorch 2.0 and XGBoost compilation job for cloud instance targets. You can skip DataInputConfig field during compilation job creation. You can also access derived information from model in DescribeCompilationJob response.", + "type": "api-change" + }, + { + "category": "``vpc-lattice``", + "description": "[``botocore``] This release adds Lambda event structure version config support for LAMBDA target groups. It also adds newline support for auth policies.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1821e6858e..0d4e9edf2c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,20 @@ CHANGELOG ========= +1.28.41 +======= + +* api-change:``billingconductor``: [``botocore``] This release adds support for line item filtering in for the custom line item resource. +* api-change:``cloud9``: [``botocore``] Added support for Ubuntu 22.04 that was not picked up in a previous Trebuchet request. Doc-only update. +* api-change:``compute-optimizer``: [``botocore``] This release adds support to provide recommendations for G4dn and P3 instances that use NVIDIA GPUs. +* api-change:``ec2``: [``botocore``] Introducing Amazon EC2 C7gd, M7gd, and R7gd Instances with up to 3.8 TB of local NVMe-based SSD block-level storage. These instances are powered by AWS Graviton3 processors, delivering up to 25% better performance over Graviton2-based instances. +* api-change:``ecs``: [``botocore``] Documentation only update for Amazon ECS. +* api-change:``events``: [``botocore``] Update events client to latest version +* api-change:``rds``: [``botocore``] Add support for feature integration with AWS Backup. +* api-change:``sagemaker``: [``botocore``] SageMaker Neo now supports data input shape derivation for Pytorch 2.0 and XGBoost compilation job for cloud instance targets. You can skip DataInputConfig field during compilation job creation. You can also access derived information from model in DescribeCompilationJob response. +* api-change:``vpc-lattice``: [``botocore``] This release adds Lambda event structure version config support for LAMBDA target groups. It also adds newline support for auth policies. + + 1.28.40 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 4224ad2a5b..4fcbf9b144 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.28.40' +__version__ = '1.28.41' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 4e512ec4e7..6384eaa2ff 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.40,<1.32.0 + botocore>=1.31.41,<1.32.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index 09062b9a34..69e0c7cc25 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.40,<1.32.0', + 'botocore>=1.31.41,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]