diff --git a/.changes/1.34.106.json b/.changes/1.34.106.json new file mode 100644 index 0000000000..f411a7bd6c --- /dev/null +++ b/.changes/1.34.106.json @@ -0,0 +1,32 @@ +[ + { + "category": "``bedrock-agent-runtime``", + "description": "[``botocore``] Updating Bedrock Knowledge Base Metadata & Filters feature with two new filters listContains and stringContains", + "type": "api-change" + }, + { + "category": "``codebuild``", + "description": "[``botocore``] CodeBuild Reserved Capacity VPC Support", + "type": "api-change" + }, + { + "category": "``datasync``", + "description": "[``botocore``] Task executions now display a CANCELLING status when an execution is in the process of being cancelled.", + "type": "api-change" + }, + { + "category": "``grafana``", + "description": "[``botocore``] This release adds new ServiceAccount and ServiceAccountToken APIs.", + "type": "api-change" + }, + { + "category": "``medical-imaging``", + "description": "[``botocore``] Added support for importing medical imaging data from Amazon S3 buckets across accounts and regions.", + "type": "api-change" + }, + { + "category": "``securityhub``", + "description": "[``botocore``] Documentation-only update for AWS Security Hub", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 75f941797c..cf12bdce1f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.34.106 +======== + +* api-change:``bedrock-agent-runtime``: [``botocore``] Updating Bedrock Knowledge Base Metadata & Filters feature with two new filters listContains and stringContains +* api-change:``codebuild``: [``botocore``] CodeBuild Reserved Capacity VPC Support +* api-change:``datasync``: [``botocore``] Task executions now display a CANCELLING status when an execution is in the process of being cancelled. +* api-change:``grafana``: [``botocore``] This release adds new ServiceAccount and ServiceAccountToken APIs. +* api-change:``medical-imaging``: [``botocore``] Added support for importing medical imaging data from Amazon S3 buckets across accounts and regions. +* api-change:``securityhub``: [``botocore``] Documentation-only update for AWS Security Hub + + 1.34.105 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 3de680a60e..e527ecf0f3 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.105' +__version__ = '1.34.106' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index d623a43c45..cbf7b940d4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.105,<1.35.0 + botocore>=1.34.106,<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 0b3385048d..799a820854 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.105,<1.35.0', + 'botocore>=1.34.106,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]