diff --git a/.changes/1.28.39.json b/.changes/1.28.39.json new file mode 100644 index 0000000000..cac43378f7 --- /dev/null +++ b/.changes/1.28.39.json @@ -0,0 +1,62 @@ +[ + { + "category": "``chime-sdk-media-pipelines``", + "description": "[``botocore``] This release adds support for feature Voice Enhancement for Call Recording as part of Amazon Chime SDK call analytics.", + "type": "api-change" + }, + { + "category": "``cloudhsm``", + "description": "[``botocore``] Deprecating CloudHSM Classic API Service.", + "type": "api-change" + }, + { + "category": "``connectcampaigns``", + "description": "[``botocore``] Amazon Connect outbound campaigns has launched agentless dialing mode which enables customers to make automated outbound calls without agent engagement. This release updates three of the campaign management API's to support the new agentless dialing mode and the new dialing capacity field.", + "type": "api-change" + }, + { + "category": "``connectparticipant``", + "description": "[``botocore``] Amazon Connect Participant Service adds the ability to get a view resource using a view token, which is provided in a participant message, with the release of the DescribeView API.", + "type": "api-change" + }, + { + "category": "``customer-profiles``", + "description": "[``botocore``] Adds sensitive trait to various shapes in Customer Profiles API model.", + "type": "api-change" + }, + { + "category": "``ecs``", + "description": "[``botocore``] This release adds support for an account-level setting that you can use to configure the number of days for AWS Fargate task retirement.", + "type": "api-change" + }, + { + "category": "``grafana``", + "description": "[``botocore``] Marking SAML RoleValues attribute as sensitive and updating VpcConfiguration attributes to match documentation.", + "type": "api-change" + }, + { + "category": "``health``", + "description": "[``botocore``] Adds new API DescribeEntityAggregatesForOrganization that retrieves entity aggregates across your organization. Also adds support for resource status filtering in DescribeAffectedEntitiesForOrganization, resource status aggregates in the DescribeEntityAggregates response, and new resource statuses.", + "type": "api-change" + }, + { + "category": "``ivs``", + "description": "[``botocore``] Updated \"type\" description for CreateChannel, UpdateChannel, Channel, and ChannelSummary.", + "type": "api-change" + }, + { + "category": "``kafkaconnect``", + "description": "[``botocore``] Minor model changes for Kafka Connect as well as endpoint updates.", + "type": "api-change" + }, + { + "category": "``payment-cryptography-data``", + "description": "[``botocore``] Make KeyCheckValue field optional when using asymmetric keys as Key Check Values typically only apply to symmetric keys", + "type": "api-change" + }, + { + "category": "``sagemaker-runtime``", + "description": "[``botocore``] Update sagemaker-runtime client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1ff9621264..4592e1990a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,23 @@ CHANGELOG ========= +1.28.39 +======= + +* api-change:``chime-sdk-media-pipelines``: [``botocore``] This release adds support for feature Voice Enhancement for Call Recording as part of Amazon Chime SDK call analytics. +* api-change:``cloudhsm``: [``botocore``] Deprecating CloudHSM Classic API Service. +* api-change:``connectcampaigns``: [``botocore``] Amazon Connect outbound campaigns has launched agentless dialing mode which enables customers to make automated outbound calls without agent engagement. This release updates three of the campaign management API's to support the new agentless dialing mode and the new dialing capacity field. +* api-change:``connectparticipant``: [``botocore``] Amazon Connect Participant Service adds the ability to get a view resource using a view token, which is provided in a participant message, with the release of the DescribeView API. +* api-change:``customer-profiles``: [``botocore``] Adds sensitive trait to various shapes in Customer Profiles API model. +* api-change:``ecs``: [``botocore``] This release adds support for an account-level setting that you can use to configure the number of days for AWS Fargate task retirement. +* api-change:``grafana``: [``botocore``] Marking SAML RoleValues attribute as sensitive and updating VpcConfiguration attributes to match documentation. +* api-change:``health``: [``botocore``] Adds new API DescribeEntityAggregatesForOrganization that retrieves entity aggregates across your organization. Also adds support for resource status filtering in DescribeAffectedEntitiesForOrganization, resource status aggregates in the DescribeEntityAggregates response, and new resource statuses. +* api-change:``ivs``: [``botocore``] Updated "type" description for CreateChannel, UpdateChannel, Channel, and ChannelSummary. +* api-change:``kafkaconnect``: [``botocore``] Minor model changes for Kafka Connect as well as endpoint updates. +* api-change:``payment-cryptography-data``: [``botocore``] Make KeyCheckValue field optional when using asymmetric keys as Key Check Values typically only apply to symmetric keys +* api-change:``sagemaker-runtime``: [``botocore``] Update sagemaker-runtime client to latest version + + 1.28.38 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index be51626f3a..631707bf58 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.38' +__version__ = '1.28.39' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 695dba8c6f..f51a3a7352 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.38,<1.32.0 + botocore>=1.31.39,<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 91c605bc0e..64347255cb 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.38,<1.32.0', + 'botocore>=1.31.39,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]