Skip to content

Commit c75f505

Browse files
author
Robert Jackson
committed
Drop Node 8 support.
Our public API around Node version support says: > To make it easier for us to deliver on our support promise we have > adopted a policy that the HEAD of our master branches will be compatible > with all versions of Node.js currently receiving support. For any Ember > project on the day we drop support for a Node.js version the following > things will happen: > > * We will update the engines key inside of package.json to specify the > versions supported by the project. > * We will update the testing targets to remove the newly-unsupported > Node.js version from the list. > * We will begin accepting code without testing it against the newly-unsupported version of Node.js. > > For projects with an unspecified release model we will release one last > version of the project prior to those steps. The version number change > will reflect SemVer with respect to the APIs of the project and not take > into consideration removal of Node.js version support. This means that > the release may show up as a "patch" version release. For example, if > we're dropping support for Node.js 0.10 and have a project at version > 1.3.3 we can drop Node.js 0.10 support when we release version 1.3.4. (from https://blog.emberjs.com/2016/09/07/ember-node-lts-support.html)
1 parent 4299f0f commit c75f505

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,11 @@ jobs:
9595
- yarn test
9696

9797
- name: Node.js Tests
98-
node_js: "8"
9998
script:
10099
- yarn ember build -prod
101100
- yarn test:node
102101

103102
- name: Blueprint Tests
104-
node_js: "8"
105103
script:
106104
- yarn test:blueprints
107105

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
"tslint": "^5.20.1"
147147
},
148148
"engines": {
149-
"node": "8.* || 10.* || >= 12.*"
149+
"node": "10.* || >= 12.*"
150150
},
151151
"ember-addon": {
152152
"after": "ember-cli-legacy-blueprints"

0 commit comments

Comments
 (0)