diff --git a/.changes/1.34.120.json b/.changes/1.34.120.json new file mode 100644 index 0000000000..68a0a3db74 --- /dev/null +++ b/.changes/1.34.120.json @@ -0,0 +1,17 @@ +[ + { + "category": "``globalaccelerator``", + "description": "[``botocore``] This release contains a new optional ip-addresses input field for the update accelerator and update custom routing accelerator apis. This input enables consumers to replace IPv4 addresses on existing accelerators with addresses provided in the input.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] AWS Glue now supports native SaaS connectivity: Salesforce connector available now", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Added new params copySource and key to copyObject API for supporting S3 Access Grants plugin. These changes will not change any of the existing S3 API functionality.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ff9f0ee920..d2547bae77 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.34.120 +======== + +* api-change:``globalaccelerator``: [``botocore``] This release contains a new optional ip-addresses input field for the update accelerator and update custom routing accelerator apis. This input enables consumers to replace IPv4 addresses on existing accelerators with addresses provided in the input. +* api-change:``glue``: [``botocore``] AWS Glue now supports native SaaS connectivity: Salesforce connector available now +* api-change:``s3``: [``botocore``] Added new params copySource and key to copyObject API for supporting S3 Access Grants plugin. These changes will not change any of the existing S3 API functionality. + + 1.34.119 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index ab12812745..e9929bb9e7 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.119' +__version__ = '1.34.120' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 6de383a41a..29043e0501 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.119,<1.35.0 + botocore>=1.34.120,<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 1653e24d29..4a7d12743b 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.119,<1.35.0', + 'botocore>=1.34.120,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]