From a0370ade8aa53dbce95e68d9d01e952bcd2b6f40 Mon Sep 17 00:00:00 2001 From: Thomas Genin Date: Sun, 14 Jan 2018 03:43:12 -0800 Subject: [PATCH] Update minimal version of Node supported (#5300) --- CHANGELOG.md | 4 +++- docs/Troubleshooting.md | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a080a0b2922f..2eb8e94eea35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,12 +12,14 @@ the case of `--lastCommit`, `--findRelatedTests`, or `--onlyChanged` options having been passed to the CLI +### Fixes +* `[docs]` Update mention of the minimal version of node supported [#4947](https://github.com/facebook/jest/issues/4947) + ### Chore & Maintenance * `[filenames]` Standardize folder names under `integration-tests/` ([#5298](https://github.com/facebook/jest/pull/5298)) - ## jest 22.0.6 ### Fixes diff --git a/docs/Troubleshooting.md b/docs/Troubleshooting.md index acefc35f3260..ddbc0dd17de5 100644 --- a/docs/Troubleshooting.md +++ b/docs/Troubleshooting.md @@ -299,9 +299,9 @@ option to `jasmine1` or pass `--testRunner=jasmine1` as a command line option. ### Compatibility issues -Jest takes advantage of new features added to Node 4. We recommend that you +Jest takes advantage of new features added to Node 6. We recommend that you upgrade to the latest stable release of Node. The minimum supported version is -`v4.0.0`. Versions `0.x.x` are not supported. +`v6.0.0`. Versions `0.x.x` and `4.x.x` are not supported. ### `coveragePathIgnorePatterns` seems to not have any effect.