Skip to content
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

fix(deps): update dependency zod to v3.24.0 #907

Merged
merged 1 commit into from
Dec 10, 2024
Merged

Conversation

ganta-renovate[bot]
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change
zod (source) dependencies minor 3.23.8 -> 3.24.0

Release Notes

colinhacks/zod (zod)

v3.24.0

Compare Source

New features

Implement the 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()

To verify that a string is a valid 3-part JWT.

z.string().jwt();

⚠️ This does not verify your JWT cryptographically! It merely ensures its in the proper format. Use a library like jsonwebtoken to verify the JWT signature, parse the token, and read the claims.

To constrain the JWT to a specific algorithm:

z.string().jwt({ alg: "RS256" });

z.string().base64url()

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.)

z.string().base64url()

This functionality is available along the standard z.string().base64() validator added in Zod 3.23.

z.string().cidr()

A validator for CIDR notation for specifying IP address ranges, e.g. 192.24.12.0/22.

z.string().cidr()

To specify an IP version:

z.string().cidr({ version: "v4" })
z.string().cidr({ version: "v6" })

Commits:

View the full diff from 3.23.8: colinhacks/zod@v3.23.8...v3.24.0


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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@ganta-renovate ganta-renovate bot added dependencies Pull requests that update a dependency file renovate Created by Renovate labels Dec 10, 2024
@ganta-renovate ganta-renovate bot enabled auto-merge December 10, 2024 07:24
@ganta-renovate ganta-renovate bot merged commit cea7d11 into main Dec 10, 2024
10 checks passed
@ganta-renovate ganta-renovate bot deleted the renovate/zod-3.x branch December 10, 2024 07:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file renovate Created by Renovate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants