Skip to content

fix(deps): update dependency zod to v3.25.76#433

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/zod-3.x
Open

fix(deps): update dependency zod to v3.25.76#433
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/zod-3.x

Conversation

@renovate

@renovate renovate Bot commented Dec 10, 2024

Copy link
Copy Markdown
Contributor

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


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: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 from 70df841 to 64776ba Compare December 11, 2024 02:35
@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 changed the title fix(deps): update dependency zod to v3.24.1 fix(deps): update dependency zod to v3.24.2 Feb 11, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 64776ba to 323537c Compare February 11, 2025 23:11
@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 17, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 323537c to 5adeabe Compare April 17, 2025 03:29
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 5adeabe to 8a3a4f7 Compare May 5, 2025 02:15
@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 8a3a4f7 to 62ff642 Compare May 19, 2025 18:08
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.24.4 fix(deps): update dependency zod to v3.25.3 May 19, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 62ff642 to 671ef1a Compare May 19, 2025 23:48
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.3 fix(deps): update dependency zod to v3.25.7 May 19, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 671ef1a to 93400ef Compare May 20, 2025 23:26
@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 changed the title fix(deps): update dependency zod to v3.25.8 fix(deps): update dependency zod to v3.25.13 May 21, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch 2 times, most recently from 601a640 to 93797e8 Compare May 21, 2025 16:32
@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 93797e8 to b4c3ef8 Compare May 21, 2025 23:34
@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 21, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from b4c3ef8 to 64d465b Compare May 23, 2025 00:24
@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 64d465b to 517f1c3 Compare May 23, 2025 19:02
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.23 fix(deps): update dependency zod to v3.25.24 May 23, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 517f1c3 to d5a2ea9 Compare May 23, 2025 21:34
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.24 fix(deps): update dependency zod to v3.25.27 May 23, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from d5a2ea9 to ec0c5f4 Compare May 24, 2025 01:45
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.27 fix(deps): update dependency zod to v3.25.28 May 24, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from ec0c5f4 to f3f1878 Compare May 26, 2025 23:33
@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 changed the title fix(deps): update dependency zod to v3.25.36 fix(deps): update dependency zod to v3.25.39 May 29, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from c8efae0 to b301355 Compare May 30, 2025 02:36
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.39 fix(deps): update dependency zod to v3.25.40 May 30, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from b301355 to 127313f Compare May 30, 2025 05:30
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.40 fix(deps): update dependency zod to v3.25.41 May 30, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 127313f to 23694a3 Compare May 30, 2025 11:52
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.41 fix(deps): update dependency zod to v3.25.42 May 30, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 23694a3 to d49e78f Compare June 1, 2025 00:51
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.42 fix(deps): update dependency zod to v3.25.44 Jun 1, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from d49e78f to a06b279 Compare June 1, 2025 05:59
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.44 fix(deps): update dependency zod to v3.25.45 Jun 1, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from a06b279 to 5878599 Compare June 1, 2025 09:31
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.45 fix(deps): update dependency zod to v3.25.46 Jun 1, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 5878599 to edbde5b Compare June 2, 2025 11:36
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.46 fix(deps): update dependency zod to v3.25.48 Jun 2, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from edbde5b to f31ff7f Compare June 3, 2025 00:28
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.48 fix(deps): update dependency zod to v3.25.49 Jun 3, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from f31ff7f to efac2aa Compare June 3, 2025 22:31
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.49 fix(deps): update dependency zod to v3.25.50 Jun 3, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from efac2aa to 51331c1 Compare June 4, 2025 10:09
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.50 fix(deps): update dependency zod to v3.25.51 Jun 4, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 51331c1 to 689961d Compare June 6, 2025 19:43
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.51 fix(deps): update dependency zod to v3.25.56 Jun 6, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from 689961d to cbd5fb1 Compare June 10, 2025 03:16
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.56 fix(deps): update dependency zod to v3.25.57 Jun 10, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from cbd5fb1 to ed49f40 Compare June 11, 2025 02:04
@renovate renovate Bot changed the title fix(deps): update dependency zod to v3.25.57 fix(deps): update dependency zod to v3.25.58 Jun 11, 2025
@renovate
renovate Bot force-pushed the renovate/zod-3.x branch from ed49f40 to a5c0282 Compare June 11, 2025 12:53
@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
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