From 626b08283877607e80fb8fccf2bce822c752bcd8 Mon Sep 17 00:00:00 2001 From: yy Date: Wed, 20 May 2026 06:45:04 +0900 Subject: [PATCH 1/2] Fix typo in ops.py (#11925) --- comfy/ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/ops.py b/comfy/ops.py index f9456854b..eae3bd873 100644 --- a/comfy/ops.py +++ b/comfy/ops.py @@ -260,7 +260,7 @@ def resolve_cast_module_with_vbar(s, dtype, device, bias_dtype, compute_dtype, w def cast_bias_weight(s, input=None, dtype=None, device=None, bias_dtype=None, offloadable=False, compute_dtype=None, want_requant=False): - # NOTE: offloadable=False is a a legacy and if you are a custom node author reading this please pass + # NOTE: offloadable=False is a legacy mode and if you are a custom node author reading this please pass # offloadable=True and call uncast_bias_weight() after your last usage of the weight/bias. This # will add async-offload support to your cast and improve performance. if input is not None: From cc4d711eb1c34f393e81a074d881eccbb64faeba Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Tue, 19 May 2026 14:48:47 -0700 Subject: [PATCH 2/2] feat(openapi): add optional description field to workspace API key schemas (#13993) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(openapi): add optional description field to workspace API key schemas Add an optional `description` property (type: string) to three workspace API key schemas in openapi.yaml: - Inline request body of createWorkspaceApiKey (POST /api/workspace/api-keys) - WorkspaceApiKey (list/info schema) - WorkspaceApiKeyCreated (creation response schema) The field is not added to any `required` array, making it fully backward-compatible with existing clients. Refs: BE-1005, BE-1004 Co-authored-by: Matt Miller * fix(openapi): mark description nullable in workspace API key response schemas Per CodeRabbit review on PR #13993: the underlying DB column is nullable varchar (default ''), so the response schemas should permit null to match stored data reality. Without nullable: true the OpenAPI contract would require coercion on the handler side or risk a contract violation. Request schema unchanged — clients shouldn't be sending null on create. --- openapi.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 7745a7547..bc1ae16fa 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -4160,6 +4160,9 @@ paths: name: type: string description: Display name for the API key + description: + type: string + description: User-provided description for the key responses: "201": description: API key created @@ -7682,6 +7685,10 @@ components: type: string name: type: string + description: + type: string + nullable: true + description: User-provided description prefix: type: string description: First few characters of the key for identification @@ -7708,6 +7715,10 @@ components: type: string name: type: string + description: + type: string + nullable: true + description: User-provided description key: type: string description: Full API key value (only returned on creation)