Skip to content
Draft
Show file tree
Hide file tree
Changes from 11 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
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [20.19.0, 20.x, 22.12.0, 22.x, 24.0.0, 24.x]
node-version: [20.19.0, 20.x, 22.12.0, 22.x, 24.0.0, 24.x, 26.0.0-rc.1]
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

change when ready (April 23rd)

Suggested change
node-version: [20.19.0, 20.x, 22.12.0, 22.x, 24.0.0, 24.x, 26.0.0-rc.1]
node-version: [20.19.0, 20.x, 22.12.0, 22.x, 24.0.0, 24.x, 26.0.0, 26.x]

Comment thread
RobinTail marked this conversation as resolved.
Outdated
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Version 27

### v27.3.0

- Supporting Node 26.

### v27.2.4

- Fixed performance regression since v24.0.0:
Expand Down
2 changes: 1 addition & 1 deletion express-zod-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"*.md"
],
"engines": {
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0-rc.1"
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0-rc.1"
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0"

Comment thread
RobinTail marked this conversation as resolved.
},
"dependencies": {
"@express-zod-api/zod-plugin": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion migration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"*.md"
],
"engines": {
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0-rc.1"
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0-rc.1"
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0"

Comment thread
RobinTail marked this conversation as resolved.
},
"peerDependencies": {
"eslint": "^9.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-allowed-dependencies": "^2.0.1",
"eslint-plugin-allowed-dependencies": "^2.2.0-beta.1",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"prettier": "3.8.3",
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion zod-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"*.md"
],
"engines": {
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0-rc.1"
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0-rc.1"
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0"

Comment thread
RobinTail marked this conversation as resolved.
},
"dependencies": {
"ramda": "catalog:prod"
Expand Down
Loading