-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
chore: drop node 8 support #9423
Conversation
Codecov Report
@@ Coverage Diff @@
## master #9423 +/- ##
==========================================
+ Coverage 64.09% 64.11% +0.02%
==========================================
Files 292 291 -1
Lines 12451 12449 -2
Branches 3070 3071 +1
==========================================
+ Hits 7980 7982 +2
+ Misses 3824 3822 -2
+ Partials 647 645 -2
Continue to review full report at Codecov.
|
We'll be keeping support for node 8 in Jest 25. This'll be nice for 26, though, thanks! |
Note to self when landing this - we should set minimum version of node to 10.14.2 so #9538 is fixed |
The |
@clydin wanna open up a PR with that? I'll land this one as soon as CI is green |
…hile-running * upstream/master: (331 commits) chore: update ts-eslint (jestjs#9953) Updated config docs with default transform value (jestjs#8583) Update jest-phabricator documentation (jestjs#8662) chore: remove dependency on `realpath-native` (jestjs#9952) chore: bump dated dependencies (jestjs#9951) chore: another try at fixing test-utils dependency chore: update lockfile due to beta release chore: move changelog entry and fix tets utils dependency Fix time duration formatting as per SI (jestjs#9765) v26.0.0-alpha.0 chore: run some jsdom tests in leak check (jestjs#9938) chore: upgrade chalk to v4 (jestjs#9752) feat: upgrade to JSDOM 16 (jestjs#9606) chore: remove checks for compileFunction (jestjs#9949) chore: drop node 8 support (jestjs#9423) Remove leftover `providesModuleNodeModules` (jestjs#9948) [BREAKING] Pojer -> Nakazawa chore: revert lockfile changes from 2b32fe6 chore: move changelog entry and fix lint Remove `providesModuleNodeModules` from Jest. (jestjs#9583) ...
Jest 26 dropped node 8 support jestjs/jest#9423
### dependencies * "@typescript-eslint/parser": "^3.0.0" * "eslint": "^6.8.0" * "typescript": "^3.9.3" * "vue-eslint-parser": "~7.1.0" ### devDependencies * "ajv": "^6.12.2" * "babel-jest": "^25.0.0" * "jest": "^25.0.0" * "jest-cli": "^25.0.0" * "prettier-eslint-cli": "^5.0.0" Jest 26 dropped node 8 support jestjs/jest#9423
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Summary
Node
v8.x
stopped support since 1 january 2020. https://github.com/nodejs/ReleaseI made PR to master because master already has breaking changes since last release(24.9).
Test plan
Node 10 supports
s
flag for RegExp out the box. So with changing babel env it works without any transfromation/polyfills. It changed behavior for prettyFormat withdotAll
flag in existed snapshots.