ember-cli 4.7.0 → 4.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/blueprints/addon/files/.github/workflows/ci.yml +1 -1
- package/blueprints/addon/files/.travis.yml +1 -1
- package/blueprints/addon/files/README.md +2 -2
- package/blueprints/addon/files/addon-config/ember-try.js +4 -4
- package/blueprints/addon/files/ember-cli-build.js +1 -1
- package/blueprints/app/files/config/environment.js +1 -1
- package/blueprints/app/files/ember-cli-build.js +1 -1
- package/blueprints/app/files/package.json +15 -15
- package/docs/build/data.json +118 -75
- package/lib/models/blueprint.js +44 -27
- package/lib/models/project.js +1 -0
- package/lib/tasks/generate-from-blueprint.js +43 -32
- package/lib/tasks/npm-task.js +5 -1
- package/lib/utilities/load-config.js +2 -2
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## v4.8.0
|
|
4
|
+
|
|
5
|
+
#### Blueprint Changes
|
|
6
|
+
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.7.0...v4.8.0)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.7.0...v4.8.0)
|
|
9
|
+
|
|
10
|
+
#### Changelog
|
|
11
|
+
|
|
12
|
+
- [#10014](https://github.com/ember-cli/ember-cli/pull/10014) [BUGFIX release] Make sure newly installed addons are discovered when running `ember install` [@bertdeblock](https://github.com/bertdeblock)
|
|
13
|
+
- [#9920](https://github.com/ember-cli/ember-cli/pull/9920) [BUGFIX] Make sure a blueprint’s options object and project instance are always available for all public hooks [@bertdeblock](https://github.com/bertdeblock)
|
|
14
|
+
- [#9945](https://github.com/ember-cli/ember-cli/pull/9945) [ENHANCEMENT/BREAKING] Add Node v18 to `engines` in `app` and `addon` blueprint (removes support for Node v17) [@bertdeblock](https://github.com/bertdeblock)
|
|
15
|
+
- [#9946](https://github.com/ember-cli/ember-cli/pull/9946) [INTERNAL] Unskip `package-info-cache` tests [@bertdeblock](https://github.com/bertdeblock)
|
|
16
|
+
- [#9951](https://github.com/ember-cli/ember-cli/pull/9951) Update `js-yaml` to v4 [@bertdeblock](https://github.com/bertdeblock)
|
|
17
|
+
- [#9952](https://github.com/ember-cli/ember-cli/pull/9952) Update `walk-sync` to v3 [@bertdeblock](https://github.com/bertdeblock)
|
|
18
|
+
- [#9971](https://github.com/ember-cli/ember-cli/pull/9971) Add Ember 4.4 LTS to addon blueprint, remove 3.24 [@simonihmig](https://github.com/simonihmig)
|
|
19
|
+
- [#9975](https://github.com/ember-cli/ember-cli/pull/9975) [ENHANCEMENT] Fix `prefer-const` lint violations in `app` and `addon` blueprints [@bmish](https://github.com/bmish)
|
|
20
|
+
- [#9987](https://github.com/ember-cli/ember-cli/pull/9987) [BUGFIX] Handle rebuild failures without exiting [@bendemboski](https://github.com/bendemboski)
|
|
21
|
+
- [#9988](https://github.com/ember-cli/ember-cli/pull/9988) [BUGFIX] - Address npm-run-all and Yarn 3 conflict & Removed warning [@christianarty](https://github.com/christianarty)
|
|
22
|
+
|
|
23
|
+
Thank you to all who took the time to contribute!
|
|
24
|
+
|
|
3
25
|
## v4.7.0
|
|
4
26
|
|
|
5
27
|
#### Blueprint Changes
|
|
@@ -51,8 +51,8 @@ jobs:
|
|
|
51
51
|
|
|
52
52
|
# we recommend new addons test the current and previous LTS
|
|
53
53
|
# as well as latest stable release (bonus points to beta/canary)
|
|
54
|
-
- env: EMBER_TRY_SCENARIO=ember-lts-3.24
|
|
55
54
|
- env: EMBER_TRY_SCENARIO=ember-lts-3.28
|
|
55
|
+
- env: EMBER_TRY_SCENARIO=ember-lts-4.4
|
|
56
56
|
- env: EMBER_TRY_SCENARIO=ember-release
|
|
57
57
|
- env: EMBER_TRY_SCENARIO=ember-beta
|
|
58
58
|
- env: EMBER_TRY_SCENARIO=ember-canary
|
|
@@ -8,18 +8,18 @@ module.exports = async function () {
|
|
|
8
8
|
<% if (yarn) { %>useYarn: true,
|
|
9
9
|
<% } %>scenarios: [
|
|
10
10
|
{
|
|
11
|
-
name: 'ember-lts-3.
|
|
11
|
+
name: 'ember-lts-3.28',
|
|
12
12
|
npm: {
|
|
13
13
|
devDependencies: {
|
|
14
|
-
'ember-source': '~3.
|
|
14
|
+
'ember-source': '~3.28.0',
|
|
15
15
|
},
|
|
16
16
|
},
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
|
-
name: 'ember-lts-
|
|
19
|
+
name: 'ember-lts-4.4',
|
|
20
20
|
npm: {
|
|
21
21
|
devDependencies: {
|
|
22
|
-
'ember-source': '~
|
|
22
|
+
'ember-source': '~4.4.0',
|
|
23
23
|
},
|
|
24
24
|
},
|
|
25
25
|
},
|
|
@@ -12,59 +12,59 @@
|
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "ember build --environment=production",
|
|
15
|
-
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
|
|
16
|
-
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
|
|
15
|
+
"lint": "npm-run-all --print-name --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
|
|
16
|
+
"lint:fix": "npm-run-all --print-name --aggregate-output --continue-on-error --parallel \"lint:*:fix\"",
|
|
17
17
|
"lint:hbs": "ember-template-lint .",
|
|
18
18
|
"lint:hbs:fix": "ember-template-lint . --fix",
|
|
19
19
|
"lint:js": "eslint . --cache",
|
|
20
20
|
"lint:js:fix": "eslint . --fix",
|
|
21
21
|
"start": "ember serve",
|
|
22
|
-
"test": "npm-run-all lint test
|
|
22
|
+
"test": "npm-run-all --print-name \"lint\" \"test:*\"",
|
|
23
23
|
"test:ember": "ember test"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@ember/optional-features": "^2.0.0",
|
|
27
27
|
"@ember/test-helpers": "^2.8.1<% if (embroider) { %>",
|
|
28
|
-
"@embroider/compat": "^1.
|
|
29
|
-
"@embroider/core": "^1.
|
|
30
|
-
"@embroider/webpack": "^1.
|
|
28
|
+
"@embroider/compat": "^1.9.0",
|
|
29
|
+
"@embroider/core": "^1.9.0",
|
|
30
|
+
"@embroider/webpack": "^1.9.0<% } %>",
|
|
31
31
|
"@glimmer/component": "^1.1.2",
|
|
32
32
|
"@glimmer/tracking": "^1.1.2",
|
|
33
33
|
"babel-eslint": "^10.1.0",
|
|
34
34
|
"broccoli-asset-rev": "^3.0.0",
|
|
35
|
-
"ember-auto-import": "^2.4.
|
|
35
|
+
"ember-auto-import": "^2.4.3",
|
|
36
36
|
"ember-cli": "~<%= emberCLIVersion %>",
|
|
37
37
|
"ember-cli-app-version": "^5.0.0",
|
|
38
38
|
"ember-cli-babel": "^7.26.11",
|
|
39
39
|
"ember-cli-dependency-checker": "^3.3.1",
|
|
40
|
-
"ember-cli-htmlbars": "^6.1.
|
|
40
|
+
"ember-cli-htmlbars": "^6.1.1",
|
|
41
41
|
"ember-cli-inject-live-reload": "^2.1.0",
|
|
42
42
|
"ember-cli-sri": "^2.1.1",
|
|
43
43
|
"ember-cli-terser": "^4.0.2",
|
|
44
|
-
"ember-data": "~4.7.
|
|
44
|
+
"ember-data": "~4.7.3",
|
|
45
45
|
"ember-fetch": "^8.1.2",
|
|
46
46
|
"ember-load-initializers": "^2.1.2",
|
|
47
47
|
"ember-page-title": "^7.0.0",
|
|
48
|
-
"ember-qunit": "^
|
|
48
|
+
"ember-qunit": "^6.0.0",
|
|
49
49
|
"ember-resolver": "^8.0.3",
|
|
50
|
-
"ember-source": "~4.
|
|
51
|
-
"ember-template-lint": "^4.
|
|
50
|
+
"ember-source": "~4.8.0",
|
|
51
|
+
"ember-template-lint": "^4.16.1<% if (welcome) { %>",
|
|
52
52
|
"ember-welcome-page": "^6.2.0<% } %>",
|
|
53
53
|
"eslint": "^7.32.0",
|
|
54
54
|
"eslint-config-prettier": "^8.5.0",
|
|
55
|
-
"eslint-plugin-ember": "^11.0
|
|
55
|
+
"eslint-plugin-ember": "^11.1.0",
|
|
56
56
|
"eslint-plugin-node": "^11.1.0",
|
|
57
57
|
"eslint-plugin-prettier": "^4.2.1",
|
|
58
58
|
"eslint-plugin-qunit": "^7.3.1",
|
|
59
59
|
"loader.js": "^4.7.0",
|
|
60
60
|
"npm-run-all": "^4.1.5",
|
|
61
61
|
"prettier": "^2.7.1",
|
|
62
|
-
"qunit": "^2.19.
|
|
62
|
+
"qunit": "^2.19.2",
|
|
63
63
|
"qunit-dom": "^2.0.0",
|
|
64
64
|
"webpack": "^5.74.0"
|
|
65
65
|
},
|
|
66
66
|
"engines": {
|
|
67
|
-
"node": "14.* || >=
|
|
67
|
+
"node": "14.* || 16.* || >= 18"
|
|
68
68
|
},
|
|
69
69
|
"ember": {
|
|
70
70
|
"edition": "octane"
|