diff --git a/.changes/1.34.79.json b/.changes/1.34.79.json new file mode 100644 index 0000000000..bd912da11a --- /dev/null +++ b/.changes/1.34.79.json @@ -0,0 +1,17 @@ +[ + { + "category": "``quicksight``", + "description": "[``botocore``] Adding IAMIdentityCenterInstanceArn parameter to CreateAccountSubscription", + "type": "api-change" + }, + { + "category": "``resource-groups``", + "description": "[``botocore``] Added a new QueryErrorCode RESOURCE_TYPE_NOT_SUPPORTED that is returned by the ListGroupResources operation if the group query contains unsupported resource types.", + "type": "api-change" + }, + { + "category": "``verifiedpermissions``", + "description": "[``botocore``] Adding BatchIsAuthorizedWithToken API which supports multiple authorization requests against a PolicyStore given a bearer token.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-quicksight-13115.json b/.changes/next-release/api-change-quicksight-13115.json deleted file mode 100644 index 9b608a13d2..0000000000 --- a/.changes/next-release/api-change-quicksight-13115.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``quicksight``", - "description": "[``botocore``] Adding IAMIdentityCenterInstanceArn parameter to CreateAccountSubscription" -} diff --git a/.changes/next-release/api-change-resourcegroups-84791.json b/.changes/next-release/api-change-resourcegroups-84791.json deleted file mode 100644 index 1f71456214..0000000000 --- a/.changes/next-release/api-change-resourcegroups-84791.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``resource-groups``", - "description": "[``botocore``] Added a new QueryErrorCode RESOURCE_TYPE_NOT_SUPPORTED that is returned by the ListGroupResources operation if the group query contains unsupported resource types." -} diff --git a/.changes/next-release/api-change-verifiedpermissions-10876.json b/.changes/next-release/api-change-verifiedpermissions-10876.json deleted file mode 100644 index ae317b6437..0000000000 --- a/.changes/next-release/api-change-verifiedpermissions-10876.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``verifiedpermissions``", - "description": "[``botocore``] Adding BatchIsAuthorizedWithToken API which supports multiple authorization requests against a PolicyStore given a bearer token." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 678ee77469..72bfa1a10f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.34.79 +======= + +* api-change:``quicksight``: [``botocore``] Adding IAMIdentityCenterInstanceArn parameter to CreateAccountSubscription +* api-change:``resource-groups``: [``botocore``] Added a new QueryErrorCode RESOURCE_TYPE_NOT_SUPPORTED that is returned by the ListGroupResources operation if the group query contains unsupported resource types. +* api-change:``verifiedpermissions``: [``botocore``] Adding BatchIsAuthorizedWithToken API which supports multiple authorization requests against a PolicyStore given a bearer token. + + 1.34.78 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 6687c862b5..fd75f90281 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.78' +__version__ = '1.34.79' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index b67a78a850..0d2094da48 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.78,<1.35.0 + botocore>=1.34.79,<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 e685ab2ab5..bae1dafbe6 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.78,<1.35.0', + 'botocore>=1.34.79,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]