diff --git a/.changes/1.34.84.json b/.changes/1.34.84.json new file mode 100644 index 0000000000..3f62c85ccf --- /dev/null +++ b/.changes/1.34.84.json @@ -0,0 +1,57 @@ +[ + { + "category": "``cloudformation``", + "description": "[``botocore``] Adding support for the new parameter \"IncludePropertyValues\" in the CloudFormation DescribeChangeSet API. When this parameter is included, the DescribeChangeSet response will include more detailed information such as before and after values for the resource properties that will change.", + "type": "api-change" + }, + { + "category": "``config``", + "description": "[``botocore``] Updates documentation for AWS Config", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] Modifying request for GetUnfilteredTableMetadata for view-related fields.", + "type": "api-change" + }, + { + "category": "``healthlake``", + "description": "[``botocore``] Added new CREATE_FAILED status for data stores. Added new errorCause to DescribeFHIRDatastore API and ListFHIRDatastores API response for additional insights into data store creation and deletion workflows.", + "type": "api-change" + }, + { + "category": "``iotfleethub``", + "description": "[``botocore``] Documentation updates for AWS IoT Fleet Hub to clarify that Fleet Hub supports organization instance of IAM Identity Center.", + "type": "api-change" + }, + { + "category": "``kms``", + "description": "[``botocore``] This feature supports the ability to specify a custom rotation period for automatic key rotations, the ability to perform on-demand key rotations, and visibility into your key material rotations.", + "type": "api-change" + }, + { + "category": "``mediatailor``", + "description": "[``botocore``] Added InsertionMode to PlaybackConfigurations. This setting controls whether players can use stitched or guided ad insertion. The default for players that do not specify an insertion mode is stitched.", + "type": "api-change" + }, + { + "category": "``neptune-graph``", + "description": "[``botocore``] Update to API documentation to resolve customer reported issues.", + "type": "api-change" + }, + { + "category": "``outposts``", + "description": "[``botocore``] This release adds EXPEDITORS as a valid shipment carrier.", + "type": "api-change" + }, + { + "category": "``redshift``", + "description": "[``botocore``] Adds support for Amazon Redshift DescribeClusterSnapshots API to include Snapshot ARN response field.", + "type": "api-change" + }, + { + "category": "``transfer``", + "description": "[``botocore``] This change releases support for importing self signed certificates to the Transfer Family for sending outbound file transfers over TLS/HTTPS.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b1adbdc1eb..56b6e38f45 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,22 @@ CHANGELOG ========= +1.34.84 +======= + +* api-change:``cloudformation``: [``botocore``] Adding support for the new parameter "IncludePropertyValues" in the CloudFormation DescribeChangeSet API. When this parameter is included, the DescribeChangeSet response will include more detailed information such as before and after values for the resource properties that will change. +* api-change:``config``: [``botocore``] Updates documentation for AWS Config +* api-change:``glue``: [``botocore``] Modifying request for GetUnfilteredTableMetadata for view-related fields. +* api-change:``healthlake``: [``botocore``] Added new CREATE_FAILED status for data stores. Added new errorCause to DescribeFHIRDatastore API and ListFHIRDatastores API response for additional insights into data store creation and deletion workflows. +* api-change:``iotfleethub``: [``botocore``] Documentation updates for AWS IoT Fleet Hub to clarify that Fleet Hub supports organization instance of IAM Identity Center. +* api-change:``kms``: [``botocore``] This feature supports the ability to specify a custom rotation period for automatic key rotations, the ability to perform on-demand key rotations, and visibility into your key material rotations. +* api-change:``mediatailor``: [``botocore``] Added InsertionMode to PlaybackConfigurations. This setting controls whether players can use stitched or guided ad insertion. The default for players that do not specify an insertion mode is stitched. +* api-change:``neptune-graph``: [``botocore``] Update to API documentation to resolve customer reported issues. +* api-change:``outposts``: [``botocore``] This release adds EXPEDITORS as a valid shipment carrier. +* api-change:``redshift``: [``botocore``] Adds support for Amazon Redshift DescribeClusterSnapshots API to include Snapshot ARN response field. +* api-change:``transfer``: [``botocore``] This change releases support for importing self signed certificates to the Transfer Family for sending outbound file transfers over TLS/HTTPS. + + 1.34.83 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index a682554340..f62f64cba1 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.83' +__version__ = '1.34.84' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 0837facb6c..8949f7ea4c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.83,<1.35.0 + botocore>=1.34.84,<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 e711039aa5..dad38786dc 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.83,<1.35.0', + 'botocore>=1.34.84,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]