Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 18, 2025

This PR contains the following updates:

Package Change Age Confidence
zod (source) ^4.1.13 -> ^4.2.0 age confidence

Release Notes

colinhacks/zod (zod)

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:


Configuration

📅 Schedule: Branch creation - "after 6pm every weekday,every weekend" in timezone Australia/Sydney, Automerge - "after 6pm every weekday,every weekend" in timezone Australia/Sydney.

🚦 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 enabled auto-merge (squash) December 18, 2025 09:05
@renovate renovate bot merged commit ce92fe5 into main Dec 18, 2025
9 of 10 checks passed
@renovate renovate bot deleted the renovate/zod-4.x branch December 18, 2025 09:06
zeshuaro-bot bot pushed a commit that referenced this pull request Dec 28, 2025
## [0.11.5](v0.11.4...v0.11.5) (2025-12-28)

### Bug Fixes

* **deps:** update dependency @actions/core to v2 ([#915](#915)) ([dadfbee](dadfbee))
* **deps:** update dependency zod to ^4.2.0 ([#918](#918)) ([ce92fe5](ce92fe5))
* **deps:** update dependency zod to ^4.2.1 ([#920](#920)) ([950df2d](950df2d))
* **node:** update node.js to v24.12.0 ([#914](#914)) ([7bba777](7bba777))

### Miscellaneous Chores

* **deps:** lock file maintenance ([#911](#911)) ([36e91b8](36e91b8))
* **deps:** lock file maintenance ([#916](#916)) ([5e42139](5e42139))
* **deps:** replace dependency @tsconfig/node22 with @tsconfig/node24 ([#917](#917)) ([4d81772](4d81772))
* **deps:** update dependency @biomejs/biome to v2 ([#793](#793)) ([b427f8a](b427f8a))
* **deps:** update dependency @tsconfig/node24 to v24.0.3 ([#922](#922)) ([87e6689](87e6689))
* remove unused dependency @types/semantic-release ([#923](#923)) ([28196eb](28196eb))

### Continuous Integration

* **deps:** update codecov/codecov-action action to v5.5.2 ([#912](#912)) ([d6a6d67](d6a6d67))
* **deps:** update zeshuaro/github-actions-workflows digest to 13917c9 ([#919](#919)) ([a292f4e](a292f4e))
* **deps:** update zeshuaro/github-actions-workflows digest to 1687c9d ([#921](#921)) ([4ab3572](4ab3572))
* **deps:** update zeshuaro/github-actions-workflows digest to 1a43d98 ([#913](#913)) ([72991ce](72991ce))
* **release:** fix release authentication ([#924](#924)) ([9ae0de4](9ae0de4))
* **release:** remove unused npm token ([#925](#925)) ([0a44ba5](0a44ba5))
@zeshuaro-bot
Copy link

zeshuaro-bot bot commented Dec 28, 2025

🎉 This PR is included in version 0.11.5 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant