From c16db7fd6978eee76fca65626c02e61eaedb5e72 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Wed, 15 Apr 2026 03:13:35 +0900 Subject: [PATCH 1/2] Bump comfyui-frontend-package to 1.42.11 (#13398) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7e8dac182..7f065e0d4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -comfyui-frontend-package==1.42.10 +comfyui-frontend-package==1.42.11 comfyui-workflow-templates==0.9.50 comfyui-embedded-docs==0.4.3 torch From c5569e862794c419094ee5c9d5ad224634b9ddd6 Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Tue, 14 Apr 2026 11:42:23 -0700 Subject: [PATCH 2/2] Add string output to preview text node. (#13406) --- comfy_extras/nodes_preview_any.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_extras/nodes_preview_any.py b/comfy_extras/nodes_preview_any.py index b0a6f279d..0a1558f2b 100644 --- a/comfy_extras/nodes_preview_any.py +++ b/comfy_extras/nodes_preview_any.py @@ -11,7 +11,7 @@ class PreviewAny(): "required": {"source": (IO.ANY, {})}, } - RETURN_TYPES = () + RETURN_TYPES = (IO.STRING,) FUNCTION = "main" OUTPUT_NODE = True @@ -33,7 +33,7 @@ class PreviewAny(): except Exception: value = 'source exists, but could not be serialized.' - return {"ui": {"text": (value,)}} + return {"ui": {"text": (value,)}, "result": (value,)} NODE_CLASS_MAPPINGS = { "PreviewAny": PreviewAny,