diff --git a/.changes/1.34.65.json b/.changes/1.34.65.json new file mode 100644 index 0000000000..4d23e14846 --- /dev/null +++ b/.changes/1.34.65.json @@ -0,0 +1,32 @@ +[ + { + "category": "``cloudformation``", + "description": "[``botocore``] This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed.", + "type": "api-change" + }, + { + "category": "``kms``", + "description": "[``botocore``] Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy", + "type": "api-change" + }, + { + "category": "``mediatailor``", + "description": "[``botocore``] This release adds support to allow customers to show different content within a channel depending on metadata associated with the viewer.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Fix two issues with response root node names.", + "type": "api-change" + }, + { + "category": "``timestream-query``", + "description": "[``botocore``] Documentation updates, March 2024", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c06342c874..9f1884d37a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.34.65 +======= + +* api-change:``cloudformation``: [``botocore``] This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed. +* api-change:``kms``: [``botocore``] Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy +* api-change:``mediatailor``: [``botocore``] This release adds support to allow customers to show different content within a channel depending on metadata associated with the viewer. +* api-change:``rds``: [``botocore``] This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations. +* api-change:``s3``: [``botocore``] Fix two issues with response root node names. +* api-change:``timestream-query``: [``botocore``] Documentation updates, March 2024 + + 1.34.64 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 1754d2defa..259535a4ef 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.64' +__version__ = '1.34.65' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 1f537b778a..dfeb459d6d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.64,<1.35.0 + botocore>=1.34.65,<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 ca67a4f555..1a6d30a76c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.64,<1.35.0', + 'botocore>=1.34.65,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]