From 3e996eed27db33ccda6782a105d96d3c51cfe7a6 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Tue, 28 Oct 2025 09:10:06 -0400 Subject: [PATCH] fixes Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 3 +++ installer.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30c75ec42..986f97666 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ - add **Qwen 3-VL** llm for interrogate and prompt enhance, thanks @CalamitousFelicitousness this includes *2B, 4B and 8B* variants - when using **shared-t5** *(default)*, it will load standard or pre-quant depending on model + - enhanced LoRA support for **Wan-2.2-14B** - **Fixes** - startup error with `--profile` enabled if using `--skip` - restore orig init image for each batch sequence @@ -65,6 +66,8 @@ - fix networks display with extended characters, thanks @awsr - installer handle different `opencv` package variants - fix using pre-quantized shared-t5 + - fix `wan-2.2-14b-vace` single-stage exectution + - fix `wan-2.2-5b` tiled vae decode - catch `xet` warnings - validate pipelines on import diff --git a/installer.py b/installer.py index dd5a89360..fc9dbe9b8 100644 --- a/installer.py +++ b/installer.py @@ -613,7 +613,7 @@ def check_diffusers(): t_start = time.time() if args.skip_all: return - sha = '6d1a6486024192951ce696e8f4cf79a39509182f' # diffusers commit hash + sha = '84e16575e4c5e90b6b49301cfa162ced4cf478d2' # diffusers commit hash # if args.use_rocm or args.use_zluda or args.use_directml: # sha = '043ab2520f6a19fce78e6e060a68dbc947edb9f9' # lock diffusers versions for now pkg = pkg_resources.working_set.by_key.get('diffusers', None)