From 5d4843db6a2dc2e02f582cafd383a05e495d40d7 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Thu, 6 Feb 2025 19:03:47 +0000 Subject: [PATCH] Bumping version to 1.36.15 --- .changes/1.36.15.json | 27 +++++++++++++++++++ .../api-change-cloudformation-88161.json | 5 ---- .../api-change-connectcases-29080.json | 5 ---- .../api-change-costoptimizationhub-3541.json | 5 ---- .../next-release/api-change-s3-85095.json | 5 ---- .../enhancement-Eventsteam-78927.json | 5 ---- CHANGELOG.rst | 10 +++++++ botocore/__init__.py | 2 +- docs/source/conf.py | 2 +- 9 files changed, 39 insertions(+), 27 deletions(-) create mode 100644 .changes/1.36.15.json delete mode 100644 .changes/next-release/api-change-cloudformation-88161.json delete mode 100644 .changes/next-release/api-change-connectcases-29080.json delete mode 100644 .changes/next-release/api-change-costoptimizationhub-3541.json delete mode 100644 .changes/next-release/api-change-s3-85095.json delete mode 100644 .changes/next-release/enhancement-Eventsteam-78927.json diff --git a/.changes/1.36.15.json b/.changes/1.36.15.json new file mode 100644 index 0000000000..bea4c31664 --- /dev/null +++ b/.changes/1.36.15.json @@ -0,0 +1,27 @@ +[ + { + "category": "``cloudformation``", + "description": "We added 5 new stack refactoring APIs: CreateStackRefactor, ExecuteStackRefactor, ListStackRefactors, DescribeStackRefactor, ListStackRefactorActions.", + "type": "api-change" + }, + { + "category": "``connectcases``", + "description": "This release adds the ability to conditionally require fields on a template. Check public documentation for more information.", + "type": "api-change" + }, + { + "category": "``cost-optimization-hub``", + "description": "This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon Auto Scaling Groups, including those with single and mixed instance types.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.", + "type": "api-change" + }, + { + "category": "Eventsteam", + "description": "The SDK no longer validates payload size for eventstreams. This is to facilitate varying payload requirements across AWS services.", + "type": "enhancement" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-cloudformation-88161.json b/.changes/next-release/api-change-cloudformation-88161.json deleted file mode 100644 index 8ea37961b9..0000000000 --- a/.changes/next-release/api-change-cloudformation-88161.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cloudformation``", - "description": "We added 5 new stack refactoring APIs: CreateStackRefactor, ExecuteStackRefactor, ListStackRefactors, DescribeStackRefactor, ListStackRefactorActions." -} diff --git a/.changes/next-release/api-change-connectcases-29080.json b/.changes/next-release/api-change-connectcases-29080.json deleted file mode 100644 index 1f19dfe041..0000000000 --- a/.changes/next-release/api-change-connectcases-29080.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connectcases``", - "description": "This release adds the ability to conditionally require fields on a template. Check public documentation for more information." -} diff --git a/.changes/next-release/api-change-costoptimizationhub-3541.json b/.changes/next-release/api-change-costoptimizationhub-3541.json deleted file mode 100644 index ead8f41c17..0000000000 --- a/.changes/next-release/api-change-costoptimizationhub-3541.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cost-optimization-hub``", - "description": "This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon Auto Scaling Groups, including those with single and mixed instance types." -} diff --git a/.changes/next-release/api-change-s3-85095.json b/.changes/next-release/api-change-s3-85095.json deleted file mode 100644 index 12888c3bca..0000000000 --- a/.changes/next-release/api-change-s3-85095.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``s3``", - "description": "Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets." -} diff --git a/.changes/next-release/enhancement-Eventsteam-78927.json b/.changes/next-release/enhancement-Eventsteam-78927.json deleted file mode 100644 index e635d0a809..0000000000 --- a/.changes/next-release/enhancement-Eventsteam-78927.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "enhancement", - "category": "Eventsteam", - "description": "The SDK no longer validates payload size for eventstreams. This is to facilitate varying payload requirements across AWS services." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f69c6abbc9..46d347b801 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.36.15 +======= + +* api-change:``cloudformation``: We added 5 new stack refactoring APIs: CreateStackRefactor, ExecuteStackRefactor, ListStackRefactors, DescribeStackRefactor, ListStackRefactorActions. +* api-change:``connectcases``: This release adds the ability to conditionally require fields on a template. Check public documentation for more information. +* api-change:``cost-optimization-hub``: This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon Auto Scaling Groups, including those with single and mixed instance types. +* api-change:``s3``: Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets. +* enhancement:Eventsteam: The SDK no longer validates payload size for eventstreams. This is to facilitate varying payload requirements across AWS services. + + 1.36.14 ======= diff --git a/botocore/__init__.py b/botocore/__init__.py index f2d4cbb0a1..f1400062f6 100644 --- a/botocore/__init__.py +++ b/botocore/__init__.py @@ -16,7 +16,7 @@ import os import re -__version__ = '1.36.14' +__version__ = '1.36.15' class NullHandler(logging.Handler): diff --git a/docs/source/conf.py b/docs/source/conf.py index efd656b711..4adddddb66 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -59,7 +59,7 @@ # The short X.Y version. version = '1.36.' # The full version, including alpha/beta/rc tags. -release = '1.36.14' +release = '1.36.15' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.