TypeScript-first schema declaration and validation library with static type inference
29 Apr 2026 · Newest first
Last checked
Checking sources…
Showing 1 of 1 releases. Full release notes.
Signals highlight changes worth reviewing. They cannot determine whether your application is affected.
Fixed in #5759. JSON Schema conversion through
z.toJSONSchema()now strips redundantidfields from$defsentries. This is required for correctness in older JSON Schema dialects from before$idwas introduced: in those dialects,idchanges the resolution scope, so leaving it inside an extracted definition can make references resolve incorrectly. The removed value was redundant because the schema had already been extracted into$defs, so the definition key itself is the identifier. This may affect consumers that were reading those internalidfields directly.
Commit
d3c0ec87docs: add note about removed.errorsalias in v4 changelog (#5705) by @togami2864
CUID validation through
z.cuid()has been tightened, and CUID v1 is now deprecated. Fixed in #5880.
Commit
55747b3cRemove deprecated downlevelIteration option (#5684) by @RyanCavanaugh
JSON Schema$defsentries no longer include redundantid
This is a minor release with a wide set of correctness and soundness fixes. Some fixes intentionally make Zod stricter, so code that depended on previously accepted invalid or ambiguous inputs may need small updates.
Fixed in #5661. Tuple parsing now more accurately reflects defaults, optional tails, explicit undefined, and under-filled inputs. The headline behavior is that defaults in tuple positions now properly appear in parsed output.
const schema = z.tuple([
z.string(),
z.string().default("fallback"),
]);
schema.parse(["a"]);
// ["a", "fallback"]
Trailing optional elements that are absent still stay absent; they are not filled with undefined.
const schema = z.tuple([
z.string(),
z.string().optional(),
]);
schema.parse(["a"]);
// ["a"]
But explicit undefined values supplied by the caller are preserved.
schema.parse(["a", undefined]);
// ["a", undefined]
When optional elements appear before later defaults, the parsed tuple is now dense so array operations behave predictably.
const schema = z.tuple([
z.string(),
z.string().optional(),
z.string().default("fallback"),
]);
schema.parse(["a"]);
// ["a", undefined, "fallback"]
Tuple length errors are also more consistent now. Since z.function() arguments are tuple-shaped, function input errors may look different.
z.undefined()Fixed in #5661, with follow-up coverage in 57d80a82. A property whose schema is z.undefined() is now treated as required. The key must be present, but its value may be undefined.
const schema = z.object({
value: z.undefined(),
});
schema.safeParse({}).success;
// false
schema.safeParse({ value: undefined }).success;
// true
Use .optional() when the key itself may be absent.
const schema = z.object({
value: z.undefined().optional(),
});
schema.safeParse({}).success;
// true
This also affects related .catch(), .partial(), .default(), and .prefault() combinations that previously relied on missing z.undefined() keys being treated as optional.
.merge() behavior with refinementsFixed in #5856. The .merge() method now throws when the receiver has refinements, rather than silently producing ambiguous refinement behavior. Refinements from the second schema are preserved.
const a = z.object({ a: z.string() }).refine((val) => val.a.length > 0);
const b = z.object({ b: z.string() });
a.merge(b);
// throws
Prefer
.extend()or.safeExtend()for object composition. The.merge()method is still supported for compatibility, but it is discouraged for new code because its semantics around overlapping keys and refinements are easier to misread.
$defs entries no longer include redundant idFixed in #5759. JSON Schema conversion through z.toJSONSchema() now strips redundant id fields from $defs entries. This is required for correctness in older JSON Schema dialects from before $id was introduced: in those dialects, id changes the resolution scope, so leaving it inside an extracted definition can make references resolve incorrectly. The removed value was redundant because the schema had already been extracted into $defs, so the definition key itself is the identifier. This may affect consumers that were reading those internal id fields directly.
Other JSON Schema fixes in this release:
.describe(): #5797Base64 validation now rejects whitespace instead of allowing atob()-style whitespace stripping. Fixed in #5888.
z.base64().safeParse("Zm9v").success;
// true
z.base64().safeParse("Zm 9v").success;
// false
Other string validator changes:
z.cuid() has been tightened, and CUID v1 is now deprecated. Fixed in #5880.z.httpUrl() now rejects malformed HTTP(S) URLs with a missing slash after the protocol. The underlying URL constructor normalizes inputs like https:/example.com, but Zod now rejects them instead of accepting the repaired URL. Fixed in #5672, related to #5284.z.httpUrl().safeParse("https://example.com").success;
// true
z.httpUrl().safeParse("https:/example.com").success;
// false
z.httpUrl().safeParse("http:/www.apple.com").success;
// false
Two union-related error fixes landed:
z.treeifyError() and z.formatError(). Fixed in #5708 and 60ff3987.ZodError output.Fixed in #5891. Record schemas now run transforms on record keys.
const schema = z.record(
z.string().transform((key) => key.toUpperCase()),
z.number()
);
schema.parse({ foo: 1 });
// { FOO: 1 }
Related record fixes:
invalid_key issues. Fixed in #5719.z.record(valueType) form works again. Fixed in 0e960108.fromJSONSchema()Schema generation from JSON Schema now applies metadata more consistently across enum, const, not, anyOf, and multi-type schemas. Fixed in #5758. It also rejects or normalizes more non-JSON-like inputs, including cyclic objects and BigInt. Fixed in 87cf0f93.
Codec changes:
z.discriminatedUnion().encode() now works when the discriminator uses a codec. Fixed in #5769.const stringToNumber = z.codec(
z.string(),
z.number(),
{
decode: Number,
encode: String,
}
);
const numberToString = z.invertCodec(stringToNumber);
Transform callbacks now support ctx.addIssue(). Fixed in #5699.
.superRefine() with whenThe when option was added for .superRefine(). Added in #5741, with related abort behavior fixed in #5681.
Map and SetDefaults for Map and Set are now cloned instead of shared across parses. Fixed in #5855.
const schema = z.map(z.string(), z.number()).default(new Map());
const a = schema.parse(undefined);
const b = schema.parse(undefined);
a === b;
// false
Empty z.union([]), z.xor([]), and discriminated unions no longer crash at construction time. They construct and fail at parse time. Fixed in #5869.
Number multipleOf() / step() validation is more accurate for decimal and exponent edge cases. Fixed in #5687 and #5793.
jitlessConfiguration fixes:
globalThis, improving behavior across mixed CJS/ESM module instances. Fixed in #5889.Object catchall paths now skip __proto__ keys. Fixed in #5898.
Fixed in #5897. Classic builder methods are now lazy-bound through a shared internal prototype instead of eagerly attached per schema instance. This significantly reduces per-schema method allocation overhead, especially in codebases that construct many schemas. Detached methods continue to work:
const schema = z.string();
const optional = schema.optional;
optional.call(schema);
// still works
Implemented in 195e8696 and #5689. Top-level factory calls are annotated as pure, and generated stub package manifests now include sideEffects: false. This gives bundlers more room to remove unused Zod code.
This is intended as the conclusive fix for a long-standing class of tree-shaking and bundle-size issues, especially in Next.js and Turbopack projects. The most visible symptom was that unused validators and locales could survive bundling even when importing from zod/mini or from a narrow subpath.
Related reports include:
zod/mini bundle-size reports: #5561, #5665, #4369, #4572{
"sideEffects": false
}
Added or updated locale support:
Locale message text changed in some cases, which may affect snapshots.
The following issues were closed by PRs included in this release:
string.abort: true in .refine() checks with when.addIssue to transform context.delete in finalizeIssue.options to invalid discriminator errors.44f6a03e fix(locales): correct Georgian translation for 'string' to 'ველი' (#5655) by @tushargr0ver7b43bc64 docs(ecosystem): add Hono Takibi (#5651) by @nakita628119376b9 feat: add map support to Uzbek locale (#5599) by @uchkunr8fbf701e test: add edge case tests for boundary values (#5601) by @uchkunrf1f93c2b Fix order of brand method examples in api.mdx (#5604) by @onurtemiz10105ee4 docs: Fix typos in json-schema documentation (#5608) by @SaKaNa-Y2d367139 feat: add hr translation (#5610) by @vuki65654902cb7 chore: update pullfrog.yml workflow89ba70f2 chore: add sideEffects false to stub package.json for tree-shaking (#5689) by @jesse-holdenfromJSONSchema()eaa3c2c3.gt(0)3a818de1 fix(v4): handle multi-digit exponents in floatSafeRemainder (#5687) by @shakecodeslikecray7d98c909 add Sanity as silver sponsor and Mintlify as bronze sponsorc7805073 move Sanity and Mintlify to top of sponsor listsfa338a3b fix(v4): JSON schema min/max intersection for draft-04 and openapi-3.0 (#5700) by @ebroder3473b288 chore: bump zshy to ^0.7.160ff3987 fix(v4): preserve parent path when treeifying nested union/key/element issuesee15fa19 docs: add AGENTS notes for JSDoc, PR comments, and PR worktree workflow28c156e2 fix: apply description and default metadata to enum, const, and not schemas in fromJSONSchema (#5758) by @mibragimov411f6c64 fix(v4): resolve stack overflow in toJSONSchema for recursive lazy with describe (#5797) by @Hassad67445dd421e docs: add tone guidelines for issue and PR comments to AGENTS.mdddd20a30 test: align optional property assertions with actual inferred types87cf0f93 fix(fromJSONSchema): normalize input via JSON round-trip5b7ed214 fix: correct multipleOf float validation using tolerance-based comparison (#5793) by @cyphercodes0e960108 fix(v4): support v3-style single-arg z.record(valueType)41b25af9 docs(agents): refine PR comment tone guidance37ac1ba0 fix(fr): translate issue.origin in too_big/too_small errors (#5845) by @Ouaziz-chedli3c1f32bd feat(locales/en): handle instanceof and add comprehensive locale testsbf6d99ed Revert "feat(locales/en): handle instanceof and add comprehensive locale tests"e8196a8d fix(resolution): align expected fr message with translated locale34f60159 fix(v4): clone Map and Set in shallowClone to prevent shared state across .default() parses (#5855) by @artur-seppa91a7d0d1 fix(v4): reject whitespace in z.base64() to close atob bypass23edf484 Revert "fix(v4): reject whitespace in z.base64() to close atob bypass"15cafa13 fix(v4): throw on .merge() receiver with refinements; preserve refinements from second schema (#5856) by @solssak584b1089 fix(v4): reject whitespace in z.base64() to close atob bypass (#5888) by @colinhacks285bde7f feat(core): share globalConfig across module systems via globalThis (#5889) by @colinhacks195e8696 perf(v4): mark top-level factory calls as /*@__PURE__*/ for tree-shaking6217527e docs(agents): document push-to-main footgun and version-bump rule (#5883) by @colinhacks757f0b0f fix(v4): apply util.Writeable in strictObject/looseObject for shape display parity (#5882) by @colinhacksfa4a3740 fix(v4): apply util.Writeable in mini object constructors and extend/safeExtend/partial/required (#5895) by @colinhacks8fcb71a5 perf(v4): lazy-bind builder methods to shared internal prototype (#5897) by @colinhacks327e152e docs(agents): refine PR comment tone guidance further57d80a82 test(v4): pin object/tuple key optionality through optout propagationad0b8271 ci: update release workflow for trusted publishing6db607be fix(release): keep JSR manifest publishablef778e02a build: bump zshy for JSR wildcard exports