Skip to content

Bump ComfyUI to v0.12.2#1586

Merged
benceruleanlu merged 2 commits intomainfrom
bump-comfyui-0.12.2
Feb 4, 2026
Merged

Bump ComfyUI to v0.12.2#1586
benceruleanlu merged 2 commits intomainfrom
bump-comfyui-0.12.2

Conversation

@benceruleanlu
Copy link
Member

@benceruleanlu benceruleanlu commented Feb 4, 2026

Summary

  • bump ComfyUI core version to v0.12.2
  • regenerate macOS compiled requirements

Testing

  • yarn format
  • yarn lint
  • yarn typecheck

Summary by CodeRabbit

  • Chores
    • Updated torchaudio to version 2.9.1
    • Bumped comfyUI dependency to version 0.12.2

┆Issue is synchronized with this Notion page by Unito

Copilot AI review requested due to automatic review settings February 4, 2026 05:50
@benceruleanlu benceruleanlu requested a review from a team as a code owner February 4, 2026 05:50
@dosubot dosubot bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Feb 4, 2026
@coderabbitai
Copy link

coderabbitai bot commented Feb 4, 2026

📝 Walkthrough

Walkthrough

This PR updates two dependency configurations: downgrades torchaudio from 2.10.0 to 2.9.1 in the macOS compiled requirements file, and bumps the comfyUI dependency from 0.12.1 to 0.12.2 in package.json. Both are version adjustments in configuration files.

Changes

Cohort / File(s) Summary
macOS Dependencies
assets/requirements/macos.compiled
Downgrade torchaudio from 2.10.0 to 2.9.1.
Package Configuration
package.json
Bump comfyUI dependency version from 0.12.1 to 0.12.2.

Possibly related PRs

Suggested reviewers

  • christian-byrne

Poem

🐰 A rabbit hops through version trees,
Downgrade, upgrade, with gentle ease,
Dependencies dance and twirl about,
The versions shift without a doubt! ✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The pull request title directly matches the main change: bumping ComfyUI dependency from 0.12.1 to 0.12.2 as described in package.json modifications.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

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

✨ Finishing touches
  • 📝 Generate docstrings
🧪 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.2

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.

@socket-security
Copy link

socket-security bot commented Feb 4, 2026

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn High
Obfuscated code: npm safer-buffer is 94.0% likely obfuscated

Confidence: 0.94

Location: Package overview

From: ?npm/electron-builder@25.1.8npm/@playwright/test@1.49.1npm/@sentry/wizard@3.38.0npm/@sentry/vite-plugin@2.23.0npm/@electron/rebuild@4.0.1npm/@todesktop/cli@1.15.2npm/vite@7.1.3npm/node-pty@1.1.0-beta39npm/safer-buffer@2.1.2

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/safer-buffer@2.1.2. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

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: a9e362657e

ℹ️ 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 updates the embedded ComfyUI core version and refreshes the macOS compiled Python requirements to match the new core.

Changes:

  • Bump config.comfyUI.version in package.json from 0.12.1 to 0.12.2.
  • Regenerate assets/requirements/macos.compiled, including a change of torchaudio from 2.10.0 to 2.9.1 while leaving torch at 2.10.0.

Reviewed changes

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

File Description
package.json Updates the ComfyUI core version configuration to 0.12.2 to track the new upstream release.
assets/requirements/macos.compiled Refreshes pinned macOS dependencies for the updated core, including a downgrade of torchaudio that now mismatches the torch version and the other platform requirement sets.

💡 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 (1)
assets/requirements/macos.compiled (1)

291-305: ⚠️ Potential issue | 🟠 Major

torch and torchaudio version mismatch requires fix.

torch==2.10.0 is incompatible with torchaudio==2.9.1. Official PyTorch binaries are compiled against specific version pairs. Upgrade torchaudio to 2.10.0 to match torch.

Fix
-torchaudio==2.9.1
+torchaudio==2.10.0

@dosubot dosubot bot added the lgtm This PR has been approved by a maintainer label Feb 4, 2026
@benceruleanlu benceruleanlu merged commit 7aec14e into main Feb 4, 2026
12 checks passed
@benceruleanlu benceruleanlu deleted the bump-comfyui-0.12.2 branch February 4, 2026 06:49
benceruleanlu added a commit that referenced this pull request Feb 4, 2026
## Summary
- Bump desktop version in package.json to 0.8.2

Merge after:
- #1586

## Testing
- `yarn format`
- `yarn lint`
- `yarn typecheck`

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-1587-Bump-desktop-version-to-0-8-2-2fd6d73d365081ceb496d39272e14450)
by [Unito](https://www.unito.io)


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

## Summary by CodeRabbit

* **Chores**
  * Version bumped to 0.8.2

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This was referenced Feb 6, 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:XS This PR changes 0-9 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants