Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 11, 2025

This PR contains the following updates:

Package Change Age Confidence
zod (source) 4.1.5 -> 4.2.1 age confidence

Release Notes

colinhacks/zod (zod)

v4.2.1

Compare Source

v4.2.0

Compare Source

Features

Implement Standard JSON Schema

standard-schema/standard-schema#134

Implement z.fromJSONSchema()
const jsonSchema = {
  type: "object",
  properties: {
    name: { type: "string" },
    age: { type: "number" }
  },
  required: ["name"]
};

const schema = z.fromJSONSchema(jsonSchema);
Implement z.xor()
const schema = z.xor(
  z.object({ type: "user", name: z.string() }),
  z.object({ type: "admin", role: z.string() })
);
// Exactly one of the schemas must match
Implement z.looseRecord()
const schema = z.looseRecord(z.string(), z.number());
// Allows additional properties beyond those defined

Commits:

v4.1.13

Compare Source

v4.1.12

Compare Source

Commits:

v4.1.11

Compare Source

Commits:

v4.1.10

Compare Source

Commits:

v4.1.9

Compare Source

Commits:

v4.1.8

Compare Source

Commits:

v4.1.7

Compare Source

Commits:

v4.1.6

Compare Source


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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Sep 11, 2025
@renovate renovate bot requested a review from IgorKowalczyk September 11, 2025 04:30
@renovate renovate bot changed the title fix(deps): update dependency zod to v4.1.6 fix(deps): update dependency zod to v4.1.7 Sep 11, 2025
@renovate renovate bot force-pushed the renovate/zod-4.x branch from e8bd013 to 339ed5a Compare September 11, 2025 09:01
@renovate renovate bot changed the title fix(deps): update dependency zod to v4.1.7 fix(deps): update dependency zod to v4.1.8 Sep 13, 2025
@renovate renovate bot force-pushed the renovate/zod-4.x branch from 339ed5a to a4a43a9 Compare September 13, 2025 05:03
@renovate renovate bot force-pushed the renovate/zod-4.x branch 2 times, most recently from e8a4331 to 5201d91 Compare September 14, 2025 09:16
@renovate renovate bot force-pushed the renovate/zod-4.x branch from 5201d91 to e665232 Compare September 16, 2025 22:38
@renovate renovate bot changed the title fix(deps): update dependency zod to v4.1.8 fix(deps): update dependency zod to v4.1.9 Sep 16, 2025
@renovate renovate bot force-pushed the renovate/zod-4.x branch from e665232 to d283c49 Compare September 20, 2025 17:05
@renovate renovate bot changed the title fix(deps): update dependency zod to v4.1.9 fix(deps): update dependency zod to v4.1.10 Sep 20, 2025
@renovate renovate bot force-pushed the renovate/zod-4.x branch from d283c49 to de1fe83 Compare September 20, 2025 21:31
@renovate renovate bot changed the title fix(deps): update dependency zod to v4.1.10 fix(deps): update dependency zod to v4.1.11 Sep 20, 2025
@renovate renovate bot force-pushed the renovate/zod-4.x branch from de1fe83 to 1e2872a Compare October 3, 2025 07:38
@renovate renovate bot force-pushed the renovate/zod-4.x branch from 1e2872a to 8287351 Compare October 6, 2025 17:11
@renovate renovate bot changed the title fix(deps): update dependency zod to v4.1.11 fix(deps): update dependency zod to v4.1.12 Oct 6, 2025
@renovate renovate bot changed the title fix(deps): update dependency zod to v4.1.12 fix(deps): update dependency zod to v4.1.13 Nov 24, 2025
@renovate renovate bot force-pushed the renovate/zod-4.x branch from 8287351 to 6ede838 Compare November 24, 2025 05:44
@renovate renovate bot force-pushed the renovate/zod-4.x branch from 6ede838 to b716f52 Compare December 6, 2025 11:30
@renovate renovate bot force-pushed the renovate/zod-4.x branch from b716f52 to 834f954 Compare December 15, 2025 08:52
@renovate renovate bot changed the title fix(deps): update dependency zod to v4.1.13 fix(deps): update dependency zod to v4.2.0 Dec 15, 2025
@renovate renovate bot changed the title fix(deps): update dependency zod to v4.2.0 fix(deps): update dependency zod to v4.2.1 Dec 16, 2025
@renovate renovate bot force-pushed the renovate/zod-4.x branch from 834f954 to eb40602 Compare December 16, 2025 03:15
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant