From e6e0936128858608c5cc45585be3583176d748b2 Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Thu, 30 Apr 2026 16:33:09 -0700 Subject: [PATCH 1/4] Load other jpeg formats without taking so much memory. (#13642) --- comfy_api/latest/_input_impl/video_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api/latest/_input_impl/video_types.py b/comfy_api/latest/_input_impl/video_types.py index 9a107fb763fe..942278d88bdb 100644 --- a/comfy_api/latest/_input_impl/video_types.py +++ b/comfy_api/latest/_input_impl/video_types.py @@ -290,7 +290,7 @@ def get_components_internal(self, container: InputContainer) -> VideoComponents: alphas = [] alpha_channel = True break - if frame.format.name in ("yuvj420p", "rgb24", "rgba", "pal8"): + if frame.format.name in ("yuvj420p", "yuvj422p", "yuvj444p", "rgb24", "rgba", "pal8"): process_image_format = lambda a: a.float() / 255.0 if alpha_channel: image_format = 'rgba' From e9c311b2458a327585a7e387558377c8190eebb0 Mon Sep 17 00:00:00 2001 From: Rainer Date: Fri, 1 May 2026 02:33:41 +0300 Subject: [PATCH 2/4] OneTainer ERNIE LoRA support (#13640) --- comfy/lora.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/comfy/lora.py b/comfy/lora.py index 63ee85323a05..e4337c729b0c 100644 --- a/comfy/lora.py +++ b/comfy/lora.py @@ -342,6 +342,12 @@ def model_lora_keys_unet(model, key_map={}): key_map["base_model.model.{}".format(key_lora)] = k # Official base model loras key_map["lycoris_{}".format(key_lora.replace(".", "_"))] = k # LyCORIS/LoKR format + if isinstance(model, comfy.model_base.ErnieImage): + for k in sdk: + if k.startswith("diffusion_model.") and k.endswith(".weight"): + key_lora = k[len("diffusion_model."):-len(".weight")] + key_map["transformer.{}".format(key_lora)] = k + return key_map From e8e8fee22476a926090df9f719acd0a553ff8165 Mon Sep 17 00:00:00 2001 From: "Daxiong (Lin)" Date: Fri, 1 May 2026 09:14:28 +0800 Subject: [PATCH 3/4] chore: update workflow templates to v0.9.65 (#13644) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c3d51e2fa5e2..cb85d970b0b6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ comfyui-frontend-package==1.42.15 -comfyui-workflow-templates==0.9.63 +comfyui-workflow-templates==0.9.65 comfyui-embedded-docs==0.4.4 torch torchsde From 97f58baaaf89e2232b735fab2a3f2d4e24d134c3 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Thu, 30 Apr 2026 18:49:31 -0700 Subject: [PATCH 4/4] Add alexisrolland and rattus128 as code owners (#13648) --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index 4d544863643b..e693955a021b 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,2 +1,2 @@ # Admins -* @comfyanonymous @kosinkadink @guill +* @comfyanonymous @kosinkadink @guill @alexisrolland @rattus128