Update dependency zod-validation-error to v3 #105
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^2.0.0
->^3.0.0
Release Notes
causaly/zod-validation-error (zod-validation-error)
v3.4.0
Compare Source
Minor Changes
3a7928c
: Customize error messages using a MessageBuilder.v3.3.1
Compare Source
Patch Changes
42bc4fe
: Test Version Packages fixv3.3.0
Compare Source
Minor Changes
66f5b5d
: MatchZodError
via heuristics instead of relying oninstanceof
.Why? Because we want to ensure that zod-validation-error works smoothly even when multiple versions of zod have been installed in the same project.
v3.2.0
Compare Source
Minor Changes
6b4e8a0
: IntroducefromError
API which is a less strict version offromZodError
35a28c6
: Add runtime check infromZodError
and throw dev-friendlyTypeError
suggesting usage offromError
insteadv3.1.0
Compare Source
Minor Changes
3f5e391
: Better error messages for zod.function() typesv3.0.3
Compare Source
Patch Changes
2f1ef27
: Bundle code as a single index.js (cjs) or index.mjs (esm) file. Restore exports configuration in package.json.v3.0.2
Compare Source
Patch Changes
24b773c
: Revert package.json exports causing dependant projects to failv3.0.1
Compare Source
Patch Changes
3382fbc
: 1. Fix issue with ErrorOptions not being found in earlier to es2022 typescript configs. 2. Add exports definition to package.json to help bundlers (e.g. rollup) identify the right module to use.v3.0.0
Compare Source
Major Changes
deb4639
: BREAKING CHANGE: RefactorValidationError
to acceptErrorOptions
as second parameter.What changed?
Previously,
ValidationError
acceptedArray<ZodIssue>
as 2nd parameter. Now, it acceptsErrorOptions
which contains acause
property. Ifcause
is aZodError
then it will extract the attached issues and expose them overerror.details
.Why?
This change allows us to use
ValidationError
like a native JavaScript Error. For example, we can now do:How can you update your code?
If you are using
ValidationError
directly, then you need to update your code to passErrorOptions
as a 2nd parameter.If you were never using
ValidationError
directly, then you don't need to do anything.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.