Skip to content

Commit

Permalink
[core] Drop node 6 support (#14379)
Browse files Browse the repository at this point in the history
* [core] Drop node 6 support

* [docs] Reword supported node version

* Update docs/src/pages/getting-started/supported-platforms/supported-platforms.md

Co-Authored-By: eps1lon <[email protected]>
  • Loading branch information
eps1lon authored and oliviertassinari committed Feb 2, 2019
1 parent f64b1b4 commit 012747e
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ edge >= 14
firefox >= 52
chrome >= 49
safari >= 10
node 6.11
node 8.0
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defaults: &defaults
working_directory: /tmp/material-ui
docker:
- image: circleci/node:10.14
- image: circleci/node:8.15
# CircleCI has disabled the cache across forks for security reasons.
# Following their official statement, it was a quick solution, they
# are working on providing this feature back with appropriate security measures.
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
# This isn't user facing code.
# Let's take advantage of the most up to date node version.
docker:
- image: circleci/node:10.14
- image: circleci/node:8.15
steps:
- checkout
- *restore_yarn_offline_mirror
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
test_regressions:
<<: *defaults
docker:
- image: circleci/node:10.14
- image: circleci/node:8.15
- image: selenium/standalone-chrome:3.11.0
steps:
- checkout
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ You can expect Material-UI's components to render without major issues.
## Server

Because Material-UI supports server-side rendering, we need to support the latest, stable releases of [Node.js](https://github.com/nodejs/node).
We try to support the [last active LTS version](https://github.com/nodejs/Release#lts-schedule1). Right now, we support **node v6.x** and newer versions.
We also try to support the [LTS versions that are in maintenance](https://github.com/nodejs/Release#lts-schedule1). Right now, we support **node v8.x** and newer versions.

### CSS prefixing

Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui-benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"devDependencies": {},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
},
"license": "MIT",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui-codemod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"access": "public"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/material-ui-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
"access": "public"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/material-ui-icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
"access": "public"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/material-ui-lab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
"access": "public"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/material-ui-styles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@
"access": "public"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/material-ui-system/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
"access": "public"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/material-ui-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@
"access": "public"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@
"access": "public"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
}
}

0 comments on commit 012747e

Please sign in to comment.