diff --git a/.changes/1.34.62.json b/.changes/1.34.62.json new file mode 100644 index 0000000000..19be6a3ad8 --- /dev/null +++ b/.changes/1.34.62.json @@ -0,0 +1,17 @@ +[ + { + "category": "``ivs-realtime``", + "description": "[``botocore``] adds support for multiple new composition layout configuration options (grid, pip)", + "type": "api-change" + }, + { + "category": "``kinesisanalyticsv2``", + "description": "[``botocore``] Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-ivsrealtime-97478.json b/.changes/next-release/api-change-ivsrealtime-97478.json deleted file mode 100644 index fe3764cb8a..0000000000 --- a/.changes/next-release/api-change-ivsrealtime-97478.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ivs-realtime``", - "description": "[``botocore``] adds support for multiple new composition layout configuration options (grid, pip)" -} diff --git a/.changes/next-release/api-change-kinesisanalyticsv2-54625.json b/.changes/next-release/api-change-kinesisanalyticsv2-54625.json deleted file mode 100644 index 4cfb7f7012..0000000000 --- a/.changes/next-release/api-change-kinesisanalyticsv2-54625.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``kinesisanalyticsv2``", - "description": "[``botocore``] Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs." -} diff --git a/.changes/next-release/api-change-s3-12701.json b/.changes/next-release/api-change-s3-12701.json deleted file mode 100644 index 652fd01a55..0000000000 --- a/.changes/next-release/api-change-s3-12701.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``s3``", - "description": "[``botocore``] This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT)." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 24660e3bf9..ce07393d2e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.34.62 +======= + +* api-change:``ivs-realtime``: [``botocore``] adds support for multiple new composition layout configuration options (grid, pip) +* api-change:``kinesisanalyticsv2``: [``botocore``] Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs. +* api-change:``s3``: [``botocore``] This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT). + + 1.34.61 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 42feeee4cc..1b3f3364df 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.61' +__version__ = '1.34.62' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 4abe714760..395fded369 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.61,<1.35.0 + botocore>=1.34.62,<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 4fc1b9889e..c0cf21c8c3 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.61,<1.35.0', + 'botocore>=1.34.62,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]