Skip to content

Commit c0414ab

Browse files
Add missing Node engine restrictions to zod-plugin (#2912)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - Documentation - Added changelog entry for v2.0.0 documenting supported Node.js versions: ^20.19.0 || ^22.12.0 || ^24.0.0. - Chores - Declared supported Node.js versions in package metadata to improve install-time compatibility checks; users on unsupported Node versions may see warnings or install blocks. - Bumped package version to 2.0.0-beta.2; no functional or API changes. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 25d43ef commit c0414ab

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

zod-plugin/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Version 2
4+
5+
### v2.0.0
6+
7+
- Restricting the supported Node.js versions: `^20.19.0 || ^22.12.0 || ^24.0.0`.
8+
39
## Version 1
410

511
### v1.2.0

zod-plugin/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@express-zod-api/zod-plugin",
3-
"version": "1.2.0",
3+
"version": "2.0.0-beta.2",
44
"license": "MIT",
55
"description": "Zod plugin for express-zod-api",
66
"sideEffects": true,
@@ -35,6 +35,9 @@
3535
"dist",
3636
"*.md"
3737
],
38+
"engines": {
39+
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
40+
},
3841
"dependencies": {
3942
"ramda": "catalog:prod"
4043
},

0 commit comments

Comments
 (0)