Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minimum Node.js version to 14.6.0 #41765

Merged
merged 3 commits into from Oct 25, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started.md
Expand Up @@ -14,7 +14,7 @@ If you have questions about anything related to Next.js, you're always welcome t

#### System Requirements

- [Node.js 14.0.0](https://nodejs.org/) or newer
- [Node.js 14.6.0](https://nodejs.org/) or newer
- MacOS, Windows (including WSL), and Linux are supported

## Automatic Setup
Expand Down
2 changes: 1 addition & 1 deletion docs/upgrading.md
Expand Up @@ -8,7 +8,7 @@ description: Learn how to upgrade Next.js.

The [Supported Browsers](/docs/basic-features/supported-browsers-features.md) have been changed to drop Internet Explorer and target modern browsers.

The minimum Node.js version has been bumped from 12.22.0 to 14.0.0, since 12.x has reached end-of-life.
The minimum Node.js version has been bumped from 12.22.0 to 14.6.0, since 12.x has reached end-of-life.

The minimum React version has been bumped from 17.0.2 to 18.2.0.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -217,7 +217,7 @@
"@babel/traverse": "7.18.0"
},
"engines": {
"node": ">=14.0.0"
"node": ">=14.6.0"
},
"packageManager": "pnpm@7.3.0"
}
2 changes: 1 addition & 1 deletion packages/create-next-app/package.json
Expand Up @@ -49,6 +49,6 @@
"validate-npm-package-name": "3.0.0"
},
"engines": {
"node": ">=14.0.0"
"node": ">=14.6.0"
}
}
2 changes: 1 addition & 1 deletion packages/next/package.json
Expand Up @@ -293,6 +293,6 @@
"caniuse-lite": "1.0.30001406"
},
"engines": {
"node": ">=14.0.0"
"node": ">=14.6.0"
}
}
2 changes: 1 addition & 1 deletion packages/next/taskfile-swc.js
Expand Up @@ -66,7 +66,7 @@ module.exports = function (task) {
env: {
targets: {
// follow the version defined in packages/next/package.json#engine
node: '14.0.0',
node: '14.6.0',
},
},
jsc: {
Expand Down