Skip to content

Commit

Permalink
Drop support for node 14 (#922)
Browse files Browse the repository at this point in the history
Node 14 support ends on 30 Apr 2023.
  • Loading branch information
gilest authored May 1, 2023
1 parent 6c58bc8 commit a3bab29
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ on:
pull_request:

env:
NODE_VERSION: '14.x'
NODE_VERSION: '16.x'

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

env:
NODE_VERSION: '14.x'
NODE_VERSION: '16.x'

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion ember-file-upload/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Uploads can be managed through queues and continue in the background, even after
* Ember.js 3.25 or above
* ember-auto-import 2.0 or above
* Ember CLI v2.13 or above
* Node.js v14 or above
* Node.js v16 or above
* Modern browsers. Internet Explorer 11 might work but is not offically supported.
* Strict Content Security Policy (CSP) except for mirage route handlers, which require `data:` protocol to be included in `image-src` and `media-src` directives.

Expand Down
2 changes: 1 addition & 1 deletion ember-file-upload/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
}
},
"engines": {
"node": "14.* || 16.* || >= 18"
"node": "16.* || >= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
Expand Down
2 changes: 1 addition & 1 deletion test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
}
},
"engines": {
"node": "14.* || 16.* || >= 18"
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"webpack": "^5.78.0"
},
"engines": {
"node": "14.* || 16.* || >= 18"
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand Down

0 comments on commit a3bab29

Please sign in to comment.