Skip to content

Commit

Permalink
Drop support for node 4
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Oct 26, 2017
1 parent dd34689 commit 4196f17
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 14 deletions.
12 changes: 0 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,6 @@ jobs:
- save-cache: *save-cache
- run: yarn run test-ci

test-node-4:
working_directory: ~/jest
docker:
- image: circleci/node:4.8.4
steps:
- checkout
- restore-cache: *restore-cache
- *yarn-install
- save-cache: *save-cache
- run: npm run test-ci-partial

test-and-deploy-website:
working_directory: ~/jest
docker:
Expand All @@ -108,6 +97,5 @@ workflows:
jobs:
- test-node-8
- test-node-6
- test-node-4
- test-browser
- test-and-deploy-website
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
* `[jest-worker]` Initial version of parallel worker abstraction, say hello! ([#4497](https://github.com/facebook/jest/pull/4497))

### Chore & Maintenance
* `[*]` [**BREAKING**] Drop support for Node.js version 4
* `[babel-jest]` Explicitly bump istanbul to newer versions ([#4616](https://github.com/facebook/jest/pull/4616))
* `[expect]` Upgrade mocha and rollup for browser testing ([#4642](https://github.com/facebook/jest/pull/4642))
* `[docs]` Add info about `coveragePathIgnorePatterns` ([#4602](https://github.com/facebook/jest/pull/4602))
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"jest": "./bin/jest.js"
},
"engines": {
"node": ">= 4"
"node": ">= 6"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"jest": "./bin/jest.js"
},
"engines": {
"node": ">= 4"
"node": ">= 6"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 4196f17

Please sign in to comment.