Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 10, 2024

This PR contains the following updates:

Package Change Age Confidence
zod (source) 3.23.8 -> 3.25.76 age confidence

Release Notes

colinhacks/zod (zod)

v3.25.76

Compare Source

v3.25.75

Compare Source

v3.25.74

Compare Source

v3.25.73

Compare Source

Commits:

v3.25.72

Compare Source

v3.25.71

Compare Source

v3.25.70

Compare Source

v3.25.69

Compare Source

v3.25.68

Compare Source

v3.25.67

Compare Source

Commits:

v3.25.66

Compare Source

v3.25.65

Compare Source

v3.25.64

Compare Source

Commits:

v3.25.63

Compare Source

v3.25.62

Compare Source

v3.25.61

Compare Source

v3.25.60

Compare Source

v3.25.59

Compare Source

v3.25.58

Compare Source

v3.25.57

Compare Source

v3.25.56

Compare Source

v3.25.55

Compare Source

v3.25.54

Compare Source

v3.25.53

Compare Source

Commits:

v3.25.52

Compare Source

Commits:

v3.25.51

Compare Source

v3.25.50

Compare Source

v3.25.49

Compare Source

v3.25.48

Compare Source

v3.25.47

Compare Source

v3.25.46

Compare Source

v3.25.45

Compare Source

Commits:

v3.25.44

Compare Source

v3.25.43

Compare Source

Commits:

v3.25.42

Compare Source

v3.25.41

Compare Source

v3.25.40

Compare Source

v3.25.39

Compare Source

v3.25.38

Compare Source

Commits:

v3.25.37

Compare Source

Commits:

v3.25.36

Compare Source

v3.25.35

Compare Source

Commits:

v3.25.34

Compare Source

v3.25.33

Compare Source

Commits:

v3.25.32

Compare Source

v3.25.31

Compare Source

v3.25.30

Compare Source

v3.25.29

Compare Source

v3.25.28

Compare Source

Commits:

v3.25.27

Compare Source

v3.25.26

Compare Source

v3.25.25

Compare Source

v3.25.24

Compare Source

v3.25.23

Compare Source

v3.25.22

Compare Source

v3.25.21

Compare Source

v3.25.20

Compare Source

Commits:

v3.25.18

Compare Source

Commits:

v3.25.17

Compare Source

v3.25.16

Compare Source

v3.25.15

Compare Source

v3.25.14

Compare Source

v3.25.13

Compare Source

v3.25.12

Compare Source

v3.25.11

Compare Source

v3.25.10

Compare Source

Commits:

  • c172c19 Fix module resolution issue

v3.25.9

Compare Source

v3.25.8

Compare Source

v3.25.7

Compare Source

v3.25.6

Compare Source

v3.25.5

Compare Source

v3.25.4

Compare Source

v3.25.3

Compare Source

v3.25.1

Compare Source

v3.25.0

Compare Source

v3.24.4

Compare Source

v3.24.3

Compare Source

Commits:

v3.24.2

Compare Source

Notes

Support asynchronous checks in z.custom() .

const customSchema = z.custom<number>(async (x) => {
  return typeof x === "number";
});

Commits:

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


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 changed the title fix(deps): update dependency zod to v3.24.0 fix(deps): update dependency zod to v3.24.1 Dec 11, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 4a88ad6 to 501ff32 Compare December 11, 2024 02:24
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 501ff32 to 84cc9e4 Compare February 12, 2025 01:53
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.24.1 fix(deps): update dependency zod to v3.24.2 Feb 12, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 84cc9e4 to eccb786 Compare February 18, 2025 22:20
@renovate renovate bot force-pushed the renovate/zod-3.x branch from eccb786 to a0167a8 Compare April 16, 2025 23:10
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.24.2 fix(deps): update dependency zod to v3.24.3 Apr 16, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from a0167a8 to 3891158 Compare May 5, 2025 01:36
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.24.3 fix(deps): update dependency zod to v3.24.4 May 5, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 3891158 to 79d0fab Compare May 19, 2025 20:26
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.24.4 fix(deps): update dependency zod to v3.25.4 May 19, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 79d0fab to 40e0a9d Compare May 20, 2025 01:51
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.4 fix(deps): update dependency zod to v3.25.7 May 20, 2025
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.7 fix(deps): update dependency zod to v3.25.8 May 20, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch 2 times, most recently from 442617d to c1c891e Compare May 21, 2025 02:19
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.8 fix(deps): update dependency zod to v3.25.12 May 21, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from c1c891e to 2442827 Compare May 21, 2025 06:41
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.12 fix(deps): update dependency zod to v3.25.13 May 21, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 2442827 to 9e20f5f Compare May 21, 2025 14:03
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.13 fix(deps): update dependency zod to v3.25.17 May 21, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 9e20f5f to ec5f594 Compare May 22, 2025 00:07
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.17 fix(deps): update dependency zod to v3.25.20 May 22, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from ec5f594 to 3982635 Compare May 23, 2025 00:20
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.20 fix(deps): update dependency zod to v3.25.23 May 23, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 3982635 to 6101eae Compare May 23, 2025 23:45
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.23 fix(deps): update dependency zod to v3.25.28 May 23, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 6101eae to 40ae5bd Compare May 26, 2025 23:32
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.28 fix(deps): update dependency zod to v3.25.29 May 26, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 40ae5bd to 2d559af Compare May 27, 2025 03:12
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.58 fix(deps): update dependency zod to v3.25.61 Jun 11, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 0387b7e to ec8e678 Compare June 11, 2025 23:28
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.61 fix(deps): update dependency zod to v3.25.62 Jun 11, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from ec8e678 to 8a5df16 Compare June 12, 2025 08:36
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.62 fix(deps): update dependency zod to v3.25.63 Jun 12, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 8a5df16 to 1af3d3d Compare June 13, 2025 07:02
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.63 fix(deps): update dependency zod to v3.25.64 Jun 13, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 1af3d3d to 47337b0 Compare June 16, 2025 20:00
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.64 fix(deps): update dependency zod to v3.25.65 Jun 16, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 47337b0 to 217bc55 Compare June 16, 2025 22:24
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.65 fix(deps): update dependency zod to v3.25.66 Jun 16, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 217bc55 to b920c96 Compare June 17, 2025 01:54
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.66 fix(deps): update dependency zod to v3.25.67 Jun 17, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from b920c96 to de3ae00 Compare July 2, 2025 23:28
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.67 fix(deps): update dependency zod to v3.25.69 Jul 2, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from de3ae00 to f16620c Compare July 3, 2025 02:40
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.69 fix(deps): update dependency zod to v3.25.70 Jul 3, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from f16620c to 1ad933b Compare July 3, 2025 06:53
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.70 fix(deps): update dependency zod to v3.25.71 Jul 3, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 1ad933b to 5c3cc34 Compare July 4, 2025 04:48
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.71 fix(deps): update dependency zod to v3.25.72 Jul 4, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 5c3cc34 to 8f2e037 Compare July 4, 2025 11:12
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.72 fix(deps): update dependency zod to v3.25.73 Jul 4, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 8f2e037 to 3d916aa Compare July 4, 2025 18:50
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.73 fix(deps): update dependency zod to v3.25.74 Jul 4, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 3d916aa to 591b109 Compare July 7, 2025 11:27
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.74 fix(deps): update dependency zod to v3.25.75 Jul 7, 2025
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 591b109 to 1cfbc8d Compare July 8, 2025 11:57
@renovate renovate bot changed the title fix(deps): update dependency zod to v3.25.75 fix(deps): update dependency zod to v3.25.76 Jul 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants