From e6bbb8a84c30bb71a5218bb33c56f72b5cb887b3 Mon Sep 17 00:00:00 2001 From: aws-sam-cli-bot <46753707+aws-sam-cli-bot@users.noreply.github.com> Date: Mon, 24 Aug 2026 14:37:31 -0700 Subject: [PATCH 1/2] chore: bump version to 1.113.0 --- samtranslator/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samtranslator/__init__.py b/samtranslator/__init__.py index ff02d400a..22c47ece6 100644 --- a/samtranslator/__init__.py +++ b/samtranslator/__init__.py @@ -1 +1 @@ -__version__ = "1.111.0" +__version__ = "1.113.0" From 47ab648a8e3d9e0eaca987705a59a9e9d53332ff Mon Sep 17 00:00:00 2001 From: aws-sam-cli-bot <46753707+aws-sam-cli-bot@users.noreply.github.com> Date: Mon, 24 Aug 2026 15:34:02 -0700 Subject: [PATCH 2/2] fix: add unused-ignore to add_multi_constructor type ignore to fix mypy CI --- samtranslator/yaml_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samtranslator/yaml_helper.py b/samtranslator/yaml_helper.py index 60f0e4f16..8a20e7fab 100644 --- a/samtranslator/yaml_helper.py +++ b/samtranslator/yaml_helper.py @@ -7,7 +7,7 @@ def yaml_parse(yamlstr): # type: ignore[no-untyped-def] """Parse a yaml string""" - yaml.SafeLoader.add_multi_constructor("!", intrinsics_multi_constructor) # type: ignore[no-untyped-call] + yaml.SafeLoader.add_multi_constructor("!", intrinsics_multi_constructor) # type: ignore[no-untyped-call,unused-ignore] return yaml.safe_load(yamlstr)