diff --git a/.changes/1.35.5.json b/.changes/1.35.5.json new file mode 100644 index 0000000000..2fe1c3b71f --- /dev/null +++ b/.changes/1.35.5.json @@ -0,0 +1,32 @@ +[ + { + "category": "``bedrock-agent``", + "description": "[``botocore``] Releasing the support for Action User Confirmation.", + "type": "api-change" + }, + { + "category": "``bedrock-agent-runtime``", + "description": "[``botocore``] Releasing the support for Action User Confirmation.", + "type": "api-change" + }, + { + "category": "``codebuild``", + "description": "[``botocore``] Added support for the MAC_ARM environment type for CodeBuild fleets.", + "type": "api-change" + }, + { + "category": "``organizations``", + "description": "[``botocore``] Releasing minor partitional endpoint updates.", + "type": "api-change" + }, + { + "category": "``qbusiness``", + "description": "[``botocore``] Amazon QBusiness: Enable support for SAML and OIDC federation through AWS IAM Identity Provider integration.", + "type": "api-change" + }, + { + "category": "``supplychain``", + "description": "[``botocore``] Update API documentation to clarify the event SLA as well as the data model expectations", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f56487bbf1..7aa80096da 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.35.5 +====== + +* api-change:``bedrock-agent``: [``botocore``] Releasing the support for Action User Confirmation. +* api-change:``bedrock-agent-runtime``: [``botocore``] Releasing the support for Action User Confirmation. +* api-change:``codebuild``: [``botocore``] Added support for the MAC_ARM environment type for CodeBuild fleets. +* api-change:``organizations``: [``botocore``] Releasing minor partitional endpoint updates. +* api-change:``qbusiness``: [``botocore``] Amazon QBusiness: Enable support for SAML and OIDC federation through AWS IAM Identity Provider integration. +* api-change:``supplychain``: [``botocore``] Update API documentation to clarify the event SLA as well as the data model expectations + + 1.35.4 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 4bf0a865f6..d8fff937d9 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.35.4' +__version__ = '1.35.5' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index ebf22448a7..300b714bb8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.4,<1.36.0 + botocore>=1.35.5,<1.36.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 9d3376b500..651ab91fb8 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.4,<1.36.0', + 'botocore>=1.35.5,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]