TypeScript-first schema declaration and validation library with static type inference
28 Aug 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.
a87ac366fix(v4)!: distinguish number and bigint formats at the type level (#6052) by @abhishek-chaudhary2003
⚠️ z.iso.datetime() requires seconds⚠️ String length counts code points
⚠️ Record keys and intersections match TypeScript
⚠️ __proto__ is always stripped⚠️ Stricter string formats
Zod 4.5 is now available.
npm install zod@latest
At a glance:
z.compile() — the flagship feature of Zod 4.5z.creditCard() — 12–19 digits plus Luhn checksumz.properties() — the multi-property counterpart to z.property()z.deepPartial()/.exactPartial()z.validate(): boolean — a fast-path to verify input validity without a full parse (up to 16x faster on invalid data)bn), Central Kurdish (ckb), Hindi (hi), Kannada (kn), Norwegian Nynorsk (nn), Brazilian Portuguese (pt-BR), Slovak (sk), Turkmen (tk)z.compile()You can now pre-compile any Zod schema using z.compile(schema). This dramatically speeds up parsing performance.
import * as z from "zod";
const Player = z.object({
username: z.string(),
bio: z.string(),
xp: z.number(),
// ...20 more properties...
});
const CompiledPlayer = z.compile(Player);
A compiled schema can be used exactly like an uncompiled one. There are no special rules around compiled schemas. They're just faster.
Player.parse({ ... });
CompiledPlayer.parse({ ... }); // ~9x faster
On objects, arrays, and unions, this speeds up parsing by a factor of ~3–9. More complex schemas stand to benefit more than simpler ones.
Time per parse by schema type, standard parser vs compiled — lower is better (benchmark)
Below are the Moltar benchmark results comparing Zod (compiled and uncompiled) against the Moltar ParseSafe bench.
Throughput on the moltar benchmark fixture (parseSafe: returns a new object with unknown keys stripped) — higher is better (benchmark)
And the equivalent results for the Moltar AssertLoose bench. Tested against the new z.validate(schema, input) function (detailed later in the post).
Throughput on the moltar benchmark fixture (assertLoose: returns a boolean, unknown keys allowed) — higher is better (benchmark)
Zod's entire test suite runs twice—once normally and again with auto-compilation enabled globally—to ensure perfect fidelity.
Under the hood, z.compile() walks the entire schema once and produces a hyperoptimized snippet of flat, loop-free JavaScript that can validate inputs far faster than a standard runtime validator. This snippet can be executed via new Function() (effectively a more powerful eval) to serve as a fast-path validator. Schemas use this to "fast check" validity, falling back to the regular runtime logic on validation failure to provide granular error information.
Take this simple Point schema:
const Point = z.object({
x: z.number(),
y: z.number()
});
Here is the generated snippet for it:
const isPoint = new Function("input", `
if (typeof input !== "object" || input === null) return false;
if (typeof input.x !== "number") return false;
if (typeof input.y !== "number") return false;
return true;
`);
isPoint({ x: 1, y: 2 }); // true
isPoint({ x: "1" }); // false
For the large majority of inputs, the generated function validates the data with the fastest logic JavaScript can express: straight-line typeof checks and property reads, with no interpreter in between. When it can't handle an input, Zod falls back to the standard parser.
This is the function Zod generates for the Player schema above:
if (typeof input !== "object" || input === null || Array.isArray(input)) return INVALID;
const v0 = input["username"];
if (typeof v0 !== "string") return INVALID;
const v1 = input["bio"];
if (typeof v1 !== "string") return INVALID;
const v2 = input["xp"];
if (typeof v2 !== "number" || !Number.isFinite(v2)) return INVALID;
const v3 = { "username": v0, "bio": v1, "xp": v2 };
return v3;
Armed with the power of new Function(), this happens in-process at runtime. There is no need to integrate with your build system.
The compiled schema is purely additive on top of the existing schema. It tacks on the pre-compiled fast path for checking valid inputs. When invalid data is detected, it returns the
INVALIDsymbol to signal that parsing should fall back to the uncompiled parser. This structurally prevents subtle deviations in error reporting between compiled and uncompiled variants.
import "zod/compile"To compile every schema in an application, import zod/compile once at the top of your entry point. Every schema constructed after that import is automatically compiled the first time it's used to parse data.
import "zod/compile"; // must come before modules that define schemas
import * as z from "zod";
const schema = z.object({ name: z.string() });
schema.parse({ name: "ok" }); // compiled on first parse
It also works as a Node.js CLI flag, which guarantees it runs before any module defines a schema:
node --import zod/compile app.js
Or set preload in bunfig.toml or nub.jsonc.
{
"preload": ["zod/compile"]
}
All schemas benefit to varying degrees, though complex object/tuple/array schemas benefit more than simple scalar validators.
Read the docs, or the full technical writeup: Introducing
z.compile()
z.creditCard()A new string format: 12–19 digits, optionally separated by single spaces or hyphens, with a valid Luhn checksum. (#5931)
z.creditCard().parse("4111 1111 1111 1111"); // ✅
z.creditCard().parse("4111 1111 1111 1112"); // ❌ bad checksum
z.properties()The multi-property counterpart to z.property(). (#5912)
const httpsUrl = z.instanceof(URL).check(
...z.properties({
protocol: z.literal("https:" as string),
hostname: z.string().regex(z.regexes.domain),
})
);
httpsUrl.parse(new URL("https://example.com")); // ✅
httpsUrl.parse(new URL("http://localhost")); // ❌ protocol
z.deepPartial()Back in functional form after being removed as a method in Zod 4. (#5928)
const Post = z.object({
title: z.string(),
author: z.object({ name: z.string(), email: z.string() }),
});
const PartialPost = z.deepPartial(Post);
type PartialPost = z.output<typeof PartialPost>;
// => { title?: string; author?: { name?: string; email?: string } }
PartialPost.parse({ author: {} }); // ✅
The result is still a ZodObject, so .shape and .extend() keep working.
.exactPartial()Like .partial(), but wraps each field in z.exactOptional() instead of z.optional(): keys may be omitted, but an explicit undefined is rejected. This matches TypeScript's Partial<> under exactOptionalPropertyTypes. (#6065)
const Recipe = z.object({ title: z.string(), servings: z.number() });
const PartialRecipe = Recipe.exactPartial();
PartialRecipe.parse({}); // ✅
PartialRecipe.parse({ title: undefined }); // ❌
In Zod Mini it's a top-level function: z.exactPartial(Recipe).
z.validate()Standalone boolean validation, in Zod, Zod Mini, and Zod Core. It answers "is this input valid?" without constructing a ZodError, which makes rejection cheap: on invalid input it is up to 16x faster than .safeParse().success. The return type is a guard on the schema's input type, and z.validateAsync() covers schemas with async refinements. (#6471)
z.validate(z.string(), "hi"); // true
z.validate(z.string(), 42); // false
z.input() / z.output()Project a schema onto its input or output side. Useful for validating the two halves of a codec independently. (#5928)
const isoDate = z.codec(z.iso.datetime(), z.date(), {
decode: (s) => new Date(s),
encode: (d) => d.toISOString(),
});
const Event = z.object({ name: z.string(), at: isoDate });
z.input(Event).parse({ name: "launch", at: "2024-01-01T00:00:00Z" }); // ✅
z.output(Event).parse({ name: "launch", at: new Date() }); // ✅
This is a no-op on schemas not containing codecs/pipes.
z.toZod<T>()A utility to define a Zod schema that agrees exactly with a static type, often one that is handwritten or externally defined. (#5913)
type Player = { username: string; xp: number };
const Player = z.toZod<Player>()(
z.object({
username: z.string(),
xp: z.number(),
})
);
Player.shape.username; // ZodString — the schema is returned unchanged
z.getDiscriminatedOption()Extract a discriminated union member by discriminator value. (#5947)
const Fruit = z.object({ type: z.literal("fruit"), seeds: z.boolean() });
const Veg = z.object({ type: z.literal("vegetable"), leafy: z.boolean() });
const Produce = z.discriminatedUnion("type", [Fruit, Veg]);
z.getDiscriminatedOption(Produce, "fruit"); // typeof Fruit
z.getDiscriminatedOption(Produce, "meat"); // ❌ TypeScript error
Zod recursive schemas now support cyclical data. For bundle size reasons, Zod Mini requires you to register a memoizer explicitly. (#6387, #6482)
Zod
const Category = z.object({
name: z.string(),
get subcategories() {
return z.array(Category);
},
});
const input: any = { name: "root", subcategories: [] };
input.subcategories.push(input);
const result = Category.parse(input);
result.subcategories[0] === result; // true
Zod Mini
// register a memoizer before defining any schemas
z.config({ memoizer: z.memoizer() });
const result = Category.parse(input);
result.subcategories[0] === result; // true
In Zod 4.4 a bare z.string() retained 7.5kb of heap. In Zod 4.5 it retains 784 bytes.
Retained heap per schema instance, Zod 4.4.3 vs 4.5 (benchmark)
In Zod 4.4 and earlier, all schema methods were automatically bound to the instance itself. This allowed users to pluck methods from schemas without causing issues due to this-binding.
const { parse } = z.string();
parse("some data");
A consequence of this is that each bound method allocates space on the heap; method implementations are not shared across all instances via prototype, as you'd expect. Zod 4.5 implements a method memoization pattern that avoids allocating bound methods until they are actually accessed.
Read the deep dive: Reducing Zod's memory footprint by an order of magnitude
Zod .parse()/.safeParse() instantiates a JavaScript Error, which captures a stack trace. In the case of validation failures, this is often much slower than the parsing logic itself. When using .safeParse(), Zod no longer captures this stack trace, speeding up failure-path parses by a factor of ~7.5x. (#6316, #6450)
const result = Player.safeParse({ username: 42, bio: "hello", xp: 12 });
result.success; // false — ~7.5x faster than Zod 4.4
Player schema (benchmark)
z.object()A shape can now declare a symbol key. TypeScript tracks it: a const symbol infers as unique symbol, so z.infer makes the key required and checks its value type. Undeclared symbol keys are still ignored. (#6448)
const TAG = Symbol("tag");
const schema = z.object({ name: z.string(), [TAG]: z.number() });
schema.parse({ name: "alice", [TAG]: 42 }); // ✅ { name: "alice", [TAG]: 42 }
schema.safeParse({ name: "alice" }); // ❌ the symbol key is required
All of these fix soundness issues, so a schema that relied on the old behavior may now reject input it used to accept.
z.iso.datetime() requires secondsRFC 3339 mandates seconds. z.iso.datetime() and z.iso.datetime({ offset: true }) no longer accept minute-precision input like 2020-01-01T06:15Z. local: true still admits 2020-01-01T06:15, since an unqualified datetime is outside RFC 3339 either way. (#6457)
z.iso.datetime().parse("2020-01-01T06:15:00Z"); // ✅
z.iso.datetime().parse("2020-01-01T06:15Z"); // ❌ was accepted in 4.4
To accept both forms, union the two precisions:
z.union([z.iso.datetime(), z.iso.datetime({ precision: -1 })]);
.min(), .max(), and .length() counted UTF-16 code units, so z.string().max(5) rejected five emoji. They now count Unicode code points, which is what every non-JS consumer of a length bound does (Postgres, MySQL, Go, Python, and the maxLength that z.toJSONSchema() emits). .max() only loosens; .min() and .length() tighten for astral input. Graphemes are unchanged — a ZWJ sequence is still several code points. (#6441)
z.string().max(5).parse("😀😀😀😀😀"); // was too_big, now passes
z.string().min(5).parse("😀😀😀"); // was fine, now too_small
Closes #3355.
A record's key schema now governs only the keys that match it, the way TypeScript treats an index signature. Intersecting an object with a pattern-keyed record no longer rejects the object's own keys. (#6412)
z.object({ name: z.string() })
.and(z.record(z.string().regex(/^S_/), z.string()))
.parse({ name: "a", S_a: "s" });
// 4.4: throws invalid_key on "name"
// 4.5: { name: "a", S_a: "s" }
Separately, an unrecognized_keys issue no longer aborts the schema it came from, so a strict object with an extra key and a bad value now reports both issues instead of just the first. Closes #2200, #2573, #4017, #5663.
__proto__ is always strippedObject and record parsers now drop a __proto__ key whether it comes from the input, is declared by the schema, or is produced by a record key transform. A key that a record's key schema normalizes to __proto__ is dropped too. .strict() reports an own __proto__ input key as unrecognized_keys instead of silently swallowing it. Error formatters and both JSON Schema converters use own-property writes so a toString or constructor path segment can't walk onto Object.prototype (#6213, #6367, #6346). (#6386, #6354, #6355, #6221)
z.ipv6() validated by handing the string to new URL(), which let ::@1\ and ::1\n through. It now checks the address alphabet directly (#6442).z.ulid() restricts the first character to 0–7; anything higher overflows the 48-bit timestamp. A fixture that doesn't start with a real timestamp, such as one with a leading letter, is now rejected (#6095).z.httpUrl() enforces the RFC 1035 length limits on the host, matching z.hostname() (#6035).z.emoji() no longer backtracks exponentially on a failed match (#6347).z.string().includes(sub, { position: N }) emits a JSON Schema pattern that allows at least N leading characters, matching String.prototype.includes (#6024).Zod 4.5 rolls up 155 commits. Thanks to everyone who contributed: @dokson, @deepshekhardas, @zirkelc, @francisjohnjohnston-web, @MerlijnW70, @codinsonn, @oimo23, @JSap0914, @zelinewang, @abhishek-chaudhary2003, @spokodev, @Mohammad-Faiz-Cloud-Engineer, @hamed-bavar, @MGPOCKY, @ChiChuRita, @dinwwwh, @thristhart, @tsmartin9, @vedanshshetti, @belicam, @frastefanini, @andersk, @musaddiq-rafi, @tachmyratsaparmyradov, @arvindfroi, @KUMachine, @spidersouris, @catdalfonso, @mneetika, @gwagjiug, @MahinAnowar, , , , , , , , , , , , , , , , , , , , , .
9782f87c perf(v4): validate without building the output, and keep schemas out of dictionary mode (#6480) by @colinhacks773a4867 refactor(v4): declare a trait's members on $constructor (#6478) by @colinhacks68fb3f13 feat(v4): make z.compile() fall back instead of throwing (#6479) by @colinhacks37b01501 feat(v4): add z.isValid and z.isValidAsync (#6471) by @colinhacks749f5452 docs: add fullproduct.dev to v4 ecosystem page (#6001) by @codinsonn24cdb7fd perf(v4): close the fastpass bindings into the compiled parser (#6464) by @colinhacks8d896186 fix(v4): stop emitting a multipleOf that JSON Schema rejects (#6468) by @colinhacks43f729db feat(v4): make a tuple's items optional with .partial() (#6465) by Back in functional form after being removed as a method in Zod 4. (#5928)
faf33a28fix: surface @deprecated on re-exported compat aliases (#6072) by @MahinAnowar
RFC 3339 mandates seconds.
z.iso.datetime()andz.iso.datetime({ offset: true })no longer accept minute-precision input like2020-01-01T06:15Z.local: truestill admits2020-01-01T06:15, since an unqualified datetime is outside RFC 3339 either way. (#6457)
z.emoji()no longer backtracks exponentially on a failed match (#6347).
Zod
.parse()/.safeParse()instantiates a JavaScriptError, which captures a stack trace. In the case of validation failures, this is often much slower than the parsing logic itself. When using.safeParse(), Zod no longer captures this stack trace, speeding up failure-path parses by a factor of ~7.5x. (#6316, #6450)
A record's key schema now governs only the keys that match it, the way TypeScript treats an index signature. Intersecting an object with a pattern-keyed record no longer rejects the object's own keys. (#6412)
Separately, an
unrecognized_keysissue no longer aborts the schema it came from, so a strict object with an extra key and a bad value now reports both issues instead of just the first. Closes #2200, #2573, #4017, #5663.
97edaf7d fix(v4): don't throw from safeParse on bigint multipleOf(0n) (#6466) by @colinhacks1cf9cd09 docs: record that error maps run per parse, and how to translate at render by @colinhacks7ce3e77d fix(v4): run a wrapper's inner schema on its own payload (#6462) by @colinhacks7b612b53 fix(v4): fold an intersection of object schemas into one object (#6461) by @colinhacks1c43b774 docs(v4): record why the failure path is not worth compiling by @colinhacksbadf0b78 fix(v4): build the catch context from the input that failed (#6192) by @zelinewanga87ac366 fix(v4)!: distinguish number and bigint formats at the type level (#6052) by @abhishek-chaudhary20036726c1dd docs: record what z.input and z.output do with transforms and wrappers by @colinhacks7cfc0122 fix(v4): keep a wrapper's stored value only on the side it belongs to by @colinhacksa825c1b0 fix(v4): empty enums and literals match nothing (#6459) by @colinhacks7c070db9 feat(v4): expose the function schema on .implement() results (#6267) by @deepshekhardas3a496968 fix(v4): make record input keys optional when the value can fill them (#6460) by @colinhacks53cec2a0 fix(v4): resolve z.input past a preprocess transform by @colinhacks168122fc fix(v4): carry a pipe's own checks through z.output by @colinhacks51a1368a fix(v4): let the includes(position) pattern match at or after the offset (#6024) by @francisjohnjohnston-web72a05c4f feat(v4): expose stringbool truthy/falsy/case via _zod.bag (#6357) by @hamed-bavar036b39f4 fix(v4)!: require seconds once a datetime carries a Z or an offset (#6457) by @colinhacks5825605e perf(v4): skip the eager stack capture when building a ZodError (#6450) by @colinhacksd85472c4 feat(v4): support declared symbol keys in z.object() (#6448) by @colinhacksd4108872 fix(v4): correct the date/time format keywords in both JSON Schema directions (#6452) by @colinhacks555e5f46 Add z.toZod helper (#5913) by @colinhackse0e51a55 docs(v4): cut the compile comments down to what they explain (#6449) by @colinhacks6574e784 fix(v4): stop catch resurrecting issues an optional already resolved (#6440) by @colinhacks937b5d01 perf(v4): prefix issue paths in place in the object JIT failure path (#6445) by @colinhacksb63db248 fix(v4): keep a memoized node's cached issues private to the cache (#6443) by @colinhacks6ec3d043 fix(resolution): keep pnpm's own warnings out of the attw snapshot (#6446) by @colinhacks830ba314 fix(v4): validate the address, and return the string that was validated (#6442) by @colinhacksf101d8ca Preserve callsites in parse stack traces (#5910) by @colinhacks6c77d028 feat: compact simple anyOf unions to type array in toJSONSchema (#6339) by @deepshekhardas28e1ebd8 fix(v4): measure string length in Unicode code points (#6441) by @colinhacks2848177d docs: point the flattened/formatted error deprecations at a symbol that exists by @colinhacks3c2dee9e Add properties checks for instanceof schemas (#5912) by @colinhacks87ffeb0f fix(v4): an absent key on the middle rung supplies nothing (#6434) by @colinhacks0135c85a feat(v4): allow passing extra args to apply() (#6337) by @deepshekhardasca246d26 fix(v4): drop empty alternation branch from datetime pattern (#6439) by @colinhackse073d55b docs: z.iso.datetime() accepts a subset of ISO 8601, not all of it by @colinhacksd6ca12ae fix(v4): infer recursive getter options in discriminatedUnion (#6422) by @colinhacksdc51404b Add shorn to Zod Utilities (#6398) by @ChiChuRita580111da docs: mark AOT compilation as canary-only by @colinhacks6b0dae79 docs: note that a catch callback is not islanded by @colinhacks898c4461 refactor(v4): give the runtime and compiled code one URL implementation by @colinhacks260e5d4b fix(v4): stop islanding a catch callback, which diverged silently by @colinhacks11c9268b revert(core): drop the exactOptional parse prototype from #6432 (#6438) by @colinhacksa38ab4a8 fix(core): an omittable discriminator claims undefined (#6432) by @colinhacksc9ec89e0 perf(core): drop the seal and the per-key WeakSet from the lazy internals (#6435) by @colinhacksfa77a4d7 feat(v4): z.compile — ahead-of-time schema compilation (#6085) by @colinhacksf300476d fix(v4): let a schema's error map cover its own checks' issues (#6426) by @colinhacks9f0a3d81 fix(core): restore defineLazy semantics lost in the internals move (#6429) by @colinhacks604464c3 fix(locales): da/nn/no/sv called an IP address a range (#6430) by @colinhacks7378e7cd fix(locales): backfill the mac and Sizable.map gaps, and pin dictionary parity (#6427) by @colinhacksb1077f05 perf(memory): install derived internals on a per-constructor prototype (#6415) by @colinhacksccc15144 fix(locales): add the credit_card key to the seven locales missing it (#6424) by @colinhacks73bacbbb fix(from-json-schema): drop redundant inclusive bound for draft-04 exclusive ranges (#6022) by @francisjohnjohnston-web86b2e6da docs: list el and hr in the supported locales (#6423) by @colinhacks45fdeda5 fix(v4): refine optin into a three-rung ladder, retire the fallback payload flag (#6419) by @colinhacks5b34c0ce Improve Portuguese localization and add Brazilian Portuguese (pt-BR) (#6076) by @thristhartdc1a40a5 fix(locales): improve french translation (#6120) by @tsmartin90175a043 feat(locales): add Hindi and Kannada locale support (#6315) by @vedanshshetti07b0c3d8 fix: preserve explicit superRefine issue input (#6053) by @frastefanini234c407d feat(lang): Added Bengali locale (#5974) by @musaddiq-rafi377cd9d7 feat(locales): add turkmen (tk) locale (#6168) by @tachmyratsaparmyradov69b6bb08 feat(locales): add Norwegian Nynorsk (nn) locale (#6092) by @arvindfroi33d82e6b Add Central Kurdish (ckb) locale (#6078) by @KUMachine06666fe2 fix(fr): remove hyphen in "non-optionnel" (#5999) by @spidersouris79cfedea feat(v4): expose the owning schema on check-originated issues (#6420) by @colinhacks436b5da8 docs: propose compiled constructor graph by @colinhackseb4682c9 fix(json-schema): resolve tuple minItems past transform and catch in input mode (#6418) by @colinhacks4d6b5cd3 fix(json-schema): route unrepresentable default values through unrepresentable by @colinhacks2abc9e05 docs: note that the JSON Schema emitter reads static optin (#6417) by @colinhacks578e1cd0 feat(v4): support format: "hostname" in fromJSONSchema (#6305) by @catdalfonso942bf8cb feat(v4): parse input containing reference cycles (#6387) by @colinhacks78b523f0 fix(json-schema): keep preprocess object properties required in input mode (#6133) by @MerlijnW70973b1b44 fix(v4): strip output-typed catch values from the input JSON Schema (#6409) by @colinhacks4e1720c8 fix(v4): align record keys and intersection strictness with TypeScript (#6412) by @colinhacks4cc4053d fix: honor loose mode for closed record key schemas (#6157) by @pullfrog[bot]69be843f fix(v4): stop the object JIT fastpass keeping a swallowed issue's value (#6407) by @colinhacksb899cd17 perf(json-schema): make toJSONSchema(registry) linear in registry size (#6408) by @colinhacks6074828e fix(v4): make fromJSONSchema propertyNames compose with the other object keywords (#6411) by @colinhacksd7b209f3 docs: point the Web URLs callout at z.httpUrl() (#6410) by @colinhacks611bd762 fix(mini): make merge() take an object schema, matching classic (#6404) by @colinhacksb53e53cc fix(v4): use exact flag in English locale too_small/too_big messages (#6177) by @pullfrog[bot]421cc9a5 fix(json-schema): unescape JSON Pointer tokens when resolving $ref (#6402) by @colinhacks4c27fe87 fix(v4): give z.xor() a distinct error when multiple options match (#6376) by @colinhackse8034eba fix(v4): make prefixItems/draft-7 items respect minItems in fromJSONSchema (#6201) by @pullfrog[bot]784e5c26 fix(v4): let bundlers tree-shake locales out of the default import (#6384) by @colinhacks97edd70a fix(toJSONSchema): constrain closed tuple length (#6194) by @pullfrog[bot]faf33a28 fix: surface @deprecated on re-exported compat aliases (#6072) by @MahinAnowar3956224a docs: state that metadata wins over generated JSON Schema keywords (#6401) by @colinhacksa1904fc2 fix(v4): report date origin for numeric min/max bounds (#6129) by @MerlijnW70bd18314c fix: escape JSON Pointer reserved characters in toJSONSchema $ref (closes #6027) (#6144) by @MaksZhukov2a5164f5 fix(v4): enforce RFC 1035 length limits in regexes.domain (#6035) by @emmayusufu0e5bc4b1 fix(v4): respect additionalProperties:false with patternProperties in fromJSONSchema (#6199) by @pullfrog[bot]c8f06d36 fix(v4): clarify infinite number errors (#5906) by @colinhacksbd6619c0 feat(json-schema): accept a function for unrepresentable (#6380) by @colinhacks9d20fdc3 fix(v4): preserve z.preprocess input narrowing (#5967) by @devareddy053063993a perf(v4): cut per-schema memory ~90% by moving methods to the prototype (#6318) by @zirkelcfd074106 feat(json-schema): run override before the unrepresentable error (#6391) by @colinhacks2715c12e fix(v4): preserve default English locale across tree-shaken bundles (#5959) by @colinhacks18b4ff99 docs(ecosystem): add zodql to API Libraries (#6227) by @mattiasahlsen479d6f51 shill oxlint (#6196) by @samchungy85dba7e1 docs: document that any/unknown object keys are required (#6388) by @colinhacksd24fb4c3 fix: consistently strip proto from parsed objects (#6386) by @colinhacks8ac9ae51 fix(docs-v3): serve the docsify SPA fallback on Vercel (#6378) by @colinhacks31384464 fix(v4): complete reserved-key hardening (#6371) by @colinhacks600c6909 docs: add Attaform to ecosystem (#6188) by @ozzyfromspace37c05fa5 docs(ecosystem): rename zod-to-mongo-schema to zod-mongo-schema (#6178) by @udohjeremiahbadfdf08 docs: update keyof() ZodEnum type to the v4 form (#6124) by @patrickwehbee25b68e1 perf(v4): let three dead declarations tree-shake under esbuild (#6381) by @colinhacks53397351 docs(ecosystem): Add zod-mongoose list item in Zod To X (#6062) by @Harm-Nullix9c914ee8 docs: add dynamic error message and combined refinement examples for refine() (#6002) by @IdanGonen921649de fix(v4): formatError and treeifyError handle inherited-name path elements (#6367) by @deepshekhardase7029aa4 fix(v4): report own proto key under .strict() (#6221) by @pullfrog[bot]9c540db8 fix(v4): re-check the record key after the key schema runs (#6355) by @colinhacks8bb89ea4 docs: add .nonempty() to Strings, Arrays, Sets, and Maps sections (#6056) by @pullfrog[bot]599c0e41 docs(ecosystem): Add @chrock-studio/overload and @chrock-studio/zod-utils (#6040) by @JuerGenie27a9036a docs(ecosystem): eslint-plugin-zod is eslint-zod now (#5975) by @marcalexiei66fba964 docs: show z.instanceof with built-in classes (#6059) by @itsahmedbilal2d90846a fix(docs): make the prefault example runnable (#6063) by @DucMinhNeead9fcb3 fix(v4): write a declared proto key as an own property (#6354) by @colinhacksc58764c5 docs: fix UUID helper list in v4 introduction (#6214) by @meliharikf238fbd2 fix: remove exponential backtracking from the emoji regex (#6347) by @colinhackse6c213ec fix(json-schema): keep proto keys as own properties in schema conversion (#6346) by @colinhacks573fcb75 fix(errors): use own-property semantics in every error-tree walker (#6213) by @pullfrog[bot]6f5e99fd fix(docs-v3): rename README.md to home.md so Vercel serves it by @colinhacksbbc68f99 docs: soften Zod 3 EOL callouts to informational tone by @colinhacks3fc9b25f docs: reframe library-authors page Zod-4-first; note Zod 3 EOL by @colinhacks