diff --git a/.changes/1.34.83.json b/.changes/1.34.83.json new file mode 100644 index 0000000000..16dac90482 --- /dev/null +++ b/.changes/1.34.83.json @@ -0,0 +1,52 @@ +[ + { + "category": "``batch``", + "description": "[``botocore``] This release adds the task properties field to attempt details and the name field on EKS container detail.", + "type": "api-change" + }, + { + "category": "``cloudfront``", + "description": "[``botocore``] CloudFront origin access control extends support to AWS Lambda function URLs and AWS Elemental MediaPackage v2 origins.", + "type": "api-change" + }, + { + "category": "``cloudwatch``", + "description": "[``botocore``] This release adds support for Metric Characteristics for CloudWatch Anomaly Detection. Anomaly Detector now takes Metric Characteristics object with Periodic Spikes boolean field that tells Anomaly Detection that spikes that repeat at the same time every week are part of the expected pattern.", + "type": "api-change" + }, + { + "category": "``codebuild``", + "description": "[``botocore``] Support access tokens for Bitbucket sources", + "type": "api-change" + }, + { + "category": "``iam``", + "description": "[``botocore``] For CreateOpenIDConnectProvider API, the ThumbprintList parameter is no longer required.", + "type": "api-change" + }, + { + "category": "``medialive``", + "description": "[``botocore``] AWS Elemental MediaLive introduces workflow monitor, a new feature that enables the visualization and monitoring of your media workflows. Create signal maps of your existing workflows and monitor them by creating notification and monitoring template groups.", + "type": "api-change" + }, + { + "category": "``omics``", + "description": "[``botocore``] This release adds support for retrieval of S3 direct access metadata on sequence stores and read sets, and adds support for SHA256up and SHA512up HealthOmics ETags.", + "type": "api-change" + }, + { + "category": "``pipes``", + "description": "[``botocore``] LogConfiguration ARN validation fixes", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Updates Amazon RDS documentation for Standard Edition 2 support in RDS Custom for Oracle.", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "[``botocore``] Documentation updates for Amazon S3-control.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a94ed201f4..b1adbdc1eb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,21 @@ CHANGELOG ========= +1.34.83 +======= + +* api-change:``batch``: [``botocore``] This release adds the task properties field to attempt details and the name field on EKS container detail. +* api-change:``cloudfront``: [``botocore``] CloudFront origin access control extends support to AWS Lambda function URLs and AWS Elemental MediaPackage v2 origins. +* api-change:``cloudwatch``: [``botocore``] This release adds support for Metric Characteristics for CloudWatch Anomaly Detection. Anomaly Detector now takes Metric Characteristics object with Periodic Spikes boolean field that tells Anomaly Detection that spikes that repeat at the same time every week are part of the expected pattern. +* api-change:``codebuild``: [``botocore``] Support access tokens for Bitbucket sources +* api-change:``iam``: [``botocore``] For CreateOpenIDConnectProvider API, the ThumbprintList parameter is no longer required. +* api-change:``medialive``: [``botocore``] AWS Elemental MediaLive introduces workflow monitor, a new feature that enables the visualization and monitoring of your media workflows. Create signal maps of your existing workflows and monitor them by creating notification and monitoring template groups. +* api-change:``omics``: [``botocore``] This release adds support for retrieval of S3 direct access metadata on sequence stores and read sets, and adds support for SHA256up and SHA512up HealthOmics ETags. +* api-change:``pipes``: [``botocore``] LogConfiguration ARN validation fixes +* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for Standard Edition 2 support in RDS Custom for Oracle. +* api-change:``s3control``: [``botocore``] Documentation updates for Amazon S3-control. + + 1.34.82 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 109b421ef3..a682554340 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.82' +__version__ = '1.34.83' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 0046dddef4..0837facb6c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.82,<1.35.0 + botocore>=1.34.83,<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 b85ba913f6..e711039aa5 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.82,<1.35.0', + 'botocore>=1.34.83,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]