-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
perf: avoid unnecessary error maps #2532
Conversation
✅ Deploy Preview for guileless-rolypoly-866f8a ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
This solves my issue. Thank you! but it causes some other problems if there is no custom ErrorMap defined. Test examples: test("too small error with custom error map and custom message", () => {
try {
z.string().nonempty("nonempty").parse("", {
errorMap: () => {
return {message: "override"}
}
})
} catch
(err) {
const zerr: z.ZodError = err as any;
expect(zerr.issues[0].code).toEqual(z.ZodIssueCode.too_small);
expect(zerr.issues[0].message).toEqual(`override`);
}
}
);
// this test fails
test("too small error with no custom error map and custom message", () => {
try {
z.string().nonempty("nonempty").parse("")
} catch
(err) {
const zerr: z.ZodError = err as any;
expect(zerr.issues[0].code).toEqual(z.ZodIssueCode.too_small);
expect(zerr.issues[0].message).toEqual(`nonempty`);
}
}
); It also breaks some test in the error.test.ts file. |
@adamsujeta This PR is indent on performance only, it should be backward compatible. For your test cases, they have different result on my local environment:
And the result is as expected. In your first test case, the provided error message |
Yes you are right. I messed up in line 19 Ehhhh if this is the intended behavior, than for me it causes some issues because I wanted to translate everything in the error Map function and set only the keys to the translations in schema, but if it is so then I need to deal with it in another way. Thank you for your help and sorry again. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Thanks for the work on this @xuxucode! This is a great fix. Zod's current approach to error maps is pretty dumb as you probably noticed. Big changes coming in Zod 4. |
This has landed in Zod 3.23. https://github.com/colinhacks/zod/releases/tag/v3.23.0 |
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.5` -> `3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/ariakit/ariakit). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.5` -> `3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/ziyadedher/ziyadedher). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`^3.22.5` -> `^3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/inabagumi/shinju-date). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`^3.22.5` -> `^3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/fwouts/previewjs). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | packageManager | patch | [`9.0.4` -> `9.0.5`](https://renovatebot.com/diffs/npm/pnpm/9.0.4/9.0.5) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/pnpm/pnpm/badge)](https://securityscorecards.dev/viewer/?uri=github.com/pnpm/pnpm) | | [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | engines | patch | [`9.0.4` -> `9.0.5`](https://renovatebot.com/diffs/npm/pnpm/9.0.4/9.0.5) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/pnpm/pnpm/badge)](https://securityscorecards.dev/viewer/?uri=github.com/pnpm/pnpm) | | [type-fest](https://togithub.com/sindresorhus/type-fest) | devDependencies | minor | [`4.15.0` -> `4.16.0`](https://renovatebot.com/diffs/npm/type-fest/4.15.0/4.16.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/sindresorhus/type-fest/badge)](https://securityscorecards.dev/viewer/?uri=github.com/sindresorhus/type-fest) | | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | dependencies | minor | [`3.22.5` -> `3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/colinhacks/zod/badge)](https://securityscorecards.dev/viewer/?uri=github.com/colinhacks/zod) | --- ### Release Notes <details> <summary>pnpm/pnpm (pnpm)</summary> ### [`v9.0.5`](https://togithub.com/pnpm/pnpm/compare/v9.0.4...v9.0.5) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v9.0.4...v9.0.5) </details> <details> <summary>sindresorhus/type-fest (type-fest)</summary> ### [`v4.16.0`](https://togithub.com/sindresorhus/type-fest/releases/tag/v4.16.0) [Compare Source](https://togithub.com/sindresorhus/type-fest/compare/v4.15.0...v4.16.0) ##### New types - [`IsInteger`](https://togithub.com/sindresorhus/type-fest/blob/main/source/is-integer.d.ts) - [`IsFloat`](https://togithub.com/sindresorhus/type-fest/blob/main/source/is-float.d.ts) ##### Fixes - `Integer`: Fix handling of some edge-cases ([#​857](https://togithub.com/sindresorhus/type-fest/issues/857)) [`f5b09de`](https://togithub.com/sindresorhus/type-fest/commit/f5b09de) - `Float`: Fix handling of some edge-cases ([#​857](https://togithub.com/sindresorhus/type-fest/issues/857)) [`f5b09de`](https://togithub.com/sindresorhus/type-fest/commit/f5b09de) </details> <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday,before 4am on Thursday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/TransMascFutures). PR-URL: #406 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | OpenSSF | |---|---|---|---|---|---|---|---|---| | [@iconify-json/simple-icons](https://icon-sets.iconify.design/simple-icons/) | [`1.1.99` -> `1.1.100`](https://renovatebot.com/diffs/npm/@iconify-json%2fsimple-icons/1.1.99/1.1.100) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@iconify-json%2fsimple-icons/1.1.100?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@iconify-json%2fsimple-icons/1.1.100?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@iconify-json%2fsimple-icons/1.1.99/1.1.100?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@iconify-json%2fsimple-icons/1.1.99/1.1.100?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch | | | [@snaplet/seed](https://snaplet.dev/seed) | [`0.94.1` -> `0.95.0`](https://renovatebot.com/diffs/npm/@snaplet%2fseed/0.94.1/0.95.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@snaplet%2fseed/0.95.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@snaplet%2fseed/0.95.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@snaplet%2fseed/0.94.1/0.95.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@snaplet%2fseed/0.94.1/0.95.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | | | [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) | [`1.10.60` -> `1.10.61`](https://renovatebot.com/diffs/npm/libphonenumber-js/1.10.60/1.10.61) | [![age](https://developer.mend.io/api/mc/badges/age/npm/libphonenumber-js/1.10.61?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/libphonenumber-js/1.10.61?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/libphonenumber-js/1.10.60/1.10.61?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/libphonenumber-js/1.10.60/1.10.61?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | | [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) | [`1.10.60` -> `1.10.61`](https://renovatebot.com/diffs/npm/libphonenumber-js/1.10.60/1.10.61) | [![age](https://developer.mend.io/api/mc/badges/age/npm/libphonenumber-js/1.10.61?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/libphonenumber-js/1.10.61?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/libphonenumber-js/1.10.60/1.10.61?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/libphonenumber-js/1.10.60/1.10.61?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch | | | [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | [`9.0.4` -> `9.0.5`](https://renovatebot.com/diffs/npm/pnpm/9.0.4/9.0.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/9.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/9.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/9.0.4/9.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/9.0.4/9.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | packageManager | patch | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/pnpm/pnpm/badge)](https://securityscorecards.dev/viewer/?uri=github.com/pnpm/pnpm) | | [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | [`9.0.4` -> `9.0.5`](https://renovatebot.com/diffs/npm/pnpm/9.0.4/9.0.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/9.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/9.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/9.0.4/9.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/9.0.4/9.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | engines | patch | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/pnpm/pnpm/badge)](https://securityscorecards.dev/viewer/?uri=github.com/pnpm/pnpm) | | [react-phone-number-input](https://gitlab.com/catamphetamine/react-phone-number-input) | [`3.3.12` -> `3.4.0`](https://renovatebot.com/diffs/npm/react-phone-number-input/3.3.12/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-phone-number-input/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-phone-number-input/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-phone-number-input/3.3.12/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-phone-number-input/3.3.12/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor | | | [remeda](https://togithub.com/remeda/remeda) | [`1.60.1` -> `1.61.0`](https://renovatebot.com/diffs/npm/remeda/1.60.1/1.61.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/remeda/1.61.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/remeda/1.61.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/remeda/1.60.1/1.61.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/remeda/1.60.1/1.61.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/remeda/remeda/badge)](https://securityscorecards.dev/viewer/?uri=github.com/remeda/remeda) | | [type-fest](https://togithub.com/sindresorhus/type-fest) | [`4.15.0` -> `4.16.0`](https://renovatebot.com/diffs/npm/type-fest/4.15.0/4.16.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/type-fest/4.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/type-fest/4.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/type-fest/4.15.0/4.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/type-fest/4.15.0/4.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/sindresorhus/type-fest/badge)](https://securityscorecards.dev/viewer/?uri=github.com/sindresorhus/type-fest) | | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.5` -> `3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/colinhacks/zod/badge)](https://securityscorecards.dev/viewer/?uri=github.com/colinhacks/zod) | | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.5` -> `3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/colinhacks/zod/badge)](https://securityscorecards.dev/viewer/?uri=github.com/colinhacks/zod) | --- ### Release Notes <details> <summary>catamphetamine/libphonenumber-js (libphonenumber-js)</summary> ### [`v1.10.61`](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.60...8e9808e3d908cee0e34600401a95367475de5a13) [Compare Source](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.60...v1.10.61) </details> <details> <summary>pnpm/pnpm (pnpm)</summary> ### [`v9.0.5`](https://togithub.com/pnpm/pnpm/compare/v9.0.4...v9.0.5) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v9.0.4...v9.0.5) </details> <details> <summary>catamphetamine/react-phone-number-input (react-phone-number-input)</summary> ### [`v3.4.0`](https://gitlab.com/catamphetamine/react-phone-number-input/blob/HEAD/CHANGELOG.md#340--22042024) [Compare Source](https://gitlab.com/catamphetamine/react-phone-number-input/compare/v3.3.12...v3.4.0) \================== - In response to a recently reported [issue](https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/228), changed the behavior of the "With Country Select" input in cases when the calling code corresponds to multiple possible countries (for example, `+1` calling code corresponds to both `US` and `CA`): now it will prefer showing the country flag that was selected manually by the user, or the default country flag. </details> <details> <summary>remeda/remeda (remeda)</summary> ### [`v1.61.0`](https://togithub.com/remeda/remeda/compare/v1.60.1...43e44cea0d382d94c20218f31b2e5fdde842ed0e) [Compare Source](https://togithub.com/remeda/remeda/compare/v1.60.1...v1.61.0) </details> <details> <summary>sindresorhus/type-fest (type-fest)</summary> ### [`v4.16.0`](https://togithub.com/sindresorhus/type-fest/releases/tag/v4.16.0) [Compare Source](https://togithub.com/sindresorhus/type-fest/compare/v4.15.0...v4.16.0) ##### New types - [`IsInteger`](https://togithub.com/sindresorhus/type-fest/blob/main/source/is-integer.d.ts) - [`IsFloat`](https://togithub.com/sindresorhus/type-fest/blob/main/source/is-float.d.ts) ##### Fixes - `Integer`: Fix handling of some edge-cases ([#​857](https://togithub.com/sindresorhus/type-fest/issues/857)) [`f5b09de`](https://togithub.com/sindresorhus/type-fest/commit/f5b09de) - `Float`: Fix handling of some edge-cases ([#​857](https://togithub.com/sindresorhus/type-fest/issues/857)) [`f5b09de`](https://togithub.com/sindresorhus/type-fest/commit/f5b09de) </details> <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoiZGV2IiwibGFiZWxzIjpbImF1dG9tZXJnZSIsImRlcGVuZGVuY2llcyIsImtvZGlhazogbWVyZ2UubWV0aG9kID0gJ3NxdWFzaCciXX0=--> --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Joe Karow <[email protected]>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.4` -> `3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.4/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.4/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.4/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 ### [`v3.22.5`](https://togithub.com/colinhacks/zod/compare/v3.22.4...e7a9b9b3033991be6b4225f1be21da39c250bbb0) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.22.4...e7a9b9b3033991be6b4225f1be21da39c250bbb0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" in timezone America/Chicago, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/autoblocksai/javascript-sdk). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | |---|---|---|---|---|---|---|---| | [ai](https://sdk.vercel.ai/docs) ([source](https://togithub.com/vercel/ai)) | [`3.0.23` -> `3.0.24`](https://renovatebot.com/diffs/npm/ai/3.0.23/3.0.24) | [![age](https://developer.mend.io/api/mc/badges/age/npm/ai/3.0.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/ai/3.0.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/ai/3.0.23/3.0.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/ai/3.0.23/3.0.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | [eslint-config-next](https://nextjs.org/docs/app/building-your-application/configuring/eslint#eslint-config) ([source](https://togithub.com/vercel/next.js/tree/HEAD/packages/eslint-config-next)) | [`14.2.1` -> `14.2.2`](https://renovatebot.com/diffs/npm/eslint-config-next/14.2.1/14.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-next/14.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-next/14.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-next/14.2.1/14.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-next/14.2.1/14.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | [next](https://nextjs.org) ([source](https://togithub.com/vercel/next.js)) | [`14.2.1` -> `14.2.2`](https://renovatebot.com/diffs/npm/next/14.2.1/14.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/next/14.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/next/14.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/next/14.2.1/14.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/next/14.2.1/14.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch | | [openai](https://togithub.com/openai/openai-python) | `1.20.0` -> `1.23.2` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/openai/1.23.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/openai/1.23.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/openai/1.20.0/1.23.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/openai/1.20.0/1.23.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor | | [openai](https://togithub.com/openai/openai-node) | [`4.36.0` -> `4.38.2`](https://renovatebot.com/diffs/npm/openai/4.36.0/4.38.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/openai/4.38.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/openai/4.38.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/openai/4.36.0/4.38.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/openai/4.36.0/4.38.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor | | [slackapi/slack-github-action](https://togithub.com/slackapi/slack-github-action) | `v1.25.0` -> `v1.26.0` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/slackapi%2fslack-github-action/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/slackapi%2fslack-github-action/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/slackapi%2fslack-github-action/v1.25.0/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/slackapi%2fslack-github-action/v1.25.0/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | action | minor | | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.4` -> `3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.4/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.4/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.4/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor | --- ### Release Notes <details> <summary>vercel/ai (ai)</summary> ### [`v3.0.24`](https://togithub.com/vercel/ai/releases/tag/ai%403.0.24) [Compare Source](https://togithub.com/vercel/ai/compare/[email protected]@3.0.24) ##### Patch Changes - [`e94fb32`](https://togithub.com/vercel/ai/commit/e94fb32): feat(ai/rsc): Make `onSetAIState` and `onGetUIState` stable </details> <details> <summary>vercel/next.js (eslint-config-next)</summary> ### [`v14.2.2`](https://togithub.com/vercel/next.js/compare/v14.2.1...c850e4a69a8ff62502753e2ff15bbabcea94b556) [Compare Source](https://togithub.com/vercel/next.js/compare/v14.2.1...v14.2.2) </details> <details> <summary>vercel/next.js (next)</summary> ### [`v14.2.2`](https://togithub.com/vercel/next.js/compare/v14.2.1...c850e4a69a8ff62502753e2ff15bbabcea94b556) [Compare Source](https://togithub.com/vercel/next.js/compare/v14.2.1...v14.2.2) </details> <details> <summary>openai/openai-python (openai)</summary> ### [`v1.23.2`](https://togithub.com/openai/openai-python/blob/HEAD/CHANGELOG.md#1232-2024-04-19) [Compare Source](https://togithub.com/openai/openai-python/compare/v1.23.1...v1.23.2) Full Changelog: [v1.23.1...v1.23.2](https://togithub.com/openai/openai-python/compare/v1.23.1...v1.23.2) ##### Bug Fixes - **api:** correct types for message attachment tools ([#​1348](https://togithub.com/openai/openai-python/issues/1348)) ([78a6261](https://togithub.com/openai/openai-python/commit/78a6261eaad7839284903287d4f647d9cb4ced0b)) ### [`v1.23.1`](https://togithub.com/openai/openai-python/blob/HEAD/CHANGELOG.md#1231-2024-04-18) [Compare Source](https://togithub.com/openai/openai-python/compare/v1.23.0...v1.23.1) Full Changelog: [v1.23.0...v1.23.1](https://togithub.com/openai/openai-python/compare/v1.23.0...v1.23.1) ##### Bug Fixes - **api:** correct types for attachments ([#​1342](https://togithub.com/openai/openai-python/issues/1342)) ([542d30c](https://togithub.com/openai/openai-python/commit/542d30c6dad4e139bf3eb443936d42b7b42dad54)) ### [`v1.23.0`](https://togithub.com/openai/openai-python/blob/HEAD/CHANGELOG.md#1230-2024-04-18) [Compare Source](https://togithub.com/openai/openai-python/compare/v1.22.0...v1.23.0) Full Changelog: [v1.22.0...v1.23.0](https://togithub.com/openai/openai-python/compare/v1.22.0...v1.23.0) ##### Features - **api:** add request id property to response classes ([#​1341](https://togithub.com/openai/openai-python/issues/1341)) ([444d680](https://togithub.com/openai/openai-python/commit/444d680cbb3745adbc27788213ae3312567136a8)) ##### Documentation - **helpers:** fix example snippets ([#​1339](https://togithub.com/openai/openai-python/issues/1339)) ([8929088](https://togithub.com/openai/openai-python/commit/8929088b206a04b4c5b85fb69b0b983fb56f9b03)) ### [`v1.22.0`](https://togithub.com/openai/openai-python/blob/HEAD/CHANGELOG.md#1220-2024-04-18) [Compare Source](https://togithub.com/openai/openai-python/compare/v1.21.2...v1.22.0) Full Changelog: [v1.21.2...v1.22.0](https://togithub.com/openai/openai-python/compare/v1.21.2...v1.22.0) ##### Features - **api:** batch list endpoint ([#​1338](https://togithub.com/openai/openai-python/issues/1338)) ([a776f38](https://togithub.com/openai/openai-python/commit/a776f387e3159f9a8f4dcaa7d0d3b78c2a884f91)) ##### Chores - **internal:** ban usage of lru_cache ([#​1331](https://togithub.com/openai/openai-python/issues/1331)) ([8f9223b](https://togithub.com/openai/openai-python/commit/8f9223bfe13200c685fc97c25ada3015a69c6df7)) - **internal:** bump pyright to 1.1.359 ([#​1337](https://togithub.com/openai/openai-python/issues/1337)) ([feec0dd](https://togithub.com/openai/openai-python/commit/feec0dd1dd243941a279c3224c5ca1d727d76676)) ### [`v1.21.2`](https://togithub.com/openai/openai-python/blob/HEAD/CHANGELOG.md#1212-2024-04-17) [Compare Source](https://togithub.com/openai/openai-python/compare/v1.21.1...v1.21.2) Full Changelog: [v1.21.1...v1.21.2](https://togithub.com/openai/openai-python/compare/v1.21.1...v1.21.2) ##### Chores - **internal:** add lru_cache helper function ([#​1329](https://togithub.com/openai/openai-python/issues/1329)) ([cbeebfc](https://togithub.com/openai/openai-python/commit/cbeebfcca8bf1a3feb4462a79e10099bda5bed84)) ### [`v1.21.1`](https://togithub.com/openai/openai-python/blob/HEAD/CHANGELOG.md#1211-2024-04-17) [Compare Source](https://togithub.com/openai/openai-python/compare/v1.21.0...v1.21.1) Full Changelog: [v1.21.0...v1.21.1](https://togithub.com/openai/openai-python/compare/v1.21.0...v1.21.1) ##### Chores - **api:** docs and response_format response property ([#​1327](https://togithub.com/openai/openai-python/issues/1327)) ([7a6d142](https://togithub.com/openai/openai-python/commit/7a6d142f013994c4eb9a4f55888464c885f8baf0)) ### [`v1.21.0`](https://togithub.com/openai/openai-python/blob/HEAD/CHANGELOG.md#1210-2024-04-17) [Compare Source](https://togithub.com/openai/openai-python/compare/v1.20.0...v1.21.0) Full Changelog: [v1.20.0...v1.21.0](https://togithub.com/openai/openai-python/compare/v1.20.0...v1.21.0) ##### Features - **api:** add vector stores ([#​1325](https://togithub.com/openai/openai-python/issues/1325)) ([038a3c5](https://togithub.com/openai/openai-python/commit/038a3c50db7b6a88f54ff1cd1ff6cbaef2caf87f)) </details> <details> <summary>openai/openai-node (openai)</summary> ### [`v4.38.2`](https://togithub.com/openai/openai-node/blob/HEAD/CHANGELOG.md#4382-2024-04-19) [Compare Source](https://togithub.com/openai/openai-node/compare/v4.38.1...v4.38.2) Full Changelog: [v4.38.1...v4.38.2](https://togithub.com/openai/openai-node/compare/v4.38.1...v4.38.2) ##### Bug Fixes - **api:** correct types for message attachment tools ([#​787](https://togithub.com/openai/openai-node/issues/787)) ([8626884](https://togithub.com/openai/openai-node/commit/8626884abd2494aa081db9e50a2f268b6cebc5df)) ### [`v4.38.1`](https://togithub.com/openai/openai-node/blob/HEAD/CHANGELOG.md#4381-2024-04-18) [Compare Source](https://togithub.com/openai/openai-node/compare/v4.38.0...v4.38.1) Full Changelog: [v4.38.0...v4.38.1](https://togithub.com/openai/openai-node/compare/v4.38.0...v4.38.1) ##### Bug Fixes - **api:** correct types for attachments ([#​783](https://togithub.com/openai/openai-node/issues/783)) ([6893631](https://togithub.com/openai/openai-node/commit/6893631334f75e232ba130f5dd67f1230b1e5fa0)) ### [`v4.38.0`](https://togithub.com/openai/openai-node/blob/HEAD/CHANGELOG.md#4380-2024-04-18) [Compare Source](https://togithub.com/openai/openai-node/compare/v4.37.1...v4.38.0) Full Changelog: [v4.37.1...v4.38.0](https://togithub.com/openai/openai-node/compare/v4.37.1...v4.38.0) ##### Features - **api:** batch list endpoint ([#​781](https://togithub.com/openai/openai-node/issues/781)) ([d226759](https://togithub.com/openai/openai-node/commit/d226759164fbed33198d8bdc315c98e1052dade8)) ### [`v4.37.1`](https://togithub.com/openai/openai-node/blob/HEAD/CHANGELOG.md#4371-2024-04-17) [Compare Source](https://togithub.com/openai/openai-node/compare/v4.37.0...v4.37.1) Full Changelog: [v4.37.0...v4.37.1](https://togithub.com/openai/openai-node/compare/v4.37.0...v4.37.1) ##### Chores - **api:** docs and response_format response property ([#​778](https://togithub.com/openai/openai-node/issues/778)) ([78f5c35](https://togithub.com/openai/openai-node/commit/78f5c3568d95d8e854c04049dc7d5643aa49e93f)) ### [`v4.37.0`](https://togithub.com/openai/openai-node/blob/HEAD/CHANGELOG.md#4370-2024-04-17) [Compare Source](https://togithub.com/openai/openai-node/compare/v4.36.0...v4.37.0) Full Changelog: [v4.36.0...v4.37.0](https://togithub.com/openai/openai-node/compare/v4.36.0...v4.37.0) ##### Features - **api:** add vector stores ([#​776](https://togithub.com/openai/openai-node/issues/776)) ([8bb929b](https://togithub.com/openai/openai-node/commit/8bb929b2ee91c1bec0a00347bf4f7628652d1be3)) </details> <details> <summary>slackapi/slack-github-action (slackapi/slack-github-action)</summary> ### [`v1.26.0`](https://togithub.com/slackapi/slack-github-action/releases/tag/v1.26.0): Slack Send V1.26.0 [Compare Source](https://togithub.com/slackapi/slack-github-action/compare/v1.25.0...v1.26.0) #### What's Changed This release provides an escape hatch for sending the JSON content of a payload file exactly as is, without replacing any templated variables! Previously a payload file was parsed and templated variables were replaced with values from `github.context` and `github.env`. Any undefined variables were replaced with `???` in this process, which might have caused questions. That remains the default behavior, but now the JSON contents of a payload file can be sent exactly as written by setting the `payload-file-path-parsed` input to `false`: ```yaml - name: Send custom JSON data to Slack workflow id: slack uses: slackapi/[email protected] with: payload-file-path: "./payload-slack-content.json" payload-file-path-parsed: false env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} ``` With this change, the contents of the example `payload-slack-content.json` will be sent to a webhook URL exactly as is! #### Recent commits ##### Enhancements - allow to use json file as is without replacing/parsing anything by [@​talgendler](https://togithub.com/talgendler) in [https://github.com/slackapi/slack-github-action/pull/299](https://togithub.com/slackapi/slack-github-action/pull/299) ##### Documentation - docs(readme): adjust whitespace in env assignment by [@​paulo9mv](https://togithub.com/paulo9mv) in [https://github.com/slackapi/slack-github-action/pull/296](https://togithub.com/slackapi/slack-github-action/pull/296) ##### Maintenance - ci(test): collect environment secrets from a prepared staging environment by [@​zimeg](https://togithub.com/zimeg) in [https://github.com/slackapi/slack-github-action/pull/294](https://togithub.com/slackapi/slack-github-action/pull/294) - ci(test): share environment secrets with pull requests from forked prs by [@​zimeg](https://togithub.com/zimeg) in [https://github.com/slackapi/slack-github-action/pull/297](https://togithub.com/slackapi/slack-github-action/pull/297) ##### Dependencies - Bump eslint-plugin-jsdoc from 46.10.1 to 48.2.1 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/slackapi/slack-github-action/pull/295](https://togithub.com/slackapi/slack-github-action/pull/295) - Bump eslint from 8.56.0 to 8.57.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/slackapi/slack-github-action/pull/289](https://togithub.com/slackapi/slack-github-action/pull/289) - Bump mocha from 10.2.0 to 10.3.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/slackapi/slack-github-action/pull/288](https://togithub.com/slackapi/slack-github-action/pull/288) - Bump https-proxy-agent from 7.0.2 to 7.0.4 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/slackapi/slack-github-action/pull/290](https://togithub.com/slackapi/slack-github-action/pull/290) - Bump [@​slack/web-api](https://togithub.com/slack/web-api) from 6.12.0 to 7.0.2 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/slackapi/slack-github-action/pull/287](https://togithub.com/slackapi/slack-github-action/pull/287) - Bump mocha from 10.3.0 to 10.4.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/slackapi/slack-github-action/pull/300](https://togithub.com/slackapi/slack-github-action/pull/300) - Bump axios from 1.6.7 to 1.6.8 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/slackapi/slack-github-action/pull/301](https://togithub.com/slackapi/slack-github-action/pull/301) - Bump eslint-plugin-jsdoc from 48.2.1 to 48.2.2 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/slackapi/slack-github-action/pull/302](https://togithub.com/slackapi/slack-github-action/pull/302) #### New Contributors - [@​paulo9mv](https://togithub.com/paulo9mv) made their first contribution in [https://github.com/slackapi/slack-github-action/pull/296](https://togithub.com/slackapi/slack-github-action/pull/296) - [@​talgendler](https://togithub.com/talgendler) made their first contribution in [https://github.com/slackapi/slack-github-action/pull/299](https://togithub.com/slackapi/slack-github-action/pull/299) **Full Changelog**: slackapi/slack-github-action@v1.25.0...v1.26.0 </details> <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 ### [`v3.22.5`](https://togithub.com/colinhacks/zod/compare/v3.22.4...e7a9b9b3033991be6b4225f1be21da39c250bbb0) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.22.4...e7a9b9b3033991be6b4225f1be21da39c250bbb0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" in timezone America/Chicago, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/autoblocksai/autoblocks-examples). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.5` -> `3.23.4`](https://renovatebot.com/diffs/npm/zod/3.22.4/3.23.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.4/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.4/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.4`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.4) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.3...v3.23.4) #### Commits: - [`157b18d`](https://togithub.com/colinhacks/zod/commit/157b18d742c86d85b26a8421af46ad6d6d6b6ea7) Add 3.23 announcement - [`aedf93f`](https://togithub.com/colinhacks/zod/commit/aedf93f1435a29463d915c3be45b4dcbeefa8cc1) Revert change to default Input - [`45107f7`](https://togithub.com/colinhacks/zod/commit/45107f7a7230fe48ee24dc37e621422c9dc64ec4) v3.23.4 ### [`v3.23.3`](https://togithub.com/colinhacks/zod/compare/v3.23.2...103d2436f85872ca0e0e6247652989cc93d46a39) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.2...v3.23.3) ### [`v3.23.2`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.2) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.1...v3.23.2) #### Commits: - [`c340558`](https://togithub.com/colinhacks/zod/commit/c340558d14f5222a2ca177e0591463c06cc5edc3) Update protocol - [`ef588d0`](https://togithub.com/colinhacks/zod/commit/ef588d036f3e98b832796e9a681dbaf097631ea0) Fix t3env - [`9df70dd`](https://togithub.com/colinhacks/zod/commit/9df70dd71195df951c43f180fbe5e64ea1f835df) 3.23.2 ### [`v3.23.1`](https://togithub.com/colinhacks/zod/compare/v3.23.0...2ff5ceb428634de0ea4501495039c05a8e95b60a) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.0...v3.23.1) ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 ### [`v3.22.5`](https://togithub.com/colinhacks/zod/compare/v3.22.4...e7a9b9b3033991be6b4225f1be21da39c250bbb0) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.22.4...e7a9b9b3033991be6b4225f1be21da39c250bbb0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`^3.22.5` -> `^3.23.4`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.4`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.4) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.3...v3.23.4) #### Commits: - [`157b18d`](https://togithub.com/colinhacks/zod/commit/157b18d742c86d85b26a8421af46ad6d6d6b6ea7) Add 3.23 announcement - [`aedf93f`](https://togithub.com/colinhacks/zod/commit/aedf93f1435a29463d915c3be45b4dcbeefa8cc1) Revert change to default Input - [`45107f7`](https://togithub.com/colinhacks/zod/commit/45107f7a7230fe48ee24dc37e621422c9dc64ec4) v3.23.4 ### [`v3.23.3`](https://togithub.com/colinhacks/zod/compare/v3.23.2...103d2436f85872ca0e0e6247652989cc93d46a39) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.2...v3.23.3) ### [`v3.23.2`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.2) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.1...v3.23.2) #### Commits: - [`c340558`](https://togithub.com/colinhacks/zod/commit/c340558d14f5222a2ca177e0591463c06cc5edc3) Update protocol - [`ef588d0`](https://togithub.com/colinhacks/zod/commit/ef588d036f3e98b832796e9a681dbaf097631ea0) Fix t3env - [`9df70dd`](https://togithub.com/colinhacks/zod/commit/9df70dd71195df951c43f180fbe5e64ea1f835df) 3.23.2 ### [`v3.23.1`](https://togithub.com/colinhacks/zod/compare/v3.23.0...2ff5ceb428634de0ea4501495039c05a8e95b60a) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.0...v3.23.1) ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/fuxingloh/karfia). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.5` -> `3.23.4`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.4`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.4) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.3...v3.23.4) #### Commits: - [`157b18d`](https://togithub.com/colinhacks/zod/commit/157b18d742c86d85b26a8421af46ad6d6d6b6ea7) Add 3.23 announcement - [`aedf93f`](https://togithub.com/colinhacks/zod/commit/aedf93f1435a29463d915c3be45b4dcbeefa8cc1) Revert change to default Input - [`45107f7`](https://togithub.com/colinhacks/zod/commit/45107f7a7230fe48ee24dc37e621422c9dc64ec4) v3.23.4 ### [`v3.23.3`](https://togithub.com/colinhacks/zod/compare/v3.23.2...103d2436f85872ca0e0e6247652989cc93d46a39) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.2...v3.23.3) ### [`v3.23.2`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.2) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.1...v3.23.2) #### Commits: - [`c340558`](https://togithub.com/colinhacks/zod/commit/c340558d14f5222a2ca177e0591463c06cc5edc3) Update protocol - [`ef588d0`](https://togithub.com/colinhacks/zod/commit/ef588d036f3e98b832796e9a681dbaf097631ea0) Fix t3env - [`9df70dd`](https://togithub.com/colinhacks/zod/commit/9df70dd71195df951c43f180fbe5e64ea1f835df) 3.23.2 ### [`v3.23.1`](https://togithub.com/colinhacks/zod/compare/v3.23.0...2ff5ceb428634de0ea4501495039c05a8e95b60a) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.0...v3.23.1) ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/camunda/zeebe). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.5` -> `3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/JoshuaKGoldberg/boston-ts-website). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.5` -> `3.23.0`](https://renovatebot.com/diffs/npm/zod/3.22.5/3.23.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.5/3.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/JoshuaKGoldberg/prune-github-notifications). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.4` -> `3.23.4`](https://renovatebot.com/diffs/npm/zod/3.22.4/3.23.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.4/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.4/3.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>colinhacks/zod (zod)</summary> ### [`v3.23.4`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.4) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.3...v3.23.4) #### Commits: - [`157b18d`](https://togithub.com/colinhacks/zod/commit/157b18d742c86d85b26a8421af46ad6d6d6b6ea7) Add 3.23 announcement - [`aedf93f`](https://togithub.com/colinhacks/zod/commit/aedf93f1435a29463d915c3be45b4dcbeefa8cc1) Revert change to default Input - [`45107f7`](https://togithub.com/colinhacks/zod/commit/45107f7a7230fe48ee24dc37e621422c9dc64ec4) v3.23.4 ### [`v3.23.3`](https://togithub.com/colinhacks/zod/compare/v3.23.2...103d2436f85872ca0e0e6247652989cc93d46a39) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.2...v3.23.3) ### [`v3.23.2`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.2) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.1...v3.23.2) #### Commits: - [`c340558`](https://togithub.com/colinhacks/zod/commit/c340558d14f5222a2ca177e0591463c06cc5edc3) Update protocol - [`ef588d0`](https://togithub.com/colinhacks/zod/commit/ef588d036f3e98b832796e9a681dbaf097631ea0) Fix t3env - [`9df70dd`](https://togithub.com/colinhacks/zod/commit/9df70dd71195df951c43f180fbe5e64ea1f835df) 3.23.2 ### [`v3.23.1`](https://togithub.com/colinhacks/zod/compare/v3.23.0...2ff5ceb428634de0ea4501495039c05a8e95b60a) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.23.0...v3.23.1) ### [`v3.23.0`](https://togithub.com/colinhacks/zod/releases/tag/v3.23.0) [Compare Source](https://togithub.com/colinhacks/zod/compare/e7a9b9b3033991be6b4225f1be21da39c250bbb0...v3.23.0) Zod 3.23 is now available. This is the final `3.x` release before Zod 4.0. To try it out: ```sh npm install zod ``` #### Features ##### `z.string().date()` Zod can now validate ISO 8601 date strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().date(); schema.parse("2022-01-01"); // OK ``` ##### `z.string().time()` Zod can now validate ISO 8601 time strings. Thanks [@​igalklebanov](https://togithub.com/igalklebanov)! [https://github.com/colinhacks/zod/pull/1766](https://togithub.com/colinhacks/zod/pull/1766) ```ts const schema = z.string().time(); schema.parse("12:00:00"); // OK ``` You can specify sub-second precision using the `precision` option: ```ts const schema = z.string().time({ precision: 3 }); schema.parse("12:00:00.123"); // OK schema.parse("12:00:00.123456"); // Error schema.parse("12:00:00"); // Error ``` ##### `z.string().duration()` Zod can now validate ISO 8601 duration strings. Thanks [@​mastermatt](https://togithub.com/mastermatt)! [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) ```ts const schema = z.string().duration(); schema.parse("P3Y6M4DT12H30M5S"); // OK ``` ##### Improvements to `z.string().datetime()` Thanks [@​bchrobot](https://togithub.com/bchrobot) [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) You can now allow *unqualified* (timezone-less) datetimes using the `local: true` flag. ```ts const schema = z.string().datetime({ local: true }); schema.parse("2022-01-01T12:00:00"); // OK ``` Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks [@​szamanr](https://togithub.com/szamanr)! [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) ##### `z.string().base64()` Zod can now validate base64 strings. Thanks [@​StefanTerdell](https://togithub.com/StefanTerdell)! [https://github.com/colinhacks/zod/pull/3047](https://togithub.com/colinhacks/zod/pull/3047) ```ts const schema = z.string().base64(); schema.parse("SGVsbG8gV29ybGQ="); // OK ``` ##### Improved discriminated unions The following can now be used as discriminator keys in `z.discriminatedUnion()`: - `ZodOptional` - `ZodNullable` - `ZodReadonly` - `ZodBranded` - `ZodCatch` ```ts const schema = z.discriminatedUnion("type", [ z.object({ type: z.literal("A").optional(), value: z.number() }), z.object({ type: z.literal("B").nullable(), value: z.string() }), z.object({ type: z.literal("C").readonly(), value: z.boolean() }), z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }), z.object({ type: z.literal("E").catch("E"), value: z.unknown() }), ]); ``` ##### Misc - feature: allow falsy error message by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - feature: add attribute message to enum validatiion by [@​fernandollisboa](https://togithub.com/fernandollisboa) in [https://github.com/colinhacks/zod/pull/3169](https://togithub.com/colinhacks/zod/pull/3169) #### Breaking changes There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals. ##### `ZodFirstPartySchemaTypes` Three new types have been added to the `ZodFirstPartySchemaTypes` union. This may impact some codegen libraries. [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) ```diff + | ZodPipeline<any, any> + | ZodReadonly<any> + | ZodSymbol; ``` ##### Default generics in `ZodType` The third argument of the `ZodType` base class now defaults to `unknown`. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas. ```diff - class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {} + class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {} ``` ##### Unrecognized keys in `.pick()` and `.omit()` This version fixes a bug where unknown keys were accidentally accepted in `.pick()` and `omit()`. This has been fixed, which could cause compiler errors in some user code. [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) ```ts z.object({ name: z.string() }).pick({ notAKey: true // no longer allowed }) ``` #### Bugfixes and performance - Bugfix: Enum.extract/exclude should not remove error mapping by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3240](https://togithub.com/colinhacks/zod/pull/3240) - Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. by [@​m10rten](https://togithub.com/m10rten) in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - Add types to `ZodFirstPartySchemaTypes` by [@​MatthijsMud](https://togithub.com/MatthijsMud) in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - fix: make `input` of `.required()` readonly by [@​KATT](https://togithub.com/KATT) in [https://github.com/colinhacks/zod/pull/3301](https://togithub.com/colinhacks/zod/pull/3301) - add never props to safe parse return types by [@​schicks](https://togithub.com/schicks) in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - Reporting errors of the preprocess that is the second property of object by [@​yukukotani](https://togithub.com/yukukotani) in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - Improve `addQuestionMarks`, fix [#​2184](https://togithub.com/colinhacks/zod/issues/2184) by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3352](https://togithub.com/colinhacks/zod/pull/3352) - fix for njs by [@​dvv](https://togithub.com/dvv) in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - only look in `src` for `bun test` by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - Restrict .pick()/.omit() mask type to only known properties by [@​petrovmiroslav](https://togithub.com/petrovmiroslav) in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - Make EnumValues generic by [@​IlyaSemenov](https://togithub.com/IlyaSemenov) in [https://github.com/colinhacks/zod/pull/2338](https://togithub.com/colinhacks/zod/pull/2338) - perf: avoid unnecessary error maps by [@​xuxucode](https://togithub.com/xuxucode) in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - Bugfix: z.record().parse should not filter out undefined values by [@​raik-casimiro](https://togithub.com/raik-casimiro) in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - Use Set.has instead of Array.indexOf for enum comparison (perf improvement) by [@​jmike](https://togithub.com/jmike) in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - \[2888] fix emails with single quotes failing validation by [@​Mansehej](https://togithub.com/Mansehej) in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - Bugfix: Commas are incorrectly allowed in email regex. by [@​mokemoko](https://togithub.com/mokemoko) in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - Fix regex in cuid2 validation to be what cuid2 library expects by [@​etareduction](https://togithub.com/etareduction) in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - Make depcruise pass by [@​rotu](https://togithub.com/rotu) in [https://github.com/colinhacks/zod/pull/3037](https://togithub.com/colinhacks/zod/pull/3037) - Faster ipv4 parsing by [@​colinhacks](https://togithub.com/colinhacks) in [https://github.com/colinhacks/zod/pull/3413](https://togithub.com/colinhacks/zod/pull/3413) #### Docs and ecosystem - chore: add pastel package to ecosystem by [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - added required styles. by [@​Ansh101112](https://togithub.com/Ansh101112) in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - Feature/better chinese translate by [@​NWYLZW](https://togithub.com/NWYLZW) in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - Fix z.instanceof example by [@​alexnault](https://togithub.com/alexnault) in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - Add documentation to Zod enum exclude/extract functions by [@​shaharke](https://togithub.com/shaharke) in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - Add docs for coercing nullish values by [@​rbuetzer](https://togithub.com/rbuetzer) in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - Adds `zod-dev` utility to eco-system section by [@​schalkventer](https://togithub.com/schalkventer) in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - Add zhttp library to docs by [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - fixed Readme typo in NaNs example by [@​RashJrEdmund](https://togithub.com/RashJrEdmund) in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - adds zod-config library to the ecosystem by [@​alexmarqs](https://togithub.com/alexmarqs) in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - docs: update link and description of conform integration by [@​g1eny0ung](https://togithub.com/g1eny0ung) in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - Update README.md by [@​yugmade13](https://togithub.com/yugmade13) in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - feat: overhaul generics section of readme to include more details on z.ZodTypeAny usage by [@​braden-w](https://togithub.com/braden-w) in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - Fix small typos by [@​mmorearty](https://togithub.com/mmorearty) in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - docs: update Chinese docs and correct some of the typos by [@​jiechen257](https://togithub.com/jiechen257) in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - docs: improve chinese readme by [@​luckrnx09](https://togithub.com/luckrnx09) in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - Add java-to-zod in X to Zod section by [@​ivangreene](https://togithub.com/ivangreene) in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - docs: add `orval` to "X to Zod" ecosystems by [@​soartec-lab](https://togithub.com/soartec-lab) in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) #### New Contributors - [@​jlarmstrongiv](https://togithub.com/jlarmstrongiv) made their first contribution in [https://github.com/colinhacks/zod/pull/2949](https://togithub.com/colinhacks/zod/pull/2949) - [@​Ansh101112](https://togithub.com/Ansh101112) made their first contribution in [https://github.com/colinhacks/zod/pull/2955](https://togithub.com/colinhacks/zod/pull/2955) - [@​NWYLZW](https://togithub.com/NWYLZW) made their first contribution in [https://github.com/colinhacks/zod/pull/2988](https://togithub.com/colinhacks/zod/pull/2988) - [@​alexnault](https://togithub.com/alexnault) made their first contribution in [https://github.com/colinhacks/zod/pull/3003](https://togithub.com/colinhacks/zod/pull/3003) - [@​shaharke](https://togithub.com/shaharke) made their first contribution in [https://github.com/colinhacks/zod/pull/3044](https://togithub.com/colinhacks/zod/pull/3044) - [@​rbuetzer](https://togithub.com/rbuetzer) made their first contribution in [https://github.com/colinhacks/zod/pull/3067](https://togithub.com/colinhacks/zod/pull/3067) - [@​schalkventer](https://togithub.com/schalkventer) made their first contribution in [https://github.com/colinhacks/zod/pull/3113](https://togithub.com/colinhacks/zod/pull/3113) - [@​evertdespiegeleer](https://togithub.com/evertdespiegeleer) made their first contribution in [https://github.com/colinhacks/zod/pull/3134](https://togithub.com/colinhacks/zod/pull/3134) - [@​RashJrEdmund](https://togithub.com/RashJrEdmund) made their first contribution in [https://github.com/colinhacks/zod/pull/3181](https://togithub.com/colinhacks/zod/pull/3181) - [@​alexmarqs](https://togithub.com/alexmarqs) made their first contribution in [https://github.com/colinhacks/zod/pull/3200](https://togithub.com/colinhacks/zod/pull/3200) - [@​JonnyBurger](https://togithub.com/JonnyBurger) made their first contribution in [https://github.com/colinhacks/zod/pull/3214](https://togithub.com/colinhacks/zod/pull/3214) - [@​fernandollisboa](https://togithub.com/fernandollisboa) made their first contribution in [https://github.com/colinhacks/zod/pull/3178](https://togithub.com/colinhacks/zod/pull/3178) - [@​g1eny0ung](https://togithub.com/g1eny0ung) made their first contribution in [https://github.com/colinhacks/zod/pull/3238](https://togithub.com/colinhacks/zod/pull/3238) - [@​m10rten](https://togithub.com/m10rten) made their first contribution in [https://github.com/colinhacks/zod/pull/3278](https://togithub.com/colinhacks/zod/pull/3278) - [@​MatthijsMud](https://togithub.com/MatthijsMud) made their first contribution in [https://github.com/colinhacks/zod/pull/3247](https://togithub.com/colinhacks/zod/pull/3247) - [@​yugmade13](https://togithub.com/yugmade13) made their first contribution in [https://github.com/colinhacks/zod/pull/3317](https://togithub.com/colinhacks/zod/pull/3317) - [@​braden-w](https://togithub.com/braden-w) made their first contribution in [https://github.com/colinhacks/zod/pull/3321](https://togithub.com/colinhacks/zod/pull/3321) - [@​mmorearty](https://togithub.com/mmorearty) made their first contribution in [https://github.com/colinhacks/zod/pull/3336](https://togithub.com/colinhacks/zod/pull/3336) - [@​schicks](https://togithub.com/schicks) made their first contribution in [https://github.com/colinhacks/zod/pull/3295](https://togithub.com/colinhacks/zod/pull/3295) - [@​yukukotani](https://togithub.com/yukukotani) made their first contribution in [https://github.com/colinhacks/zod/pull/2912](https://togithub.com/colinhacks/zod/pull/2912) - [@​jiechen257](https://togithub.com/jiechen257) made their first contribution in [https://github.com/colinhacks/zod/pull/3338](https://togithub.com/colinhacks/zod/pull/3338) - [@​luckrnx09](https://togithub.com/luckrnx09) made their first contribution in [https://github.com/colinhacks/zod/pull/3371](https://togithub.com/colinhacks/zod/pull/3371) - [@​dvv](https://togithub.com/dvv) made their first contribution in [https://github.com/colinhacks/zod/pull/3063](https://togithub.com/colinhacks/zod/pull/3063) - [@​rotu](https://togithub.com/rotu) made their first contribution in [https://github.com/colinhacks/zod/pull/3038](https://togithub.com/colinhacks/zod/pull/3038) - [@​petrovmiroslav](https://togithub.com/petrovmiroslav) made their first contribution in [https://github.com/colinhacks/zod/pull/3255](https://togithub.com/colinhacks/zod/pull/3255) - [@​ivoilic](https://togithub.com/ivoilic) made their first contribution in [https://github.com/colinhacks/zod/pull/2364](https://togithub.com/colinhacks/zod/pull/2364) - [@​telemakhos](https://togithub.com/telemakhos) made their first contribution in [https://github.com/colinhacks/zod/pull/3388](https://togithub.com/colinhacks/zod/pull/3388) - [@​bchrobot](https://togithub.com/bchrobot) made their first contribution in [https://github.com/colinhacks/zod/pull/2522](https://togithub.com/colinhacks/zod/pull/2522) - [@​szamanr](https://togithub.com/szamanr) made their first contribution in [https://github.com/colinhacks/zod/pull/3391](https://togithub.com/colinhacks/zod/pull/3391) - [@​ivangreene](https://togithub.com/ivangreene) made their first contribution in [https://github.com/colinhacks/zod/pull/3385](https://togithub.com/colinhacks/zod/pull/3385) - [@​xuxucode](https://togithub.com/xuxucode) made their first contribution in [https://github.com/colinhacks/zod/pull/2532](https://togithub.com/colinhacks/zod/pull/2532) - [@​raik-casimiro](https://togithub.com/raik-casimiro) made their first contribution in [https://github.com/colinhacks/zod/pull/3251](https://togithub.com/colinhacks/zod/pull/3251) - [@​jmike](https://togithub.com/jmike) made their first contribution in [https://github.com/colinhacks/zod/pull/2659](https://togithub.com/colinhacks/zod/pull/2659) - [@​Mansehej](https://togithub.com/Mansehej) made their first contribution in [https://github.com/colinhacks/zod/pull/2889](https://togithub.com/colinhacks/zod/pull/2889) - [@​mokemoko](https://togithub.com/mokemoko) made their first contribution in [https://github.com/colinhacks/zod/pull/3286](https://togithub.com/colinhacks/zod/pull/3286) - [@​etareduction](https://togithub.com/etareduction) made their first contribution in [https://github.com/colinhacks/zod/pull/2961](https://togithub.com/colinhacks/zod/pull/2961) - [@​mastermatt](https://togithub.com/mastermatt) made their first contribution in [https://github.com/colinhacks/zod/pull/3265](https://togithub.com/colinhacks/zod/pull/3265) - [@​soartec-lab](https://togithub.com/soartec-lab) made their first contribution in [https://github.com/colinhacks/zod/pull/3397](https://togithub.com/colinhacks/zod/pull/3397) **Full Changelog**: colinhacks/zod@v3.22.4...v3.23.0 ### [`v3.22.5`](https://togithub.com/colinhacks/zod/compare/v3.22.4...e7a9b9b3033991be6b4225f1be21da39c250bbb0) [Compare Source](https://togithub.com/colinhacks/zod/compare/v3.22.4...e7a9b9b3033991be6b4225f1be21da39c250bbb0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/tf2pickup-org/server). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Since
defaultErrorMap
andgetErrorMap()
may return the same one, leads to duplicate inZodErrorMap
array. And error mapping can be totally skipped if check message is provided.https://github.com/colinhacks/zod/blob/master/src/errors.ts#L4-L5