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

Update node version requirements for v10 to v12 #7409

Merged
merged 1 commit into from
Sep 2, 2020
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
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ The core team will review your pull request and will either merge it, request ch
## Contribution Prerequisites

- You have [Node](https://nodejs.org/en/) at v10.10.0+ only and [Yarn](https://yarnpkg.com/en/) at v1.2.0+.
- Node v14/v13 **are not supported yet**
- You are familiar with Git.

## Development Workflow
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ Complete installation requirements can be found in the documentation under <a hr

**Node:**

- NodeJS >= 10.10
Please note at this time Node v14 **is not** supported

- NodeJS >= 10.10 <13
- NPM >= 6.x

**Database:**
Expand Down
23 changes: 23 additions & 0 deletions docs/v3.x/getting-started/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,29 @@ Additional guides for optional software additions that compliment or improve the
</InstallLink>
</div>

## Recommended requirements

To provide the best possible environment for Strapi there are a few requirements, these apply in both a development (local) as well as a staging and production workflow.

- Node LTS (v10 or V12) **Note that Node v14 is not currently supported**
- Typical standard build tools for your OS (the `build-essentials` package on most Debian-based systems)
- At least 1 CPU core (Highly recommended at least 2)
- At least 2 GB of RAM (Moderately recommended 4)
- Minimum required storage space recommended by your OS or 32 GB of **free** space
- A supported database version
- MySQL >= 5.6
- MariaDB >= 10.1
- PostgreSQL >= 10
- SQLite >= 3
- MongoDB >= 3.6
- A supported operating system
- Ubuntu >= 18.04 (LTS-Only)
- Debian >= 9.x
- CentOS/RHEL >= 8
- macOS Mojave or newer (ARM not supported)
- Windows 10
- Docker - [docker repo](https://github.com/strapi/strapi-docker)

## Application Configuration

### 1. Configure
Expand Down
2 changes: 1 addition & 1 deletion examples/getstarted/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"uuid": "getstarted"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-strapi-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/strapi-admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
}
],
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-connector-bookshelf/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-connector-mongoose/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-generate-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-generate-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-generate-model/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-generate-new/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-generate-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-generate-policy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-generate-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-generate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-helper-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dist"
],
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"author": {
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-hook-ejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-hook-redis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-middleware-views/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-plugin-content-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"url": "git://github.com/strapi/strapi.git"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-plugin-content-type-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"url": "git://github.com/strapi/strapi.git"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-plugin-documentation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
}
],
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-plugin-email/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"url": "git://github.com/strapi/strapi.git"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-plugin-graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
}
],
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-plugin-upload/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
}
],
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-plugin-users-permissions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"url": "git://github.com/strapi/strapi.git"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-provider-email-amazon-ses/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-provider-email-mailgun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-provider-email-sendgrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-provider-email-sendmail/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-provider-upload-aws-s3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-provider-upload-cloudinary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-provider-upload-local/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-provider-upload-rackspace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"streamifier": "^0.1.1"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"gitHead": "c85658a19b8fef0f3164c19693a45db305dc07a9"
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.10.0",
"node": ">=10.10.0 <13",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE",
Expand Down