diff --git a/.changes/1.34.90.json b/.changes/1.34.90.json new file mode 100644 index 0000000000..2f741047e0 --- /dev/null +++ b/.changes/1.34.90.json @@ -0,0 +1,47 @@ +[ + { + "category": "``bedrock``", + "description": "[``botocore``] This release introduces Model Evaluation and Guardrails for Amazon Bedrock.", + "type": "api-change" + }, + { + "category": "``bedrock-agent``", + "description": "[``botocore``] Introducing the ability to create multiple data sources per knowledge base, specify S3 buckets as data sources from external accounts, and exposing levers to define the deletion behavior of the underlying vector store data.", + "type": "api-change" + }, + { + "category": "``bedrock-agent-runtime``", + "description": "[``botocore``] This release introduces zero-setup file upload support for the RetrieveAndGenerate API. This allows you to chat with your data without setting up a Knowledge Base.", + "type": "api-change" + }, + { + "category": "``bedrock-runtime``", + "description": "[``botocore``] This release introduces Guardrails for Amazon Bedrock.", + "type": "api-change" + }, + { + "category": "``ce``", + "description": "[``botocore``] Added additional metadata that might be applicable to your reservation recommendations.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] This release introduces EC2 AMI Deregistration Protection, a new AMI property that can be enabled by customers to protect an AMI against an unintended deregistration. This release also enables the AMI owners to view the AMI 'LastLaunchedTime' in DescribeImages API.", + "type": "api-change" + }, + { + "category": "``pi``", + "description": "[``botocore``] Clarifies how aggregation works for GetResourceMetrics in the Performance Insights API.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Fix the example ARN for ModifyActivityStreamRequest", + "type": "api-change" + }, + { + "category": "``workspaces-web``", + "description": "[``botocore``] Added InstanceType and MaxConcurrentSessions parameters on CreatePortal and UpdatePortal Operations as well as the ability to read Customer Managed Key & Additional Encryption Context parameters on supported resources (Portal, BrowserSettings, UserSettings, IPAccessSettings)", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8477c261d7..3bb44077d4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,20 @@ CHANGELOG ========= +1.34.90 +======= + +* api-change:``bedrock``: [``botocore``] This release introduces Model Evaluation and Guardrails for Amazon Bedrock. +* api-change:``bedrock-agent``: [``botocore``] Introducing the ability to create multiple data sources per knowledge base, specify S3 buckets as data sources from external accounts, and exposing levers to define the deletion behavior of the underlying vector store data. +* api-change:``bedrock-agent-runtime``: [``botocore``] This release introduces zero-setup file upload support for the RetrieveAndGenerate API. This allows you to chat with your data without setting up a Knowledge Base. +* api-change:``bedrock-runtime``: [``botocore``] This release introduces Guardrails for Amazon Bedrock. +* api-change:``ce``: [``botocore``] Added additional metadata that might be applicable to your reservation recommendations. +* api-change:``ec2``: [``botocore``] This release introduces EC2 AMI Deregistration Protection, a new AMI property that can be enabled by customers to protect an AMI against an unintended deregistration. This release also enables the AMI owners to view the AMI 'LastLaunchedTime' in DescribeImages API. +* api-change:``pi``: [``botocore``] Clarifies how aggregation works for GetResourceMetrics in the Performance Insights API. +* api-change:``rds``: [``botocore``] Fix the example ARN for ModifyActivityStreamRequest +* api-change:``workspaces-web``: [``botocore``] Added InstanceType and MaxConcurrentSessions parameters on CreatePortal and UpdatePortal Operations as well as the ability to read Customer Managed Key & Additional Encryption Context parameters on supported resources (Portal, BrowserSettings, UserSettings, IPAccessSettings) + + 1.34.89 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index e7a591bc99..438ed180f1 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.89' +__version__ = '1.34.90' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index cc1f538c05..d87409446b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.89,<1.35.0 + botocore>=1.34.90,<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 825c6642b4..bd205e4f9a 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.89,<1.35.0', + 'botocore>=1.34.90,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]