Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Node.js CI

on:
push:
branches: [ master, v22, v23, v24, v25 ]
branches: [ master, v26 ]
pull_request:
branches: [ master, v22, v23, v24, v25 ]
branches: [ master, v26 ]

jobs:
build:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Version 26

### v26.3.4

- Limited Zod compatibility to `>=4.1.13 <4.4.0`:
- Zod 4.4.0 introduced a breaking change to how `brand` method works, making the current plugin approach incompatible;
- Supporting Zod 4.4+ requires a breaking change and will be addressed in v28.

### v26.3.3

- Fixed performance regression since v24.0.0:
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ catalogs:
prod:
"ramda": "^0.32.0"
peer:
"zod": "^4.1.13"
"zod": ">=4.1.13 <4.4.0"
dev:
"@types/compression": "^1.8.1"
"@types/express": "^5.0.6"
Expand All @@ -66,6 +66,6 @@ catalogs:
"http-errors": "^2.0.1"
"typescript": "^5.9.3"
"typescript-eslint": "^8.51.0"
"zod": "^4.3.4"
"zod": "~4.3.4"
overrides:
"@scarf/scarf": "npm:empty-npm-package@1.0.0"
6 changes: 6 additions & 0 deletions zod-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Version 3

### v3.0.2

- Limited compatibility to Zod versions `>=4.1.13 <4.4.0`:
- Zod 4.4.0 introduced a breaking change to how `brand` method works, making the current plugin approach incompatible;
- Support for Zod 4.4+ will be added in v5.

### v3.0.1

- Improved readability of the types declaration in the bundle;
Expand Down
3 changes: 2 additions & 1 deletion zod-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ This module extends Zod functionality when it's imported:

## Requirements

- Zod `^4.1.13`
- Compatible with Zod versions `>=4.1.13 <4.4.0`;
- Zod 4.4+ support will be available in v5.

## Basic usage

Expand Down
Loading