diff --git a/.changes/1.28.61.json b/.changes/1.28.61.json new file mode 100644 index 0000000000..9910122406 --- /dev/null +++ b/.changes/1.28.61.json @@ -0,0 +1,32 @@ +[ + { + "category": "``omics``", + "description": "[``botocore``] Add Etag Support for Omics Storage in ListReadSets and GetReadSetMetadata API", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Updates Amazon RDS documentation for corrections and minor improvements.", + "type": "api-change" + }, + { + "category": "``route53``", + "description": "[``botocore``] Add hostedzonetype filter to ListHostedZones API.", + "type": "api-change" + }, + { + "category": "``securityhub``", + "description": "[``botocore``] Added new resource detail objects to ASFF, including resources for AwsEventsEventbus, AwsEventsEndpoint, AwsDmsEndpoint, AwsDmsReplicationTask, AwsDmsReplicationInstance, AwsRoute53HostedZone, and AwsMskCluster", + "type": "api-change" + }, + { + "category": "``storagegateway``", + "description": "[``botocore``] Add SoftwareVersion to response of DescribeGatewayInformation.", + "type": "api-change" + }, + { + "category": "``workspaces``", + "description": "[``botocore``] This release introduces Manage applications. This feature allows users to manage their WorkSpaces applications by associating or disassociating their WorkSpaces with applications. The DescribeWorkspaces API will now additionally return OperatingSystemName in its responses.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0a5bfe0cd2..780a03c138 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.28.61 +======= + +* api-change:``omics``: [``botocore``] Add Etag Support for Omics Storage in ListReadSets and GetReadSetMetadata API +* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for corrections and minor improvements. +* api-change:``route53``: [``botocore``] Add hostedzonetype filter to ListHostedZones API. +* api-change:``securityhub``: [``botocore``] Added new resource detail objects to ASFF, including resources for AwsEventsEventbus, AwsEventsEndpoint, AwsDmsEndpoint, AwsDmsReplicationTask, AwsDmsReplicationInstance, AwsRoute53HostedZone, and AwsMskCluster +* api-change:``storagegateway``: [``botocore``] Add SoftwareVersion to response of DescribeGatewayInformation. +* api-change:``workspaces``: [``botocore``] This release introduces Manage applications. This feature allows users to manage their WorkSpaces applications by associating or disassociating their WorkSpaces with applications. The DescribeWorkspaces API will now additionally return OperatingSystemName in its responses. + + 1.28.60 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index b948c0ca6f..ddb8ad31ca 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.60' +__version__ = '1.28.61' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index e6ffc8f595..a4dfebdb3e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.60,<1.32.0 + botocore>=1.31.61,<1.32.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.7.0,<0.8.0 diff --git a/setup.py b/setup.py index 36cef2594f..f74eeef796 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.60,<1.32.0', + 'botocore>=1.31.61,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.7.0,<0.8.0', ]