From e456249d9f67f56cef5e650143a3fdf377021a8f Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Thu, 16 Apr 2026 10:58:11 +0200 Subject: [PATCH] docs: add zod version requirement to v4 import comment in v1.50 release notes Signed-off-by: Patrik Oldsberg Made-with: Cursor --- docs/releases/v1.50.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/releases/v1.50.0.md b/docs/releases/v1.50.0.md index c5e5703464..73b8d93813 100644 --- a/docs/releases/v1.50.0.md +++ b/docs/releases/v1.50.0.md @@ -23,7 +23,7 @@ The new frontend system now uses [Standard Schema](https://github.com/standard-s To use the new `configSchema` option with Zod, you need Zod v4 or the `zod/v4` subpath export from the Zod v3 package. The `zod/v4` subpath requires a minimum Zod version of **3.25.0** — make sure to update your Zod dependency if needed: ```ts -// Either use Zod v4 directly: +// Either use Zod v4 directly (requires zod@^4.0.0): import { z } from 'zod'; // Or the v4 subpath from the Zod v3 package (requires zod@^3.25.0):