ember-cli 4.2.0-beta.1 → 4.2.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 +21 -3
- package/blueprints/addon/additional-dev-dependencies.json +1 -1
- package/blueprints/addon/files/.github/workflows/ci.yml +0 -1
- package/blueprints/addon/files/.travis.yml +0 -1
- package/blueprints/addon/files/addon-config/ember-try.js +0 -13
- package/blueprints/app/files/config/environment.js +1 -1
- package/blueprints/app/files/package.json +11 -11
- package/docs/build/data.json +1 -1
- package/package.json +1 -1
- package/tests/helpers/mock-project.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
-
## v4.2.0
|
|
3
|
+
## v4.2.0
|
|
4
4
|
|
|
5
5
|
#### Blueprint Changes
|
|
6
6
|
|
|
7
|
-
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.1.0...v4.2.0
|
|
8
|
-
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.1.0...v4.2.0
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.1.0...v4.2.0)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.1.0...v4.2.0)
|
|
9
9
|
|
|
10
10
|
#### Changelog
|
|
11
11
|
|
|
12
|
+
- [#9737](https://github.com/ember-cli/ember-cli/pull/9737) Remove jQuery integration scenario from ember-try [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
13
|
+
- [#9739](https://github.com/ember-cli/ember-cli/pull/9739) Change blueprint to generate apps using 'history' location [@kategengler](https://github.com/kategengler)
|
|
14
|
+
- [#9762](https://github.com/ember-cli/ember-cli/pull/9762) Update @embroider/* packages to 1.0.0. [@rwjblue](https://github.com/rwjblue)
|
|
12
15
|
- [#9681](https://github.com/ember-cli/ember-cli/pull/9681) Update URL to Ember CLI website everywhere [@bertdeblock](https://github.com/bertdeblock)
|
|
13
16
|
- [#9726](https://github.com/ember-cli/ember-cli/pull/9726) Cancel stale workflows when starting a new one. [@rwjblue](https://github.com/rwjblue)
|
|
14
17
|
- [#9731](https://github.com/ember-cli/ember-cli/pull/9731) Add an `assert` and a `deprecate` utility [@bertdeblock](https://github.com/bertdeblock)
|
|
@@ -16,6 +19,21 @@
|
|
|
16
19
|
|
|
17
20
|
Thank you to all who took the time to contribute!
|
|
18
21
|
|
|
22
|
+
## v4.1.1
|
|
23
|
+
|
|
24
|
+
#### Blueprint Changes
|
|
25
|
+
|
|
26
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.1.0...v4.1.1)
|
|
27
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.1.0...v4.1.1)
|
|
28
|
+
|
|
29
|
+
#### Changelog
|
|
30
|
+
|
|
31
|
+
- [#9737](https://github.com/ember-cli/ember-cli/pull/9737) Remove jQuery integration scenario from ember-try [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
32
|
+
- [#9739](https://github.com/ember-cli/ember-cli/pull/9739) Change blueprint to generate apps using 'history' location [@kategengler](https://github.com/kategengler)
|
|
33
|
+
- [#9762](https://github.com/ember-cli/ember-cli/pull/9762) Update @embroider/* packages to 1.0.0. [@rwjblue](https://github.com/rwjblue)
|
|
34
|
+
|
|
35
|
+
Thank you to all who took the time to contribute!
|
|
36
|
+
|
|
19
37
|
## v4.1.0
|
|
20
38
|
|
|
21
39
|
#### Blueprint Changes
|
|
@@ -56,7 +56,6 @@ jobs:
|
|
|
56
56
|
- env: EMBER_TRY_SCENARIO=ember-release
|
|
57
57
|
- env: EMBER_TRY_SCENARIO=ember-beta
|
|
58
58
|
- env: EMBER_TRY_SCENARIO=ember-canary
|
|
59
|
-
- env: EMBER_TRY_SCENARIO=ember-default-with-jquery
|
|
60
59
|
- env: EMBER_TRY_SCENARIO=ember-classic
|
|
61
60
|
- env: EMBER_TRY_SCENARIO=embroider-safe
|
|
62
61
|
- env: EMBER_TRY_SCENARIO=embroider-optimized
|
|
@@ -47,19 +47,6 @@ module.exports = async function () {
|
|
|
47
47
|
},
|
|
48
48
|
},
|
|
49
49
|
},
|
|
50
|
-
{
|
|
51
|
-
name: 'ember-default-with-jquery',
|
|
52
|
-
env: {
|
|
53
|
-
EMBER_OPTIONAL_FEATURES: JSON.stringify({
|
|
54
|
-
'jquery-integration': true,
|
|
55
|
-
}),
|
|
56
|
-
},
|
|
57
|
-
npm: {
|
|
58
|
-
devDependencies: {
|
|
59
|
-
'@ember/jquery': '^1.1.0',
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
},
|
|
63
50
|
{
|
|
64
51
|
name: 'ember-classic',
|
|
65
52
|
env: {
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@ember/optional-features": "^2.0.0",
|
|
27
27
|
"@ember/test-helpers": "^2.6.0<% if (embroider) { %>",
|
|
28
|
-
"@embroider/compat": "^
|
|
29
|
-
"@embroider/core": "^
|
|
30
|
-
"@embroider/webpack": "^
|
|
28
|
+
"@embroider/compat": "^1.2.0",
|
|
29
|
+
"@embroider/core": "^1.2.0",
|
|
30
|
+
"@embroider/webpack": "^1.2.0<% } %>",
|
|
31
31
|
"@glimmer/component": "^1.0.4",
|
|
32
32
|
"@glimmer/tracking": "^1.0.4",
|
|
33
33
|
"babel-eslint": "^10.1.0",
|
|
34
34
|
"broccoli-asset-rev": "^3.0.0",
|
|
35
|
-
"ember-auto-import": "^2.
|
|
35
|
+
"ember-auto-import": "^2.4.0",
|
|
36
36
|
"ember-cli": "~<%= emberCLIVersion %>",
|
|
37
37
|
"ember-cli-app-version": "^5.0.0",
|
|
38
38
|
"ember-cli-babel": "^7.26.11",
|
|
@@ -41,28 +41,28 @@
|
|
|
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.2.0
|
|
44
|
+
"ember-data": "~4.2.0",
|
|
45
45
|
"ember-export-application-global": "^2.0.1",
|
|
46
46
|
"ember-fetch": "^8.1.1",
|
|
47
47
|
"ember-load-initializers": "^2.1.2",
|
|
48
48
|
"ember-page-title": "^7.0.0",
|
|
49
49
|
"ember-qunit": "^5.1.5",
|
|
50
50
|
"ember-resolver": "^8.0.3",
|
|
51
|
-
"ember-source": "~4.2.0
|
|
52
|
-
"ember-template-lint": "^4.
|
|
51
|
+
"ember-source": "~4.2.0",
|
|
52
|
+
"ember-template-lint": "^4.2.0<% if (welcome) { %>",
|
|
53
53
|
"ember-welcome-page": "^6.1.0<% } %>",
|
|
54
54
|
"eslint": "^7.32.0",
|
|
55
|
-
"eslint-config-prettier": "^8.
|
|
56
|
-
"eslint-plugin-ember": "^10.5.
|
|
55
|
+
"eslint-config-prettier": "^8.4.0",
|
|
56
|
+
"eslint-plugin-ember": "^10.5.9",
|
|
57
57
|
"eslint-plugin-node": "^11.1.0",
|
|
58
58
|
"eslint-plugin-prettier": "^4.0.0",
|
|
59
59
|
"eslint-plugin-qunit": "^7.2.0",
|
|
60
60
|
"loader.js": "^4.7.0",
|
|
61
61
|
"npm-run-all": "^4.1.5",
|
|
62
62
|
"prettier": "^2.5.1",
|
|
63
|
-
"qunit": "^2.
|
|
63
|
+
"qunit": "^2.18.0",
|
|
64
64
|
"qunit-dom": "^2.0.0",
|
|
65
|
-
"webpack": "^5.
|
|
65
|
+
"webpack": "^5.69.1"
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|
|
68
68
|
"node": "12.* || 14.* || >= 16"
|
package/docs/build/data.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"logo": "https://ember-cli.com/assets/images/ember-cli-logo-small-dark.png",
|
|
4
4
|
"name": "ember-cli",
|
|
5
5
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
6
|
-
"version": "4.2.0-
|
|
6
|
+
"version": "4.2.0-release-3bfa655fa5"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/package.json
CHANGED