Releases: DavidTimms/zod-fast-check
Releases · DavidTimms/zod-fast-check
v0.10.0
This release brings zod-fast-check up to speed with all of the new features added in Zod 3.20.
This includes:
- Support for
z.symbol()
. - Support for
z.string().datetime()
,z.string().uuid()
andz.string().cuid()
. - Support for
z.string().length()
,z.string().startsWith()
and z.srtring.endsWith()`. - Support for
z.number().multipleOf()
. - Better coverage for numbers - it will now generate
Infinity
for number schemas which are not explicitly declared as finite.
v0.9.0
Adds support for the new .pipe
and .catch
methods added in Zod 3.20.
v0.8.0
- Adds support for fast-check 3.x
- Increases minimum required version of fast-check to 2.23.0
Thanks to rmiller-glreaitylabs for contributing to this release.