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

chore(deps): update dependency zod to v3.24.2 #97

Open
wants to merge 1 commit into
base: development
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
zod (source) 3.24.0-canary.20240523T174819 -> 3.24.2 age adoption passing confidence

Release Notes

colinhacks/zod (zod)

v3.24.2

Compare Source

v3.24.1

Compare Source

Commits:

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

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

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

z.string().base64url()

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.

z.string().cidr()

To specify an IP version:

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

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

v3.24.0-canary.20241210T065401

Compare Source

v3.24.0-canary.20241210T060351

Compare Source

v3.24.0-canary.20241210T025401

Compare Source

v3.24.0-canary.20241210T025031

Compare Source

v3.24.0-canary.20241107T043915

Compare Source

v3.24.0-canary.20241016T212913

Compare Source

v3.24.0-canary.20241016T212839

Compare Source

v3.24.0-canary.20240701T200529

Compare Source

v3.24.0-canary.20240629T005127

Compare Source


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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/zod-3.x branch 7 times, most recently from bb2510e to 95dccbd Compare July 21, 2024 10:38
@renovate renovate bot force-pushed the renovate/zod-3.x branch 7 times, most recently from 4930178 to fab8441 Compare August 2, 2024 03:20
@renovate renovate bot force-pushed the renovate/zod-3.x branch from fab8441 to b248741 Compare October 16, 2024 21:53
@renovate renovate bot changed the title chore(deps): update dependency zod to v3.24.0-canary.20240701t200529 chore(deps): update dependency zod to v3.24.0-canary.20241016t212913 Oct 16, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from b248741 to 94166c1 Compare November 7, 2024 07:08
@renovate renovate bot changed the title chore(deps): update dependency zod to v3.24.0-canary.20241016t212913 chore(deps): update dependency zod to v3.24.0-canary.20241107t043915 Nov 7, 2024
@renovate renovate bot changed the title chore(deps): update dependency zod to v3.24.0-canary.20241107t043915 chore(deps): update dependency zod to v3.24.0-canary.20241107t043915 - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/zod-3.x branch December 8, 2024 18:28
@renovate renovate bot changed the title chore(deps): update dependency zod to v3.24.0-canary.20241107t043915 - autoclosed chore(deps): update dependency zod to v3.24.0-canary.20241107t043915 Dec 8, 2024
@renovate renovate bot reopened this Dec 8, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch 2 times, most recently from 94166c1 to 9f99803 Compare December 10, 2024 05:31
@renovate renovate bot changed the title chore(deps): update dependency zod to v3.24.0-canary.20241107t043915 chore(deps): update dependency zod to v3.24.0-canary.20241210t025401 Dec 10, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 9f99803 to aeb16ce Compare December 10, 2024 07:27
@renovate renovate bot changed the title chore(deps): update dependency zod to v3.24.0-canary.20241210t025401 chore(deps): update dependency zod to v3.24.0 Dec 10, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from aeb16ce to 3c846e3 Compare December 11, 2024 01:56
@renovate renovate bot changed the title chore(deps): update dependency zod to v3.24.0 chore(deps): update dependency zod to v3.24.1 Dec 11, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 3c846e3 to dcc5d5b Compare February 11, 2025 23:18
@renovate renovate bot changed the title chore(deps): update dependency zod to v3.24.1 chore(deps): update dependency zod to v3.24.2 Feb 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants