Skip to content

chore(deps): update dependency zod to v4.2.1#23

Merged
mvgadagi merged 1 commit intomainfrom
renovate/zod-4.x-lockfile
Dec 20, 2025
Merged

chore(deps): update dependency zod to v4.2.1#23
mvgadagi merged 1 commit intomainfrom
renovate/zod-4.x-lockfile

Conversation

@github-actions
Copy link
Contributor

This PR contains the following updates:

Package Change Age Confidence
zod (source) 4.1.54.2.1 age confidence

Release Notes

colinhacks/zod (zod)

v4.2.1

Compare Source

Commits:

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

Commits:

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


Configuration

📅 Schedule: Branch creation - "before 8am on monday" in timezone UTC, 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 has been generated by Renovate Bot.

@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Dec 20, 2025
@mvgadagi mvgadagi closed this Dec 20, 2025
@mvgadagi mvgadagi reopened this Dec 20, 2025
@mvgadagi mvgadagi merged commit 334b6f2 into main Dec 20, 2025
9 of 10 checks passed
@mvgadagi mvgadagi deleted the renovate/zod-4.x-lockfile branch December 20, 2025 16:00
@github-actions
Copy link
Contributor Author

🎉 This PR is included in version 1.1.4 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

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.

1 participant