Skip to content

Bump ComfyUI to v0.14.1#1606

Merged
benceruleanlu merged 4 commits intomainfrom
bump-comfyui-v0.14.1
Feb 17, 2026
Merged

Bump ComfyUI to v0.14.1#1606
benceruleanlu merged 4 commits intomainfrom
bump-comfyui-v0.14.1

Conversation

@benceruleanlu
Copy link
Member

@benceruleanlu benceruleanlu commented Feb 17, 2026

Summary

  • bump config.comfyUI.version to 0.14.1
  • update scripts/core-requirements.patch to match ComfyUI v0.14.1 requirements.txt
  • regenerate compiled requirements for macOS and Windows (AMD/CPU/NVIDIA), with macOS retaining torchaudio==2.10.0

Testing

  • yarn format
  • yarn lint
  • yarn typecheck

Summary by CodeRabbit

  • Updates

    • Upgraded ComfyUI to 0.14.1.
    • Bumped multiple comfyui-workflow-templates packages (core, media-api, media-image, media-other, media-video) to newer patch versions across macOS and Windows.
    • Refreshed compiled dependency manifests for all platforms.
    • Applied a small frontend package patch version bump.
  • Chores

    • Updated package pins and requirement manifests to maintain consistent builds.

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

coderabbitai bot commented Feb 17, 2026

No actionable comments were generated in the recent review. 🎉


📝 Walkthrough

Walkthrough

This PR updates version pins for multiple comfyui-workflow-templates packages across platform compiled requirements, bumps ComfyUI in package.json to 0.14.1, and updates two entries in scripts/core-requirements.patch.

Changes

Cohort / File(s) Summary
macOS compiled requirements
assets/requirements/macos.compiled
Bumps six comfyui-workflow-templates package pins (e.g., 0.8.380.8.43, 0.3.1360.3.145, 0.3.850.3.90, etc.).
Windows compiled requirements
assets/requirements/windows_amd.compiled, assets/requirements/windows_cpu.compiled, assets/requirements/windows_nvidia.compiled
Applies the same set of version bumps for the six comfyui-workflow-templates packages across AMD/CPU/NVIDIA compiled requirement files.
Configuration and patch
package.json, scripts/core-requirements.patch
Updates ComfyUI config in package.json to 0.14.1; core-requirements.patch replaces pins for comfyui-frontend-package (1.38.131.38.14) and comfyui-workflow-templates (0.8.380.8.43).

Possibly related PRs

Suggested reviewers

  • christian-byrne
  • luke-mino-altherr

Poem

🐰 I nudged the pins, a gentle hop,

templates climbed a tiny stop.
Package.json got a shiny glow,
patch updated—off we go! ✨

🚥 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 pull request title 'Bump ComfyUI to v0.14.1' directly and clearly matches the main objective of updating the ComfyUI version from 0.13.0 to 0.14.1 in package.json, which is confirmed by the PR description and file changes.
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-v0.14.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
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

Updates the embedded ComfyUI version used by the Electron app and refreshes the pinned Python dependency lockfiles to align with ComfyUI v0.14.1 requirements.

Changes:

  • Bump config.comfyUI.version to 0.14.1.
  • Update the core requirements patch to match ComfyUI v0.14.1 requirements.txt.
  • Regenerate per-platform compiled requirement lockfiles (Windows AMD/CPU/NVIDIA + macOS).

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
scripts/core-requirements.patch Updates the patch applied to ComfyUI core requirements.txt for v0.14.1.
package.json Bumps the ComfyUI tag/version used when fetching ComfyUI assets.
assets/requirements/windows_nvidia.compiled Refreshes Windows NVIDIA compiled Python requirements.
assets/requirements/windows_cpu.compiled Refreshes Windows CPU compiled Python requirements.
assets/requirements/windows_amd.compiled Refreshes Windows AMD compiled Python requirements.
assets/requirements/macos.compiled Refreshes macOS compiled Python requirements (includes a Torch/Torchaudio version change).

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

# torchvision
# from https://pypi.org/simple
torchaudio==2.10.0
torchaudio==2.9.1
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

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

In the macOS compiled requirements, torchaudio==2.9.1 is pinned alongside torch==2.10.0 (and torchvision==0.25.0). Torchaudio is typically tied to the same Torch release, and this mismatch is likely to cause install or runtime ABI/import errors on macOS. Please re-run the uv pip compile step (or adjust overrides) so torchaudio matches the torch version (or vice versa) for the macOS target.

Suggested change
torchaudio==2.9.1
torchaudio==2.10.0

Copilot uses AI. Check for mistakes.
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.

Caution

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

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

291-305: ⚠️ Potential issue | 🟠 Major

torchaudio==2.9.1 is incompatible with torch==2.10.0 on macOS.

PyTorch's official documentation states that "TorchAudio and PyTorch from different releases cannot be used together." Importing torchaudio against a mismatched torch version causes either ImportError at runtime or silent failures in audio operations.

The macOS compiled requirements currently pin torchaudio==2.9.1 while all other platforms (Windows CPU, NVIDIA, AMD) use matching torch and torchaudio versions—both at 2.10.0. The mismatch appears to result from the platform resolver (aarch64-apple-darwin) selecting a different version during compilation, not from explicit version pinning in assets/override.txt (which only lists package names without version constraints).

Update macOS to use torchaudio==2.10.0 to match torch==2.10.0, or document the platform-specific constraint if one exists.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@assets/requirements/macos.compiled` around lines 291 - 305, The macOS
compiled requirements pin "torchaudio==2.9.1" which is incompatible with the
pinned "torch==2.10.0"; update the macOS requirements to pin
"torchaudio==2.10.0" so torchaudio and torch match (replace the
torchaudio==2.9.1 entry with torchaudio==2.10.0), or if there is a
platform-specific constraint, add a clear comment documenting why the mismatch
must remain.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Outside diff comments:
In `@assets/requirements/macos.compiled`:
- Around line 291-305: The macOS compiled requirements pin "torchaudio==2.9.1"
which is incompatible with the pinned "torch==2.10.0"; update the macOS
requirements to pin "torchaudio==2.10.0" so torchaudio and torch match (replace
the torchaudio==2.9.1 entry with torchaudio==2.10.0), or if there is a
platform-specific constraint, add a clear comment documenting why the mismatch
must remain.

@dosubot dosubot bot added the lgtm This PR has been approved by a maintainer label Feb 17, 2026
@benceruleanlu benceruleanlu merged commit 3eea84e into main Feb 17, 2026
12 checks passed
@benceruleanlu benceruleanlu deleted the bump-comfyui-v0.14.1 branch February 17, 2026 23:48
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.

3 participants