-
Notifications
You must be signed in to change notification settings - Fork 177
Update ComfyUI core to v0.8.2 #1514
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
📝 WalkthroughWalkthroughThis pull request updates dependency versions across multiple configuration and requirement files. The Changes
Possibly related PRs
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. Comment |
There was a problem hiding this 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 ComfyUI core from v0.7.0 to v0.8.2 and workflow templates from v0.7.64 to v0.7.69. The changes are purely version updates across configuration and requirement files.
- ComfyUI core version bumped from 0.7.0 to 0.8.2
- Workflow templates version bumped from 0.7.64 to 0.7.69 across all platform-specific requirement files
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updated ComfyUI version from 0.7.0 to 0.8.2 |
| scripts/core-requirements.patch | Updated workflow templates version reference to 0.7.69 |
| assets/requirements/windows_nvidia.compiled | Updated workflow templates dependency from 0.7.64 to 0.7.69 |
| assets/requirements/windows_cpu.compiled | Updated workflow templates dependency from 0.7.64 to 0.7.69 |
| assets/requirements/macos.compiled | Updated workflow templates dependency from 0.7.64 to 0.7.69 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In @scripts/core-requirements.patch:
- Around line 5-6: The patch references a non-existent package version
comfyui-workflow-templates==0.7.69 which will break installs; update the
requirement line in scripts/core-requirements.patch to use the valid PyPI
release comfyui-workflow-templates==0.7.65 (or whichever intended version after
verification) and confirm the removal of comfyui-frontend-package==1.35.9 aligns
with package.json's frontend.version and the download-frontend / update:frontend
scripts so the frontend is still handled by the separate mechanism.
📜 Review details
Configuration used: Organization UI
Review profile: ASSERTIVE
Plan: Pro
📒 Files selected for processing (5)
assets/requirements/macos.compiledassets/requirements/windows_cpu.compiledassets/requirements/windows_nvidia.compiledpackage.jsonscripts/core-requirements.patch
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
- GitHub Check: Agent
- GitHub Check: build-apple-debug-all / build-macos-debug
- GitHub Check: build-and-test-e2e-windows / integration-windows-test
- GitHub Check: lint-and-format (macos-latest)
- GitHub Check: lint-and-format (windows-latest)
🔇 Additional comments (4)
assets/requirements/windows_nvidia.compiled (1)
55-55: LGTM - Consistent dependency update.The workflow templates version bump to 0.7.69 is consistent with the updates in other platform-specific requirement files and the core requirements patch.
assets/requirements/windows_cpu.compiled (1)
54-54: LGTM - Consistent dependency update.The workflow templates version bump to 0.7.69 aligns with other platform-specific requirement files.
assets/requirements/macos.compiled (1)
50-50: LGTM - Consistent dependency update.The workflow templates version bump to 0.7.69 is consistent across all platform-specific requirement files (macOS, Windows CPU, Windows NVIDIA).
package.json (1)
18-18: ComfyUI v0.8.2 is a safe upgrade with no breaking changes.The v0.8.2 release (published Jan 8, 2026) contains only a minor VAE memory estimation tweak—no breaking changes or migration steps required. The version update is compatible with the current desktop application setup.
| -comfyui-frontend-package==1.35.9 | ||
| comfyui-workflow-templates==0.7.64 | ||
| comfyui-workflow-templates==0.7.69 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Search for references to comfyui-frontend-package in the codebase
rg -n 'comfyui-frontend-package' --type-list | head -5
# If the above works, search recursively
rg -n 'comfyui-frontend-package' -C 2Repository: Comfy-Org/desktop
Length of output: 776
🏁 Script executed:
#!/bin/bash
# Check the structure and context around the patch file
cat -n scripts/core-requirements.patch | head -20Repository: Comfy-Org/desktop
Length of output: 334
🏁 Script executed:
#!/bin/bash
# Look for package.json and check frontend.version reference
fd 'package.json' | head -10Repository: Comfy-Org/desktop
Length of output: 73
🌐 Web query:
comfyui-workflow-templates 0.7.69 PyPI release
💡 Result:
I couldn't find a PyPI release for comfyui-workflow-templates version 0.7.69. The PyPI project page shows the latest available release (meta package) as 0.7.65 (uploaded Dec 31, 2025), and the official GitHub repo's release history/tags do not list 0.7.69. [1][2]
Sources:
- PyPI project page for comfyui-workflow-templates. [1]
- GitHub — Comfy-Org/workflow_templates repository. [2]
🏁 Script executed:
#!/bin/bash
# Examine package.json to find frontend.version reference
cat package.json | grep -A 5 -B 5 'frontend' || echo "No frontend reference found"Repository: Comfy-Org/desktop
Length of output: 2456
🏁 Script executed:
#!/bin/bash
# Look for any other requirements files or version references
fd 'requirements' -o 'package' -o 'version' | head -20Repository: Comfy-Org/desktop
Length of output: 194
🏁 Script executed:
#!/bin/bash
# Check if there are any comments or context in the patch file
cat -n scripts/core-requirements.patchRepository: Comfy-Org/desktop
Length of output: 334
Fix invalid comfyui-workflow-templates version in patch.
The removal of comfyui-frontend-package==1.35.9 appears intentional—package.json still references frontend.version: "1.35.9" and scripts like download-frontend and update:frontend indicate the frontend is now managed through a separate mechanism rather than the pip package. However, the patch references comfyui-workflow-templates==0.7.69, which does not exist. The latest available version on PyPI is 0.7.65 (released Dec 31, 2025), and the GitHub repository has no 0.7.69 release. This will cause installation to fail. Update the version to 0.7.65 or verify the intended version if different.
🤖 Prompt for AI Agents
In @scripts/core-requirements.patch around lines 5 - 6, The patch references a
non-existent package version comfyui-workflow-templates==0.7.69 which will break
installs; update the requirement line in scripts/core-requirements.patch to use
the valid PyPI release comfyui-workflow-templates==0.7.65 (or whichever intended
version after verification) and confirm the removal of
comfyui-frontend-package==1.35.9 aligns with package.json's frontend.version and
the download-frontend / update:frontend scripts so the frontend is still handled
by the separate mechanism.
Updated versions
┆Issue is synchronized with this Notion page by Unito