Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 14, 2025

This PR contains the following updates:

Package Change Age Confidence
zod (source) 4.1.12 -> 4.2.1 age confidence
zod (source) ^3.25.0 -> ^4.0.0 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


Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (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 these updates again.


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

This PR was generated by Mend Renovate. View the repository job log.

@bolt-new-by-stackblitz
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@changeset-bot
Copy link

changeset-bot bot commented Dec 14, 2025

⚠️ No Changeset found

Latest commit: d3e4d77

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@vercel
Copy link

vercel bot commented Dec 14, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
hey-api-docs Ready Ready Preview, Comment Dec 19, 2025 4:46pm

@renovate renovate bot force-pushed the renovate/zod-4.x branch from 4451281 to 3fa599a Compare December 14, 2025 12:19
@renovate renovate bot force-pushed the renovate/zod-4.x branch from 3fa599a to 9d2133b Compare December 14, 2025 13:26
@renovate renovate bot force-pushed the renovate/zod-4.x branch from 9d2133b to 432e07f Compare December 14, 2025 13:48
@renovate renovate bot force-pushed the renovate/zod-4.x branch from 432e07f to dcadeb6 Compare December 18, 2025 08:34
@renovate renovate bot changed the title chore(deps): update dependency zod to v4.1.13 chore(deps): update dependency zod to v4.2.0 Dec 18, 2025
@renovate renovate bot force-pushed the renovate/zod-4.x branch from dcadeb6 to 1b7039d Compare December 19, 2025 06:08
@renovate renovate bot changed the title chore(deps): update dependency zod to v4.2.0 chore(deps): update dependency zod to v4.2.1 Dec 19, 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.

1 participant