From a71c4e11147e90c9086b033dbd47ba6355db14ac Mon Sep 17 00:00:00 2001 From: Mark Peek Date: Mon, 30 Sep 2024 13:51:15 -0700 Subject: [PATCH] Release 4.8.2 --- CHANGELOG.rst | 19 +++++++++++++++++++ docs/conf.py | 2 +- troposphere/__init__.py | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aa394c21d..0ecf14261 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,22 @@ +4.8.2 (2024*09*30) +------------------------------- +* Update SSM OperatingSystem validator (#2256) +* Updates from spec version 180.0.0 (updated) +* Updates from spec version 182.0.0 (#2257) +* The APIGateway Integration timeout can now be increased beyond 29,000 milliseconds. Removing upper limit. (#2258) +* Convert to using pytest instead of "setup.py test" +* Updates from spec version 183.0.0 (#2259) +* Allow TZ as a lambda env var +* Updates from spec version 184.0.0 (#2263) +* Update ElastiCache instance types (#2262) +* Fix Chatbot::SlackChannelConfiguration LoggingLevel validation (Fixes #2264) +* Update node from 17 to 22 for test action +* Updates from spec version 185.0.0 (#2267) +* Update kinesisanalyticsv2 VALID_RUNTIME_ENVIRONMENTS (#2266) +* Updates from spec version 185.0.1 (#2269) +* Validate the type for Tags (#2270) +* Add new AWS resources + 4.8.1 (2024*06*28) ------------------------------- * Update copyright year in generated files diff --git a/docs/conf.py b/docs/conf.py index 074e621c9..f09b13796 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "4.8.1" +release = "4.8.2" # -- General configuration --------------------------------------------------- diff --git a/troposphere/__init__.py b/troposphere/__init__.py index d4e78ed94..73b48e01d 100644 --- a/troposphere/__init__.py +++ b/troposphere/__init__.py @@ -41,7 +41,7 @@ else: from typing import Final -__version__ = "4.8.1" +__version__ = "4.8.2" # constants for DeletionPolicy and UpdateReplacePolicy Delete: Final = "Delete"