diff --git a/.changes/1.29.0.json b/.changes/1.29.0.json new file mode 100644 index 0000000000..d950a15096 --- /dev/null +++ b/.changes/1.29.0.json @@ -0,0 +1,72 @@ +[ + { + "category": "ContainerProvider", + "description": "[``botocore``] Added Support for EKS container credentials", + "type": "feature" + }, + { + "category": "``backup``", + "description": "[``botocore``] AWS Backup - Features: Provide Job Summary for your backup activity.", + "type": "api-change" + }, + { + "category": "``cleanrooms``", + "description": "[``botocore``] This feature provides the ability for the collaboration creator to configure either the member who can run queries or a different member in the collaboration to be billed for query compute costs.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] Introducing SegmentAttributes parameter for StartChatContact API", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] Introduces new storage optimization APIs to support automatic compaction of Apache Iceberg tables.", + "type": "api-change" + }, + { + "category": "``iot``", + "description": "[``botocore``] This release introduces new attributes in API CreateSecurityProfile, UpdateSecurityProfile and DescribeSecurityProfile to support management of Metrics Export for AWS IoT Device Defender Detect.", + "type": "api-change" + }, + { + "category": "``lambda``", + "description": "[``botocore``] Add Python 3.12 (python3.12) support to AWS Lambda", + "type": "api-change" + }, + { + "category": "``mediatailor``", + "description": "[``botocore``] Removed unnecessary default values.", + "type": "api-change" + }, + { + "category": "``pipes``", + "description": "[``botocore``] Added support (via new LogConfiguration field in CreatePipe and UpdatePipe APIs) for logging to Amazon CloudWatch Logs, Amazon Simple Storage Service (Amazon S3), and Amazon Kinesis Data Firehose", + "type": "api-change" + }, + { + "category": "``resource-explorer-2``", + "description": "[``botocore``] Resource Explorer supports multi-account search. You can now use Resource Explorer to search and discover resources across AWS accounts within your organization or organizational unit.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] This release makes Model Registry Inference Specification fields as not required.", + "type": "api-change" + }, + { + "category": "``signer``", + "description": "[``botocore``] Documentation updates for AWS Signer", + "type": "api-change" + }, + { + "category": "``stepfunctions``", + "description": "[``botocore``] Update stepfunctions client to latest version", + "type": "api-change" + }, + { + "category": "``endpoint-rules``", + "description": "[``botocore``] Update endpoint-rules client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index eb936f7eb7..150300aa61 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,25 @@ CHANGELOG ========= +1.29.0 +====== + +* feature:ContainerProvider: [``botocore``] Added Support for EKS container credentials +* api-change:``backup``: [``botocore``] AWS Backup - Features: Provide Job Summary for your backup activity. +* api-change:``cleanrooms``: [``botocore``] This feature provides the ability for the collaboration creator to configure either the member who can run queries or a different member in the collaboration to be billed for query compute costs. +* api-change:``connect``: [``botocore``] Introducing SegmentAttributes parameter for StartChatContact API +* api-change:``glue``: [``botocore``] Introduces new storage optimization APIs to support automatic compaction of Apache Iceberg tables. +* api-change:``iot``: [``botocore``] This release introduces new attributes in API CreateSecurityProfile, UpdateSecurityProfile and DescribeSecurityProfile to support management of Metrics Export for AWS IoT Device Defender Detect. +* api-change:``lambda``: [``botocore``] Add Python 3.12 (python3.12) support to AWS Lambda +* api-change:``mediatailor``: [``botocore``] Removed unnecessary default values. +* api-change:``pipes``: [``botocore``] Added support (via new LogConfiguration field in CreatePipe and UpdatePipe APIs) for logging to Amazon CloudWatch Logs, Amazon Simple Storage Service (Amazon S3), and Amazon Kinesis Data Firehose +* api-change:``resource-explorer-2``: [``botocore``] Resource Explorer supports multi-account search. You can now use Resource Explorer to search and discover resources across AWS accounts within your organization or organizational unit. +* api-change:``sagemaker``: [``botocore``] This release makes Model Registry Inference Specification fields as not required. +* api-change:``signer``: [``botocore``] Documentation updates for AWS Signer +* api-change:``stepfunctions``: [``botocore``] Update stepfunctions client to latest version +* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version + + 1.28.85 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 66b6b8fac8..dff30bf8c1 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.85' +__version__ = '1.29.0' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 425df2df6a..e5b3322156 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.85,<1.32.0 + botocore>=1.32.0,<1.33.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.7.0,<0.8.0 diff --git a/setup.py b/setup.py index 5c388e516e..6421f47c98 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.85,<1.32.0', + 'botocore>=1.32.0,<1.33.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.7.0,<0.8.0', ]