diff --git a/.changes/1.28.65.json b/.changes/1.28.65.json new file mode 100644 index 0000000000..0c6857d86d --- /dev/null +++ b/.changes/1.28.65.json @@ -0,0 +1,42 @@ +[ + { + "category": "``codepipeline``", + "description": "[``botocore``] Add retryMode ALL_ACTIONS to RetryStageExecution API that retries a failed stage starting from first action in the stage", + "type": "api-change" + }, + { + "category": "``discovery``", + "description": "[``botocore``] This release introduces three new APIs: StartBatchDeleteConfigurationTask, DescribeBatchDeleteConfigurationTask, and BatchDeleteAgents.", + "type": "api-change" + }, + { + "category": "``ecs``", + "description": "[``botocore``] Documentation only updates to address Amazon ECS tickets.", + "type": "api-change" + }, + { + "category": "``globalaccelerator``", + "description": "[``botocore``] Fixed error where ListCustomRoutingEndpointGroups did not have a paginator", + "type": "api-change" + }, + { + "category": "``guardduty``", + "description": "[``botocore``] Add domainWithSuffix finding field to dnsRequestAction", + "type": "api-change" + }, + { + "category": "``kafka``", + "description": "[``botocore``] AWS Managed Streaming for Kafka is launching MSK Replicator, a new feature that enables customers to reliably replicate data across Amazon MSK clusters in same or different AWS regions. You can now use SDK to create, list, describe, delete, update, and manage tags of MSK Replicators.", + "type": "api-change" + }, + { + "category": "``route53-recovery-cluster``", + "description": "[``botocore``] Adds Owner field to ListRoutingControls API.", + "type": "api-change" + }, + { + "category": "``route53-recovery-control-config``", + "description": "[``botocore``] Adds permissions for GetResourcePolicy to support returning details about AWS Resource Access Manager resource policies for shared resources.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d561e77bd1..84c629109a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.28.65 +======= + +* api-change:``codepipeline``: [``botocore``] Add retryMode ALL_ACTIONS to RetryStageExecution API that retries a failed stage starting from first action in the stage +* api-change:``discovery``: [``botocore``] This release introduces three new APIs: StartBatchDeleteConfigurationTask, DescribeBatchDeleteConfigurationTask, and BatchDeleteAgents. +* api-change:``ecs``: [``botocore``] Documentation only updates to address Amazon ECS tickets. +* api-change:``globalaccelerator``: [``botocore``] Fixed error where ListCustomRoutingEndpointGroups did not have a paginator +* api-change:``guardduty``: [``botocore``] Add domainWithSuffix finding field to dnsRequestAction +* api-change:``kafka``: [``botocore``] AWS Managed Streaming for Kafka is launching MSK Replicator, a new feature that enables customers to reliably replicate data across Amazon MSK clusters in same or different AWS regions. You can now use SDK to create, list, describe, delete, update, and manage tags of MSK Replicators. +* api-change:``route53-recovery-cluster``: [``botocore``] Adds Owner field to ListRoutingControls API. +* api-change:``route53-recovery-control-config``: [``botocore``] Adds permissions for GetResourcePolicy to support returning details about AWS Resource Access Manager resource policies for shared resources. + + 1.28.64 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index fb69ebee11..cdf6325b8a 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.64' +__version__ = '1.28.65' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index be705caeb6..dff52435e3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.64,<1.32.0 + botocore>=1.31.65,<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 242f60d749..c55c9bd7a9 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.64,<1.32.0', + 'botocore>=1.31.65,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.7.0,<0.8.0', ]