Skip to content

Commit f664dd0

Browse files
committed
Release version 1.0.12 with Qwen API model deprecation handling.
1 parent e3a660f commit f664dd0

4 files changed

Lines changed: 24 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to ComfyUI-MultiModal-Prompt-Nodes will be documented in this file.
44

55

6+
## [1.0.12] - 2026-05-19
7+
8+
- Updated Qwen cloud API model selection
9+
- Prioritized Qwen3.6 API models, including `qwen3.6-plus` and `qwen3.6-flash`
10+
- Kept legacy Qwen API models selectable for existing workflow compatibility
11+
- Added UI deprecation notices that distinguish models announced offline since 2026-05-13 from models scheduled offline on 2026-07-13
12+
13+
- Improved API model handling
14+
- Normalized annotated UI model labels before sending requests to DashScope
15+
- Updated Qwen Image Edit API defaults to use `qwen3.6-plus`
16+
- Updated Wan I2V API validation to allow Qwen3.6 vision-capable models in addition to `qwen-vl-*` models
17+
18+
- Documentation
19+
- Documented the Qwen API model deprecation notice handling in README upgrade notes
20+
21+
622
## [1.0.11] - 2026-05-09
723

824
- Added support for Qwen3.6 local GGUF models

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ComfyUI-MultiModal-Prompt-Nodes
22

3-
**Version:** 1.0.11
3+
**Version:** 1.0.12
44
**License:** GPL-3.0
55

66
Multimodal prompt generator nodes for ComfyUI, designed to generate prompts for **Qwen-Image-Edit** and **Wan2.2**.
@@ -9,7 +9,7 @@ Supports **local LLM / local GGUF models** (Qwen2.5-VL, Qwen3-VL, Qwen3.5 and Qw
99
---
1010
## Upgrade Notes for Existing Users
1111

12-
The following notes are intended for existing users upgrading to `1.0.11`.
12+
The following notes are intended for existing users upgrading to `1.0.12`.
1313

1414
### Qwen API model list updated for Model Studio deprecation notices
1515
Cloud API model selection now prioritizes Qwen3.6 models, including `qwen3.6-plus` and `qwen3.6-flash`.
@@ -469,7 +469,7 @@ Areas needing help:
469469

470470
See [CHANGELOG.md](CHANGELOG.md) for detailed version history.
471471

472-
### Current Version: 1.0.11
473-
- Added support for Qwen3.6 local GGUF model detection through the Qwen3.5 handler path
474-
- Added discovery of GGUF models registered via `extra_model_paths.yaml`
475-
- Improved mmproj auto-detection when a model directory contains exactly one `mmproj-*.gguf` file
472+
### Current Version: 1.0.12
473+
- Prioritized Qwen3.6 cloud API models in Qwen and Wan prompt generator nodes
474+
- Kept legacy Qwen API models selectable with deprecation notices for workflow compatibility
475+
- Updated Wan I2V API validation to allow Qwen3.6 vision-capable models

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# the Free Software Foundation, either version 3 of the License, or
77
# (at your option) any later version.
88

9-
__version__ = "1.0.10"
9+
__version__ = "1.0.12"
1010
WEB_DIRECTORY = "./web"
1111

1212
from .qwen_nodes import NODE_CLASS_MAPPINGS as qNODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS as qNODE_DISPLAY_NAME_MAPPINGS

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "multimodal-prompt-nodes"
33
description = "Multimodal prompt generator nodes for ComfyUI, designed to generate prompts for QwenImageEdit and Wan2.2. Supports local LLM / local GGUF models (Qwen2.5-VL, Qwen3-VL, Qwen3.5 and Qwen3.6) and Qwen API for image and video prompt generation and enhancement."
4-
version = "1.0.11"
4+
version = "1.0.12"
55
license = {file = "LICENSE"}
66
# classifiers = [
77
# # For OS-independent nodes (works on all operating systems)

0 commit comments

Comments
 (0)