From b778ab97b547a1d39b3d452f2fd8e44539e1834d Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Fri, 26 Jun 2026 15:12:55 -0700 Subject: [PATCH] Default show_version_updates feature flag to off Amp-Thread-ID: https://ampcode.com/threads/T-019f0347-dc00-723a-a4d2-558539329035 Co-authored-by: Amp --- comfy_api/feature_flags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api/feature_flags.py b/comfy_api/feature_flags.py index a74fe9e79..d5340b6fa 100644 --- a/comfy_api/feature_flags.py +++ b/comfy_api/feature_flags.py @@ -32,7 +32,7 @@ CLI_FEATURE_FLAG_REGISTRY: dict[str, FeatureFlagInfo] = { }, "show_version_updates": { "type": "bool", - "default": True, + "default": False, "description": "Default for whether the frontend shows new-release/version-update notifications (the user setting can still override it)", }, }