From 523c863cc21cc3452841b6f5eb36202c6dd88d19 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Tue, 5 May 2026 01:23:51 -0700 Subject: [PATCH] Add missing changeset for Zod 4.4.x compatibility fix in @workflow/world PR #1902 landed without a changeset. This adds the missing patch-level changeset for @workflow/world describing the WorkflowRunSchema `.optional()` fix needed for Zod 4.4.x compatibility. --- .changeset/fix-world-zod-44-compat.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fix-world-zod-44-compat.md diff --git a/.changeset/fix-world-zod-44-compat.md b/.changeset/fix-world-zod-44-compat.md new file mode 100644 index 0000000000..78b350f128 --- /dev/null +++ b/.changeset/fix-world-zod-44-compat.md @@ -0,0 +1,5 @@ +--- +'@workflow/world': patch +--- + +Fix compatibility with Zod 4.4.x in `WorkflowRunSchema` by marking `output`, `error`, and `completedAt` as `.optional()` on non-final / cancelled / completed / failed run states.