update security scanner

This commit is contained in:
Dr.Lt.Data 2024-12-06 04:36:42 +09:00
parent e6b46ebccf
commit 8d1fd75c6c
3 changed files with 12 additions and 4 deletions

View File

@ -23,7 +23,7 @@ sys.path.append(glob_path)
import cm_global import cm_global
from manager_util import * from manager_util import *
version = [2, 55, 2] version = [2, 55, 3]
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '') version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')

View File

@ -33,9 +33,17 @@ Detailed information: https://old.reddit.com/r/comfyui/comments/1dbls5n/psa_if_y
"ultralytics==8.3.41": f""" "ultralytics==8.3.41": f"""
Execute following commands: Execute following commands:
{sys.executable} -m pip uninstall ultralytics {sys.executable} -m pip uninstall ultralytics
{sys.executable} -m pip install ultralytics {sys.executable} -m pip install ultralytics==8.3.40
The version 8.3.41 of the Ultralytics package you installed is compromised. Please uninstall that version and reinstall the latest version. The version 8.3.41 to 8.3.42 of the Ultralytics package you installed is compromised. Please uninstall that version and reinstall the latest version.
https://github.com/ltdrdata/ComfyUI-Impact-Pack/issues/843
""",
"ultralytics==8.3.42": f"""
Execute following commands:
{sys.executable} -m pip uninstall ultralytics
{sys.executable} -m pip install ultralytics==8.3.40
The version 8.3.41 to 8.3.42 of the Ultralytics package you installed is compromised. Please uninstall that version and reinstall the latest version.
https://github.com/ltdrdata/ComfyUI-Impact-Pack/issues/843 https://github.com/ltdrdata/ComfyUI-Impact-Pack/issues/843
""" """
} }

View File

@ -1,7 +1,7 @@
[project] [project]
name = "comfyui-manager" name = "comfyui-manager"
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI." description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
version = "2.55.2" version = "2.55.3"
license = { file = "LICENSE.txt" } license = { file = "LICENSE.txt" }
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"] dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]