Skip to content

Bump ComfyUI to v0.12.1#1583

Merged
christian-byrne merged 2 commits intomainfrom
bump-comfyui-0.12.1
Feb 4, 2026
Merged

Bump ComfyUI to v0.12.1#1583
christian-byrne merged 2 commits intomainfrom
bump-comfyui-0.12.1

Conversation

@benceruleanlu
Copy link
Member

@benceruleanlu benceruleanlu commented Feb 3, 2026

Summary

  • bump ComfyUI core version to v0.12.1
  • regenerate compiled requirements for macOS/Windows (CPU/NVIDIA/AMD)
  • update core requirements patch to match new upstream requirements

Summary by CodeRabbit

  • Chores
    • Updated ComfyUI to version 0.12.1.
    • Upgraded multiple workflow template packages to their latest releases.
    • Added two new packages to expand available workflow capabilities.
    • Updated compiled platform requirement lists for macOS and Windows to reflect the above changes.

┆Issue is synchronized with this Notion page by Unito

@benceruleanlu benceruleanlu requested a review from a team as a code owner February 3, 2026 20:59
Copilot AI review requested due to automatic review settings February 3, 2026 20:59
@dosubot dosubot bot added size:M This PR changes 30-99 lines, ignoring generated files. dependencies labels Feb 3, 2026
@coderabbitai
Copy link

coderabbitai bot commented Feb 3, 2026

📝 Walkthrough

Walkthrough

Updates to compiled platform requirements and core requirement patch: added comfy-aimdo and comfy-kitchen, bumped multiple comfyui workflow template package versions, updated ComfyUI version in package.json, and removed comfyui-frontend-package from core requirements.

Changes

Cohort / File(s) Summary
Platform-Specific Requirements
assets/requirements/macos.compiled, assets/requirements/windows_amd.compiled, assets/requirements/windows_cpu.compiled, assets/requirements/windows_nvidia.compiled
Added comfy-aimdo==0.1.7 and comfy-kitchen==0.2.7. Bumped workflow template packages: comfyui-workflow-templates (0.8.27→0.8.31), comfyui-workflow-templates-core (0.3.115→0.3.124), comfyui-workflow-templates-media-image (0.3.75→0.3.77), comfyui-workflow-templates-media-other (0.3.98→0.3.106), comfyui-workflow-templates-media-video (0.3.42→0.3.43).
Configuration & Core Patch
package.json, scripts/core-requirements.patch
Updated config.comfyUI.version in package.json from 0.11.1 to 0.12.1. Removed comfyui-frontend-package==1.37.11 and bumped comfyui-workflow-templates to 0.8.31 in the core requirements patch.

Poem

🐇 I nibble at lines and versions anew,

comfy-aimdo hops in, comfy-kitchen too,
Templates stretch from old to bright,
Package.json blinks a newer light,
Hooray — dependencies dancing in view.

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely summarizes the main change: bumping ComfyUI to v0.12.1. It aligns with the PR's primary objective and is reflected in the version update in package.json.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch bump-comfyui-0.12.1

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: c42f672b71

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR bumps ComfyUI core from v0.11.1 to v0.12.1 and regenerates compiled Python requirements for all supported platforms (macOS, Windows CPU/NVIDIA/AMD). The update includes a new dependency (comfy-aimdo) and updated versions of workflow template packages.

Changes:

  • Updated ComfyUI version in package.json from 0.11.1 to 0.12.1
  • Updated core requirements patch to reflect new workflow-templates version (0.8.31)
  • Regenerated compiled requirements for all platforms with updated dependency versions

Reviewed changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
package.json Bumped ComfyUI version from 0.11.1 to 0.12.1
scripts/core-requirements.patch Updated workflow-templates version from 0.8.27 to 0.8.31
assets/requirements/windows_nvidia.compiled Added comfy-aimdo dependency and updated workflow-templates packages
assets/requirements/windows_cpu.compiled Added comfy-aimdo dependency and updated workflow-templates packages
assets/requirements/windows_amd.compiled Added comfy-aimdo dependency and updated workflow-templates packages
assets/requirements/macos.compiled Added comfy-aimdo dependency, updated workflow-templates packages, torchaudio at 2.9.1 vs torch at 2.10.0

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (2)
assets/requirements/macos.compiled (2)

291-305: ⚠️ Potential issue | 🟠 Major

Fix torch/torchaudio version mismatch on macOS.

The macos.compiled file pins torch to 2.10.0 but torchaudio to 2.9.1. Per PyTorch documentation, torch and torchaudio binaries must be from the same release and cannot be mixed—this combination will cause ABI/runtime issues. Note that windows_cpu.compiled and windows_nvidia.compiled correctly align both to matching versions (2.10.0), so only the macOS file requires regeneration.

Fix (regenerate macos.compiled with aligned versions)
-torchaudio==2.9.1
+torchaudio==2.10.0

52-79: ⚠️ Potential issue | 🟠 Major

Fix torch/torchaudio version mismatch on macOS.

PyTorch 2.10.0 requires torchaudio 2.10.0 (currently pinned to 2.9.1). This pairing is binary-incompatible and will cause runtime failures. Update macos.compiled to use torchaudio==2.10.0 to match torch==2.10.0 (line 291 and 301).

@dosubot dosubot bot added the lgtm This PR has been approved by a maintainer label Feb 4, 2026
@christian-byrne christian-byrne merged commit 81c9389 into main Feb 4, 2026
11 of 12 checks passed
@christian-byrne christian-byrne deleted the bump-comfyui-0.12.1 branch February 4, 2026 01:22
christian-byrne pushed a commit that referenced this pull request Feb 4, 2026
## Summary
- bump desktop app version to 0.8.1

DO NOT MERGE UNTIL THESE TWO PRS ARE MERGED
1. #1581
2. #1583

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Chores**
  * Patch version update (0.8.1).

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-1584-Bump-desktop-version-to-0-8-1-2fc6d73d365081ae830dd16019dd7479)
by [Unito](https://www.unito.io)
This was referenced Feb 4, 2026
@coderabbitai coderabbitai bot mentioned this pull request Feb 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies lgtm This PR has been approved by a maintainer size:M This PR changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants