Skip to content

Commit 8a83990

Browse files
lusarzjohnjbarton
authored andcommitted
chore: remove support for node 6 (#3246)
Set node 8 as minimal supported version. Closes #3151 BREAKING CHANGE: Drop Support for Node 6, to make it possible to use async/await in karma codebase.
1 parent 1a57029 commit 8a83990

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- 6
54
- 8
65
- 10
76

appveyor.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ version: "{build}"
22

33
environment:
44
matrix:
5-
- nodejs_version: "6"
65
- nodejs_version: "8"
76
- nodejs_version: "10"
87

docs/intro/04-faq.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ The latest stable version from NPM (`npm install karma`). See [versioning] for m
2525

2626

2727
### Which version of Node.js does Karma run with?
28-
Karma works on all LTS versions node in active maintenance state (see [LTS docs](https://github.com/nodejs/Release/blob/master/README.md) for more info) as well as the latest stable version. That is **6.x**, **8.x** and **10.x** at this point.
29-
28+
Karma works on all active LTS versions of node as specified by the [Node.js Release Working Group](https://github.com/nodejs/Release/blob/master/README.md). The nodejs version numbers are set in the package.json. Older versions of karma work with older versions of nodejs, but are not maintained or updated.
3029

3130
[mailing list]: https://groups.google.com/d/forum/karma-users
3231
[karma-ng-scenario]: https://github.com/karma-runner/karma-ng-scenario

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@
475475
"karma": "./bin/karma"
476476
},
477477
"engines": {
478-
"node": ">= 6"
478+
"node": ">= 8"
479479
},
480480
"version": "3.1.4",
481481
"license": "MIT",

0 commit comments

Comments
 (0)