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
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [20.x, 22.x]

steps:
- name: Checkout code
Expand Down Expand Up @@ -157,7 +157,8 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: 20.x
# Node 22: testcontainers 12 pulls undici 8, which needs Node >= 20.18
node-version: 22.x
cache: pnpm

- name: Install dependencies
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- **Minimum supported Node.js is now 20** (was 18). Node 18 reached end-of-life
in April 2025; the `engines` field, CI test matrix, and Docker E2E runner have
been updated accordingly. This unblocks dependencies that require Node >= 20.
Comment on lines +54 to +56
- Default rsync flags are now `["--archive"]`. `.git` is always excluded
automatically by Pando (in `fileOps.buildArgs`) and must no longer be listed
in the flags.
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Git worktrees, built on [oclif](https://oclif.io) and
## Prerequisites

- **Node.js 20** — the project pins Node 20 via the `.node-version` file. The
published package supports Node >= 18, and CI also runs the test matrix on
Node 18, 20, and 22, but Node 20 is the recommended development version.
published package supports Node >= 20, and CI also runs the test matrix on
Node 20 and 22, but Node 20 is the recommended development version.
- **pnpm** — the package manager for this repo (`packageManager` is pinned in
`package.json`). Install with `npm install -g pnpm` or via
[corepack](https://nodejs.org/api/corepack.html).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ pando/

## Requirements

- Node.js >= 18.0.0 (development targets Node 20, pinned in `.node-version`)
- Node.js >= 20.0.0 (development targets Node 20, pinned in `.node-version`)
- Git >= 2.5.0 (for worktree support)

## Troubleshooting
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"automation"
],
"engines": {
"node": ">=18.0.0"
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
Expand Down