diff --git a/.changes/1.32.62.json b/.changes/1.32.62.json new file mode 100644 index 000000000000..a803ad48d10f --- /dev/null +++ b/.changes/1.32.62.json @@ -0,0 +1,17 @@ +[ + { + "category": "``ivs-realtime``", + "description": "adds support for multiple new composition layout configuration options (grid, pip)", + "type": "api-change" + }, + { + "category": "``kinesisanalyticsv2``", + "description": "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": "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-71102.json b/.changes/next-release/api-change-ivsrealtime-71102.json deleted file mode 100644 index bbda7b78a8c1..000000000000 --- a/.changes/next-release/api-change-ivsrealtime-71102.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ivs-realtime``", - "description": "adds support for multiple new composition layout configuration options (grid, pip)" -} diff --git a/.changes/next-release/api-change-kinesisanalyticsv2-54284.json b/.changes/next-release/api-change-kinesisanalyticsv2-54284.json deleted file mode 100644 index c6a2f253168f..000000000000 --- a/.changes/next-release/api-change-kinesisanalyticsv2-54284.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``kinesisanalyticsv2``", - "description": "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-2340.json b/.changes/next-release/api-change-s3-2340.json deleted file mode 100644 index d27b8f35b305..000000000000 --- a/.changes/next-release/api-change-s3-2340.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``s3``", - "description": "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 eaf67422db34..f11dd1208954 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.32.62 +======= + +* api-change:``ivs-realtime``: adds support for multiple new composition layout configuration options (grid, pip) +* api-change:``kinesisanalyticsv2``: Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs. +* api-change:``s3``: This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT). + + 1.32.61 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index cfab63743bb4..c2edd4d8a384 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.32.61' +__version__ = '1.32.62' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index 524791f1f631..bcca57d103f0 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.32.' # The full version, including alpha/beta/rc tags. -release = '1.32.61' +release = '1.32.62' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index e5b276d4ae31..6019d154838b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.34.61 + botocore==1.34.62 docutils>=0.10,<0.17 s3transfer>=0.10.0,<0.11.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index d5c92e9ec2d3..4b14309a9267 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.34.61', + 'botocore==1.34.62', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',