diff --git a/.changes/1.28.55.json b/.changes/1.28.55.json new file mode 100644 index 0000000000..d40497cc80 --- /dev/null +++ b/.changes/1.28.55.json @@ -0,0 +1,47 @@ +[ + { + "category": "``appintegrations``", + "description": "[``botocore``] The Amazon AppIntegrations service adds a set of APIs (in preview) to manage third party applications to be used in Amazon Connect agent workspace.", + "type": "api-change" + }, + { + "category": "``apprunner``", + "description": "[``botocore``] This release allows an App Runner customer to specify a custom source directory to run the build & start command. This change allows App Runner to support monorepo based repositories", + "type": "api-change" + }, + { + "category": "``codedeploy``", + "description": "[``botocore``] CodeDeploy now supports In-place and Blue/Green EC2 deployments with multiple Classic Load Balancers and multiple Target Groups.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] This release updates a set of Amazon Connect APIs that provides the ability to integrate third party applications in the Amazon Connect agent workspace.", + "type": "api-change" + }, + { + "category": "``dynamodb``", + "description": "[``botocore``] Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] The release includes AWS verified access to support FIPs compliance in North America regions", + "type": "api-change" + }, + { + "category": "``lakeformation``", + "description": "[``botocore``] This release adds three new API support \"CreateLakeFormationOptIn\", \"DeleteLakeFormationOptIn\" and \"ListLakeFormationOptIns\", and also updates the corresponding documentation.", + "type": "api-change" + }, + { + "category": "``pinpoint``", + "description": "[``botocore``] Update documentation for RemoveAttributes to more accurately reflect its behavior when attributes are deleted.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d2fd76ecee..d05acdd54a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,20 @@ CHANGELOG ========= +1.28.55 +======= + +* api-change:``appintegrations``: [``botocore``] The Amazon AppIntegrations service adds a set of APIs (in preview) to manage third party applications to be used in Amazon Connect agent workspace. +* api-change:``apprunner``: [``botocore``] This release allows an App Runner customer to specify a custom source directory to run the build & start command. This change allows App Runner to support monorepo based repositories +* api-change:``codedeploy``: [``botocore``] CodeDeploy now supports In-place and Blue/Green EC2 deployments with multiple Classic Load Balancers and multiple Target Groups. +* api-change:``connect``: [``botocore``] This release updates a set of Amazon Connect APIs that provides the ability to integrate third party applications in the Amazon Connect agent workspace. +* api-change:``dynamodb``: [``botocore``] Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table +* api-change:``ec2``: [``botocore``] The release includes AWS verified access to support FIPs compliance in North America regions +* api-change:``lakeformation``: [``botocore``] This release adds three new API support "CreateLakeFormationOptIn", "DeleteLakeFormationOptIn" and "ListLakeFormationOptIns", and also updates the corresponding documentation. +* api-change:``pinpoint``: [``botocore``] Update documentation for RemoveAttributes to more accurately reflect its behavior when attributes are deleted. +* api-change:``s3``: [``botocore``] This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK. + + 1.28.54 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index ce6a5ae220..000bcfe621 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.54' +__version__ = '1.28.55' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index a2506ffd0d..df3820c1a5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,9 +3,9 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.54,<1.32.0 + botocore>=1.31.55,<1.32.0 jmespath>=0.7.1,<2.0.0 - s3transfer>=0.6.0,<0.7.0 + s3transfer>=0.7.0,<0.8.0 [options.extras_require] crt = botocore[crt]>=1.21.0,<2.0a0 diff --git a/setup.py b/setup.py index 5d7fd3cff1..9ea1c0fff4 100644 --- a/setup.py +++ b/setup.py @@ -13,9 +13,9 @@ requires = [ - 'botocore>=1.31.54,<1.32.0', + 'botocore>=1.31.55,<1.32.0', 'jmespath>=0.7.1,<2.0.0', - 's3transfer>=0.6.0,<0.7.0', + 's3transfer>=0.7.0,<0.8.0', ]