ember-cli 4.3.0 → 4.4.0-beta.1
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/.github/workflows/ci.yml +8 -8
- package/CHANGELOG.md +16 -0
- package/blueprints/addon/additional-dev-dependencies.json +1 -1
- package/blueprints/addon/files/.github/workflows/ci.yml +6 -6
- package/blueprints/addon/files/README.md +6 -12
- package/blueprints/app/files/.github/workflows/ci.yml +4 -4
- package/blueprints/app/files/package.json +11 -11
- package/docs/build/data.json +1 -1
- package/package.json +9 -9
package/.github/workflows/ci.yml
CHANGED
|
@@ -24,8 +24,8 @@ jobs:
|
|
|
24
24
|
runs-on: ubuntu-latest
|
|
25
25
|
|
|
26
26
|
steps:
|
|
27
|
-
- uses: actions/checkout@
|
|
28
|
-
- uses: actions/setup-node@
|
|
27
|
+
- uses: actions/checkout@v3
|
|
28
|
+
- uses: actions/setup-node@v3
|
|
29
29
|
with:
|
|
30
30
|
node-version: 12.x
|
|
31
31
|
cache: 'yarn'
|
|
@@ -42,8 +42,8 @@ jobs:
|
|
|
42
42
|
os: [ubuntu, macOS, windows]
|
|
43
43
|
|
|
44
44
|
steps:
|
|
45
|
-
- uses: actions/checkout@
|
|
46
|
-
- uses: actions/setup-node@
|
|
45
|
+
- uses: actions/checkout@v3
|
|
46
|
+
- uses: actions/setup-node@v3
|
|
47
47
|
with:
|
|
48
48
|
node-version: 12.x
|
|
49
49
|
cache: 'yarn'
|
|
@@ -64,8 +64,8 @@ jobs:
|
|
|
64
64
|
os: [ubuntu, windows]
|
|
65
65
|
|
|
66
66
|
steps:
|
|
67
|
-
- uses: actions/checkout@
|
|
68
|
-
- uses: actions/setup-node@
|
|
67
|
+
- uses: actions/checkout@v3
|
|
68
|
+
- uses: actions/setup-node@v3
|
|
69
69
|
with:
|
|
70
70
|
node-version: ${{ matrix.node-version }}
|
|
71
71
|
cache: 'yarn'
|
|
@@ -89,8 +89,8 @@ jobs:
|
|
|
89
89
|
- CLASSIC
|
|
90
90
|
|
|
91
91
|
steps:
|
|
92
|
-
- uses: actions/checkout@
|
|
93
|
-
- uses: actions/setup-node@
|
|
92
|
+
- uses: actions/checkout@v3
|
|
93
|
+
- uses: actions/setup-node@v3
|
|
94
94
|
with:
|
|
95
95
|
node-version: 12.x
|
|
96
96
|
cache: 'yarn'
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## v4.4.0-beta.1
|
|
4
|
+
|
|
5
|
+
#### Blueprint Changes
|
|
6
|
+
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.3.0...v4.4.0-beta.1)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.3.0...v4.4.0-beta.1)
|
|
9
|
+
|
|
10
|
+
#### Changelog
|
|
11
|
+
|
|
12
|
+
- [#9611](https://github.com/ember-cli/ember-cli/pull/9611) use more standard markdown for addon readme [@mansona](https://github.com/mansona)
|
|
13
|
+
- [#9818](https://github.com/ember-cli/ember-cli/pull/9818) Update actions/checkout action to v3 [@SergeAstapov](https://github.com/SergeAstapov)
|
|
14
|
+
- [#9819](https://github.com/ember-cli/ember-cli/pull/9819) Update actions/setup-node action to v3 [@SergeAstapov](https://github.com/SergeAstapov)
|
|
15
|
+
- [#9843](https://github.com/ember-cli/ember-cli/pull/9843) update beta deps [@kellyselden](https://github.com/kellyselden)
|
|
16
|
+
|
|
17
|
+
Thank you to all who took the time to contribute!
|
|
18
|
+
|
|
3
19
|
## v4.3.0
|
|
4
20
|
|
|
5
21
|
#### Blueprint Changes
|
|
@@ -17,9 +17,9 @@ jobs:
|
|
|
17
17
|
runs-on: ubuntu-latest
|
|
18
18
|
|
|
19
19
|
steps:
|
|
20
|
-
- uses: actions/checkout@
|
|
20
|
+
- uses: actions/checkout@v3
|
|
21
21
|
- name: Install Node
|
|
22
|
-
uses: actions/setup-node@
|
|
22
|
+
uses: actions/setup-node@v3
|
|
23
23
|
with:
|
|
24
24
|
node-version: 12.x
|
|
25
25
|
cache: <%= yarn ? 'yarn' : 'npm' %>
|
|
@@ -35,8 +35,8 @@ jobs:
|
|
|
35
35
|
runs-on: ubuntu-latest
|
|
36
36
|
|
|
37
37
|
steps:
|
|
38
|
-
- uses: actions/checkout@
|
|
39
|
-
- uses: actions/setup-node@
|
|
38
|
+
- uses: actions/checkout@v3
|
|
39
|
+
- uses: actions/setup-node@v3
|
|
40
40
|
with:
|
|
41
41
|
node-version: 12.x
|
|
42
42
|
cache: <%= yarn ? 'yarn' : 'npm' %>
|
|
@@ -64,9 +64,9 @@ jobs:
|
|
|
64
64
|
- embroider-optimized
|
|
65
65
|
|
|
66
66
|
steps:
|
|
67
|
-
- uses: actions/checkout@
|
|
67
|
+
- uses: actions/checkout@v3
|
|
68
68
|
- name: Install Node
|
|
69
|
-
uses: actions/setup-node@
|
|
69
|
+
uses: actions/setup-node@v3
|
|
70
70
|
with:
|
|
71
71
|
node-version: 12.x
|
|
72
72
|
cache: <%= yarn ? 'yarn' : 'npm' %>
|
|
@@ -1,38 +1,32 @@
|
|
|
1
|
-
<%= addonName %>
|
|
2
|
-
==============================================================================
|
|
1
|
+
# <%= addonName %>
|
|
3
2
|
|
|
4
3
|
[Short description of the addon.]
|
|
5
4
|
|
|
6
5
|
|
|
7
|
-
Compatibility
|
|
8
|
-
------------------------------------------------------------------------------
|
|
6
|
+
## Compatibility
|
|
9
7
|
|
|
10
8
|
* Ember.js v3.24 or above
|
|
11
9
|
* Ember CLI v3.24 or above
|
|
12
10
|
* Node.js v12 or above
|
|
13
11
|
|
|
14
12
|
|
|
15
|
-
Installation
|
|
16
|
-
------------------------------------------------------------------------------
|
|
13
|
+
## Installation
|
|
17
14
|
|
|
18
15
|
```
|
|
19
16
|
ember install <%= addonName %>
|
|
20
17
|
```
|
|
21
18
|
|
|
22
19
|
|
|
23
|
-
Usage
|
|
24
|
-
------------------------------------------------------------------------------
|
|
20
|
+
## Usage
|
|
25
21
|
|
|
26
22
|
[Longer description of how to use the addon in apps.]
|
|
27
23
|
|
|
28
24
|
|
|
29
|
-
Contributing
|
|
30
|
-
------------------------------------------------------------------------------
|
|
25
|
+
## Contributing
|
|
31
26
|
|
|
32
27
|
See the [Contributing](CONTRIBUTING.md) guide for details.
|
|
33
28
|
|
|
34
29
|
|
|
35
|
-
License
|
|
36
|
-
------------------------------------------------------------------------------
|
|
30
|
+
## License
|
|
37
31
|
|
|
38
32
|
This project is licensed under the [MIT License](LICENSE.md).
|
|
@@ -17,9 +17,9 @@ jobs:
|
|
|
17
17
|
runs-on: ubuntu-latest
|
|
18
18
|
|
|
19
19
|
steps:
|
|
20
|
-
- uses: actions/checkout@
|
|
20
|
+
- uses: actions/checkout@v3
|
|
21
21
|
- name: Install Node
|
|
22
|
-
uses: actions/setup-node@
|
|
22
|
+
uses: actions/setup-node@v3
|
|
23
23
|
with:
|
|
24
24
|
node-version: 12.x
|
|
25
25
|
cache: <%= yarn ? 'yarn' : 'npm' %>
|
|
@@ -33,9 +33,9 @@ jobs:
|
|
|
33
33
|
runs-on: ubuntu-latest
|
|
34
34
|
|
|
35
35
|
steps:
|
|
36
|
-
- uses: actions/checkout@
|
|
36
|
+
- uses: actions/checkout@v3
|
|
37
37
|
- name: Install Node
|
|
38
|
-
uses: actions/setup-node@
|
|
38
|
+
uses: actions/setup-node@v3
|
|
39
39
|
with:
|
|
40
40
|
node-version: 12.x
|
|
41
41
|
cache: <%= yarn ? 'yarn' : 'npm' %>
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@ember/optional-features": "^2.0.0",
|
|
27
|
-
"@ember/test-helpers": "^2.
|
|
28
|
-
"@embroider/compat": "^1.
|
|
29
|
-
"@embroider/core": "^1.
|
|
30
|
-
"@embroider/webpack": "^1.
|
|
31
|
-
"@glimmer/component": "^1.
|
|
32
|
-
"@glimmer/tracking": "^1.
|
|
27
|
+
"@ember/test-helpers": "^2.7.0<% if (embroider) { %>",
|
|
28
|
+
"@embroider/compat": "^1.6.0",
|
|
29
|
+
"@embroider/core": "^1.6.0",
|
|
30
|
+
"@embroider/webpack": "^1.6.0<% } %>",
|
|
31
|
+
"@glimmer/component": "^1.1.1",
|
|
32
|
+
"@glimmer/tracking": "^1.1.1",
|
|
33
33
|
"babel-eslint": "^10.1.0",
|
|
34
34
|
"broccoli-asset-rev": "^3.0.0",
|
|
35
35
|
"ember-auto-import": "^2.4.1",
|
|
@@ -41,14 +41,14 @@
|
|
|
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.
|
|
44
|
+
"ember-data": "~4.4.0-beta.1",
|
|
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.
|
|
51
|
+
"ember-source": "~4.4.0-beta.1",
|
|
52
52
|
"ember-template-lint": "^4.3.0<% if (welcome) { %>",
|
|
53
53
|
"ember-welcome-page": "^6.2.0<% } %>",
|
|
54
54
|
"eslint": "^7.32.0",
|
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
"eslint-plugin-qunit": "^7.2.0",
|
|
60
60
|
"loader.js": "^4.7.0",
|
|
61
61
|
"npm-run-all": "^4.1.5",
|
|
62
|
-
"prettier": "^2.6.
|
|
63
|
-
"qunit": "^2.18.
|
|
62
|
+
"prettier": "^2.6.2",
|
|
63
|
+
"qunit": "^2.18.1",
|
|
64
64
|
"qunit-dom": "^2.0.0",
|
|
65
|
-
"webpack": "^5.
|
|
65
|
+
"webpack": "^5.72.0"
|
|
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.
|
|
6
|
+
"version": "4.4.0-beta.1-beta-1fbf62fbaf"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0-beta.1",
|
|
4
4
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"test:slow": "node --unhandled-rejections=strict tests/runner slow"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@babel/core": "^7.
|
|
40
|
+
"@babel/core": "^7.17.9",
|
|
41
41
|
"@babel/plugin-transform-modules-amd": "^7.16.7",
|
|
42
42
|
"amd-name-resolver": "^1.3.1",
|
|
43
43
|
"babel-plugin-module-resolver": "^4.1.0",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"lodash.template": "^4.5.0",
|
|
103
103
|
"markdown-it": "^12.2.0",
|
|
104
104
|
"markdown-it-terminal": "0.2.1",
|
|
105
|
-
"minimatch": "^
|
|
105
|
+
"minimatch": "^5.0.1",
|
|
106
106
|
"morgan": "^1.10.0",
|
|
107
107
|
"nopt": "^3.0.6",
|
|
108
108
|
"npm-package-arg": "^8.1.5",
|
|
@@ -114,11 +114,11 @@
|
|
|
114
114
|
"remove-types": "^1.0.0",
|
|
115
115
|
"resolve": "^1.20.0",
|
|
116
116
|
"resolve-package-path": "^3.1.0",
|
|
117
|
-
"safe-stable-stringify": "^2.
|
|
117
|
+
"safe-stable-stringify": "^2.3.1",
|
|
118
118
|
"sane": "^5.0.1",
|
|
119
119
|
"semver": "^7.3.5",
|
|
120
120
|
"silent-error": "^1.1.1",
|
|
121
|
-
"sort-package-json": "^1.
|
|
121
|
+
"sort-package-json": "^1.55.0",
|
|
122
122
|
"symlink-or-copy": "^1.3.1",
|
|
123
123
|
"temp": "0.9.4",
|
|
124
124
|
"testem": "^3.6.0",
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"chai-jest-snapshot": "^2.0.0",
|
|
142
142
|
"ember-cli-blueprint-test-helpers": "^0.19.2",
|
|
143
143
|
"ember-cli-internal-test-helpers": "^0.9.1",
|
|
144
|
-
"eslint": "^8.
|
|
144
|
+
"eslint": "^8.10.0",
|
|
145
145
|
"eslint-config-prettier": "^7.2.0",
|
|
146
146
|
"eslint-plugin-chai-expect": "^3.0.0",
|
|
147
147
|
"eslint-plugin-mocha": "^9.0.0",
|
|
@@ -150,11 +150,11 @@
|
|
|
150
150
|
"fixturify": "^2.1.0",
|
|
151
151
|
"jsdom": "^19.0.0",
|
|
152
152
|
"latest-version": "^5.1.0",
|
|
153
|
-
"mocha": "^9.2.
|
|
153
|
+
"mocha": "^9.2.2",
|
|
154
154
|
"nock": "^13.2.2",
|
|
155
155
|
"nyc": "^15.1.0",
|
|
156
|
-
"prettier": "2.
|
|
157
|
-
"release-it": "^14.
|
|
156
|
+
"prettier": "2.6.2",
|
|
157
|
+
"release-it": "^14.14.0",
|
|
158
158
|
"rimraf": "^3.0.2",
|
|
159
159
|
"strip-ansi": "^6.0.0",
|
|
160
160
|
"supertest": "^6.1.6",
|