Skip to content

Commit 0469cad

Browse files
committed
security policy is modified
MODIFIED: Fix custom nodes feature belongs to `high` level risky features
1 parent d289dd5 commit 0469cad

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,9 +364,10 @@ When you run the `scan.sh` script:
364364
* `Install via git url`, `pip install`
365365
* Installation of custom nodes registered not in the `default channel`.
366366
* Display terminal log
367+
* Fix custom nodes
367368
368369
* `middle` level risky features
369-
* Uninstall/Update/Fix custom nodes
370+
* Uninstall/Update
370371
* Installation of custom nodes registered in the `default channel`.
371372
* Restore/Remove Snapshot
372373
* Restart

glob/manager_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import cm_global
2424
from manager_util import *
2525

26-
version = [2, 51, 3]
26+
version = [2, 51, 4]
2727
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
2828

2929

glob/manager_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ async def install_custom_node(request):
843843

844844
@PromptServer.instance.routes.post("/customnode/fix")
845845
async def fix_custom_node(request):
846-
if not is_allowed_security_level('middle'):
846+
if not is_allowed_security_level('high'):
847847
print(SECURITY_MESSAGE_MIDDLE_OR_BELOW)
848848
return web.Response(status=403)
849849

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-manager"
33
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
4-
version = "2.51.3"
4+
version = "2.51.4"
55
license = { file = "LICENSE.txt" }
66
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
77

0 commit comments

Comments
 (0)