Skip to content

Commit a4a1296

Browse files
committed
update to v4.8 with ember-cli-update
1 parent bdc3eaa commit a4a1296

8 files changed

Lines changed: 168 additions & 115 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
test:
1616
name: "Tests"
1717
runs-on: ubuntu-latest
18+
timeout-minutes: 10
1819

1920
steps:
2021
- uses: actions/checkout@v4
@@ -36,6 +37,7 @@ jobs:
3637
floating:
3738
name: "Floating Dependencies"
3839
runs-on: ubuntu-latest
40+
timeout-minutes: 10
3941

4042
steps:
4143
- uses: actions/checkout@v4
@@ -55,6 +57,7 @@ jobs:
5557
name: ${{ matrix.try-scenario }}
5658
runs-on: ubuntu-latest
5759
needs: "test"
60+
timeout-minutes: 10
5861

5962
strategy:
6063
fail-fast: false
@@ -63,6 +66,8 @@ jobs:
6366
- ember-lts-3.16
6467
- ember-lts-3.20
6568
- ember-lts-3.24
69+
- ember-lts-3.28
70+
- ember-lts-4.4
6671
- ember-release
6772
- ember-beta
6873
- ember-canary

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The hope is that, in the future, Ember will provide a mechanism for populating `
99
## Compatibility
1010

1111
* Ember.js v3.16 or above
12-
* Ember CLI v2.13 or above
12+
* Ember CLI v3.16 or above
1313
* Node.js v12 or above
1414

1515

config/ember-try.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ module.exports = async function () {
1212
npm: {
1313
devDependencies: {
1414
'ember-source': '~3.16.0',
15+
'@ember/test-helpers': '2.7.0',
16+
'ember-qunit': '6.0.0',
1517
},
1618
},
1719
},
@@ -20,6 +22,8 @@ module.exports = async function () {
2022
npm: {
2123
devDependencies: {
2224
'ember-source': '~3.20.5',
25+
'@ember/test-helpers': '2.7.0',
26+
'ember-qunit': '6.0.0',
2327
},
2428
},
2529
},
@@ -28,6 +32,8 @@ module.exports = async function () {
2832
npm: {
2933
devDependencies: {
3034
'ember-source': '~3.24.3',
35+
'@ember/test-helpers': '2.7.0',
36+
'ember-qunit': '6.0.0',
3137
},
3238
},
3339
},
@@ -39,6 +45,14 @@ module.exports = async function () {
3945
},
4046
},
4147
},
48+
{
49+
name: 'ember-lts-4.4',
50+
npm: {
51+
devDependencies: {
52+
'ember-source': '~4.4.0',
53+
},
54+
},
55+
},
4256
{
4357
name: 'ember-release',
4458
npm: {

ember-cli-build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
44

55
module.exports = function (defaults) {
6-
let app = new EmberAddon(defaults, {
6+
const app = new EmberAddon(defaults, {
77
// Add options here
88
});
99

package.json

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,65 +20,64 @@
2020
},
2121
"scripts": {
2222
"build": "ember build --environment=production",
23-
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
24-
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
23+
"lint": "npm-run-all --print-name --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
24+
"lint:fix": "npm-run-all --print-name --aggregate-output --continue-on-error --parallel \"lint:*:fix\"",
2525
"lint:hbs": "ember-template-lint .",
2626
"lint:hbs:fix": "ember-template-lint . --fix",
2727
"lint:js": "eslint . --cache",
2828
"lint:js:fix": "eslint . --fix",
2929
"start": "ember serve",
30-
"test": "npm-run-all lint test:*",
30+
"test": "npm-run-all --print-name \"lint\" \"test:*\"",
3131
"test:ember": "ember test",
3232
"ember-compatibility-tests": "ember try:each"
3333
},
3434
"dependencies": {
3535
"ember-cli-babel": "^7.26.11",
36-
"ember-cli-htmlbars": "^6.0.1",
36+
"ember-cli-htmlbars": "^6.1.1",
3737
"ember-in-element-polyfill": "^1.0.0"
3838
},
3939
"devDependencies": {
4040
"@ember/optional-features": "^2.0.0",
41-
"@ember/test-helpers": "^2.7.0",
42-
"@embroider/test-setup": "^1.6.0",
41+
"@ember/test-helpers": "^2.8.1",
42+
"@embroider/test-setup": "^1.8.3",
4343
"@glimmer/component": "^1.1.2",
4444
"@glimmer/tracking": "^1.1.2",
4545
"babel-eslint": "^10.1.0",
4646
"broccoli-asset-rev": "^3.0.0",
4747
"chai": "^4.2.0",
4848
"ember-auto-import": "^2.6.3",
49-
"ember-cli": "~4.4.1",
49+
"ember-cli": "~4.8.0",
5050
"ember-cli-dependency-checker": "^3.3.1",
5151
"ember-cli-fastboot": "^4.1.1",
5252
"ember-cli-fastboot-testing": "^0.5.0",
5353
"ember-cli-inject-live-reload": "^2.1.0",
5454
"ember-cli-sri": "^2.1.1",
5555
"ember-cli-terser": "^4.0.2",
5656
"ember-disable-prototype-extensions": "^1.1.3",
57-
"ember-export-application-global": "^2.0.1",
5857
"ember-load-initializers": "^2.1.2",
5958
"ember-page-title": "^7.0.0",
60-
"ember-qunit": "^5.1.5",
59+
"ember-qunit": "^6.0.0",
6160
"ember-resolver": "^8.0.3",
62-
"ember-source": "~4.4.0",
61+
"ember-source": "~4.8.0",
6362
"ember-source-channel-url": "^3.0.0",
64-
"ember-template-lint": "^4.8.0",
63+
"ember-template-lint": "^4.16.1",
6564
"ember-try": "^3.0.0",
6665
"eslint": "^7.32.0",
6766
"eslint-config-prettier": "^8.5.0",
68-
"eslint-plugin-ember": "^10.6.1",
67+
"eslint-plugin-ember": "^11.1.0",
6968
"eslint-plugin-node": "^11.1.0",
70-
"eslint-plugin-prettier": "^4.0.0",
71-
"eslint-plugin-qunit": "^7.2.0",
69+
"eslint-plugin-prettier": "^4.2.1",
70+
"eslint-plugin-qunit": "^7.3.1",
7271
"loader.js": "^4.7.0",
7372
"npm-run-all": "^4.1.5",
74-
"prettier": "^2.6.2",
75-
"qunit": "^2.19.1",
73+
"prettier": "^2.7.1",
74+
"qunit": "^2.19.2",
7675
"qunit-dom": "^2.0.0",
7776
"release-plan": "^0.5.1",
7877
"webpack": "^5.85.0"
7978
},
8079
"engines": {
81-
"node": "12.* || 14.* || >= 16"
80+
"node": "12.* || 14.* || 16.* || >= 18"
8281
},
8382
"publishConfig": {
8483
"registry": "https://registry.npmjs.org"

0 commit comments

Comments
 (0)