-
Notifications
You must be signed in to change notification settings - Fork 1
Update dependency zod to ^3.24.4 #213
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
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/non-major-dependencies
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8b9702d
to
81ef8bc
Compare
ab69506
to
525d82a
Compare
dcroote
reviewed
Dec 23, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally this isn't updated in the absence of also updating Airnode because of https://github.com/api3dao/ois?tab=readme-ov-file#make-sure-only-one-zod-version-is-installed
651b79b
to
f9345e3
Compare
f9345e3
to
2e0a7e3
Compare
6ea0080
to
b62e26a
Compare
3ec6d8b
to
0e89975
Compare
0e89975
to
ef78477
Compare
ef78477
to
68783c6
Compare
68783c6
to
85bcb98
Compare
9714e27
to
85056d4
Compare
85056d4
to
1ff1b44
Compare
aa94c24
to
0d21fbe
Compare
1798f53
to
a32d753
Compare
5026fa3
to
5e1c587
Compare
5e1c587
to
43d69d8
Compare
30b345b
to
6dcfc4c
Compare
6dcfc4c
to
9293551
Compare
9293551
to
217b26d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
^3.23.8
->^3.24.4
Release Notes
colinhacks/zod (zod)
v3.24.4
Compare Source
v3.24.3
Compare Source
Commits:
de1f090
Switch to featured sponsors (#4001)eea05ae
Fix headers (#4003)446644f
Tweak feature layout (#4008)1d6e1cb
docs(README): add GQLoom to tools and integrations section (#3995)e2b9a5f
Update feature (#4009)0b5d29e
Feature Mintlify (#4014)47dbb2d
Update mintlify feature (#4015)69d8436
Add Clerk fellowship mention (#4020)850871d
Fix table formatf204123
WIP (#4028)5041dfa
WIP (#4045)cb2b857
docs: add TanStack Form to Ecosystem/Form integrations (#4055)099fe85
docs: add oRPC to Ecosystem (#4042)b999b4b
docs: Remove outdated doc 'avoid coercions that throw uncaught errors' (#4005)19c6d2e
docs: update README_KO (#4025)1061293
WIP (#4060)07ff0da
Update link4c7d8e5
Update Fern art/link (#4062)91dcd30
removed unnecessary console logs (#4059)859ad24
Update alt tag for Retool and Stainless URL (#4071)220aeda
Fix imagesb865062
update readme.md with zod-csv library (#4021)0615af8
Fix formatting12e5866
Add zod 4 beta anno (#4081)faac697
Fix CI8cca93b
Fix CId114394
Added FullProduct.dev to 'Powered by Zod' in Ecosystem section (#4131)a801ddd
Fix broken logo link (#3974)8fc309a
Add packages/docsbfd0913
Remove packages/docs3e602d4
OptimizeextendShape
(#4150)06db7f8
3.24.3a18d25b
add back packages/docsv3.24.2
Compare Source
Notes
Support asynchronous checks in
z.custom()
.Commits:
cdcf9d4
Bump rollup from 2.79.1 to 2.79.2 (#3895)a2ad370
Bump find-my-way from 8.2.0 to 8.2.2 (#3897)0e02d66
Bump nanoid from 3.3.7 to 3.3.8 (#3896)96be65f
Bump cross-spawn from 7.0.3 to 7.0.6 (#3882)f7ad261
Bump micromatch from 4.0.7 to 4.0.8 (#3748)d724620
Addzod-struct
to utilities for Zod (#3921)6b96cfd
Update README.md (#3949)e376cda
Add Courier to README (#3961)8a099de
Add CodeRabbit to sponsors (#3975)587d160
WIP (#3976)9d3af2e
Add CodeRabbit at Platinum (#3981)eedeb4b
docs(X to Zod): Update url for runtyping (#3971)706f49f
fix: redirect url to correct url (#3939)7365b7d
docs: translate README to Korean (#3934)b7e173d
Format1dd44a0
Support async z.custome308703
v3.24.2v3.24.1
Compare Source
Commits:
0c6cbbd
Undeprecate .nonempty()4e219d6
Bump min TS version to 5.065adeea
v3.24.1v3.24.0
Compare Source
Implement
@standard-schema/spec
This is the first version of Zod to implement the Standard Schema spec. This is a new community effort among several validation library authors to implement a common interface, with the goal of simplifying the process of integrating schema validators with the rest of the ecosystem. Read more about the project and goals here.
z.string().jwt()
Thanks to @Mokshit06 and @Cognition-Labs for this contribution!
To verify that a string is a valid 3-part JWT.
To constrain the JWT to a specific algorithm:
z.string().base64url()
Thank you to @marvinruder!
To complement the JWT validation, Zod 3.24 implements a standalone
.base64url()
string validation API. (The three elements of JWTs are base64url-encoded JSON strings.)This functionality is available along the standard
z.string().base64()
validator added in Zod 3.23.z.string().cidr()
Thanks to @wataryooou for their work on this!
A validator for CIDR notation for specifying IP address ranges, e.g.
192.24.12.0/22
.To specify an IP version:
View the full diff from 3.23.8: colinhacks/zod@v3.23.8...v3.24.0
294f54f
Update README_ZH.md about Discriminated unions (#3493)1247caf
Add Kubb as X-to-Zod community tool (#3508)62b7842
Update default branchc6bc80d
Fix issue #3582 : ULID should be case insensitive (#3593)a5b9dc3
docs: add zod-schema-faker to ecosystem (#3605)9818d0e
Add zod-sockets (#3609)7173d0b
Add drizzle-zod library to X to Zod README.md section (#3648)c5a4edc
Add 'schemql' in Powered by Zod (#3800)85916b3
docs: add zod-form-renderer to form integration docs (#3697)51f1dc3
docs: add unplugin-environment in powered by zod (#3778)8e74db3
fix: ipv6 regex validation (#3513)1f4f0da
refactor: rename ip version types (#3755)f487d74
Remove faulty ip test case48f1c47
docs: Remove invalid semicolon in ERROR_HANDLING.md (#3857)1d0a4b9
fix: bigint coerce crash (#3822)14dceaa
Add API library (#3814)f82f817
feat: z.string.cidr() - support CIDR notation (#3820)71a0c33
docs: add info on unqualified local datetime strings (#3760)b85686a
Add support forbase64url
strings (#3712)6407bed
Allow creation of discriminated unions with a readonly array of options (#3535)3755146
Remove createParams cascade from .array() (#3530)963386d
Fix lint69a1798
Implement Standard Schema spec (#3850)c1dd537
Addsfrrm
package to documentation (#3818)b68c05f
feat: Add JWT string validator (#3893)Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (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.
🔕 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.