Skip to content

Commit

Permalink
docs: fix minimum Node.js version to 14.18.0 (#48545)
Browse files Browse the repository at this point in the history
fixes #42729

According to #42729, the minimum Node.js version of Next is `14.18.0`,
but some docs say `14.6.0`, and it's error-prone.
#42729 (comment)
pointed out it's a bug rather than wrong documentation.

But Node v14 is going to be EOF this month, so Next will update the
minimum version in the next major release.
https://github.com/nodejs/release#release-schedule

So I feel it's enough to only fix the documentation rather than fixing
the implementation to work with 14.6.0 as a temporary fix.


<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:

## For Contributors

### Improving Documentation or adding/fixing Examples

- The "examples guidelines" are followed from our contributing doc
https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md
- Make sure the linting passes by running `pnpm build && pnpm lint`. See
https://github.com/vercel/next.js/blob/canary/contributing/repository/linting.md

### Fixing a bug

- Related issues linked using `fixes #number`
- Tests added. See:
https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs
- Errors have a helpful link attached, see
https://github.com/vercel/next.js/blob/canary/contributing.md

### Adding a feature

- Implements an existing feature request or RFC. Make sure the feature
request has been accepted for implementation before opening a PR. (A
discussion must be opened, see
https://github.com/vercel/next.js/discussions/new?category=ideas)
- Related issues/discussions are linked using `fixes #number`
- e2e tests added
(https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs
- Documentation added
- Telemetry added. In case of a feature if it's used or not.
- Errors have a helpful link attached, see
https://github.com/vercel/next.js/blob/canary/contributing.md



## For Maintainers

- Minimal description (aim for explaining to someone not on the team to
understand the PR)
- When linking to a Slack thread, you might want to share details of the
conclusion
- Link both the Linear (Fixes NEXT-xxx) and the GitHub issues
- Add review comments if necessary to explain to the reviewer the logic
behind a change

### What?

### Why?

### How?

Closes NEXT-
Fixes #

-->

---------

Co-authored-by: Steven <steven@ceriously.com>
  • Loading branch information
koba04 and styfle committed Apr 19, 2023
1 parent 7f2a4ac commit 7b6e336
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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.6.0](https://nodejs.org/) or newer
- [Node.js 14.18.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 @@ -19,7 +19,7 @@ pnpm up next react react-dom eslint-config-next --latest
### v13 Summary

- 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.6.0, since 12.x has reached end-of-life.
- The minimum Node.js version has been bumped from 12.22.0 to 14.18.0, since 12.x has reached end-of-life.
- The minimum React version has been bumped from 17.0.2 to 18.2.0.
- The `swcMinify` configuration property was changed from `false` to `true`. See [Next.js Compiler](/docs/advanced-features/compiler.md) for more info.
- The `next/image` import was renamed to `next/legacy/image`. The `next/future/image` import was renamed to `next/image`. A [codemod is available](/docs/advanced-features/codemods.md#next-image-to-legacy-image) to safely and automatically rename your imports.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -243,7 +243,7 @@
"@babel/traverse": "7.18.0"
},
"engines": {
"node": ">=14.6.0"
"node": ">=14.18.0"
},
"packageManager": "pnpm@7.24.3"
}
2 changes: 1 addition & 1 deletion packages/create-next-app/package.json
Expand Up @@ -55,6 +55,6 @@
"validate-npm-package-name": "3.0.0"
},
"engines": {
"node": ">=14.6.0"
"node": ">=14.18.0"
}
}
2 changes: 1 addition & 1 deletion packages/next/package.json
Expand Up @@ -315,6 +315,6 @@
"caniuse-lite": "1.0.30001406"
},
"engines": {
"node": ">=14.6.0"
"node": ">=14.18.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.6.0',
node: '14.18.0',
},
},
jsc: {
Expand Down

0 comments on commit 7b6e336

Please sign in to comment.