ember-cli 5.11.0-beta.0 → 5.12.0-beta.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 +24 -3
- package/RELEASE.md +4 -4
- package/blueprints/addon/additional-package.json +1 -1
- package/blueprints/app/files/package.json +19 -19
- package/docs/build/data.json +1 -1
- package/lib/cli/cli.js +3 -15
- package/package.json +6 -8
- /package/{lib/utilities → tests/helpers}/mk-tmp-dir-in.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,32 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
-
## v5.
|
|
3
|
+
## v5.12.0-beta.0
|
|
4
4
|
|
|
5
5
|
#### Blueprint Changes
|
|
6
6
|
|
|
7
|
-
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.
|
|
8
|
-
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.11.0...v5.12.0-beta.0)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.11.0...v5.12.0-beta.0)
|
|
9
|
+
|
|
10
|
+
#### Changelog
|
|
11
|
+
|
|
12
|
+
- [#10483](https://github.com/ember-cli/ember-cli/pull/10483) Bump @embroider/* dependencies [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
13
|
+
- [#10486](https://github.com/ember-cli/ember-cli/pull/10486) Bump ember-template-lint [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
14
|
+
- [#10481](https://github.com/ember-cli/ember-cli/pull/10481) Bump ember-cli-app-version [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
15
|
+
- [#10485](https://github.com/ember-cli/ember-cli/pull/10485) Bump eslint-plugin-ember [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
16
|
+
- [#10484](https://github.com/ember-cli/ember-cli/pull/10484) Bump ember-resolver [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
17
|
+
- [#10479](https://github.com/ember-cli/ember-cli/pull/10479) Bump @typescript-eslint dependencies to latest [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
18
|
+
- [#10482](https://github.com/ember-cli/ember-cli/pull/10482) Bump qunit-dom [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
19
|
+
- [#10480](https://github.com/ember-cli/ember-cli/pull/10480) Bump @ember/string [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
20
|
+
- [#10499](https://github.com/ember-cli/ember-cli/pull/10499) [ENHANCEMENT] Update `testem` [@bertdeblock](https://github.com/bertdeblock)
|
|
21
|
+
|
|
22
|
+
Thank you to all who took the time to contribute!
|
|
23
|
+
|
|
24
|
+
## v5.11.0
|
|
25
|
+
|
|
26
|
+
#### Blueprint Changes
|
|
27
|
+
|
|
28
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.10.0...v5.11.0)
|
|
29
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.10.0...v5.11.0)
|
|
9
30
|
|
|
10
31
|
#### Changelog
|
|
11
32
|
|
package/RELEASE.md
CHANGED
|
@@ -37,7 +37,7 @@ git push origin release
|
|
|
37
37
|
|
|
38
38
|
```
|
|
39
39
|
git clean -fdx
|
|
40
|
-
|
|
40
|
+
pnpm install
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
* Update the CHANGELOG.md
|
|
@@ -71,7 +71,7 @@ git checkout -B release --track origin/release
|
|
|
71
71
|
|
|
72
72
|
```
|
|
73
73
|
git clean -fdx
|
|
74
|
-
|
|
74
|
+
pnpm install
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
* Update the CHANGELOG.md
|
|
@@ -121,7 +121,7 @@ git push origin beta
|
|
|
121
121
|
|
|
122
122
|
```
|
|
123
123
|
git clean -fdx
|
|
124
|
-
|
|
124
|
+
pnpm install
|
|
125
125
|
```
|
|
126
126
|
|
|
127
127
|
* Update the CHANGELOG.md
|
|
@@ -154,7 +154,7 @@ git checkout -B beta --track origin/beta
|
|
|
154
154
|
|
|
155
155
|
```
|
|
156
156
|
git clean -fdx
|
|
157
|
-
|
|
157
|
+
pnpm install
|
|
158
158
|
```
|
|
159
159
|
|
|
160
160
|
* Update the CHANGELOG.md
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
"test:ember": "ember test"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@babel/core": "^7.
|
|
30
|
-
"<% if (!typescript) { %>@babel/eslint-parser": "^7.
|
|
29
|
+
"@babel/core": "^7.25.2",
|
|
30
|
+
"<% if (!typescript) { %>@babel/eslint-parser": "^7.25.1",
|
|
31
31
|
"@babel/plugin-proposal-decorators": "^7.24.7",
|
|
32
32
|
"<% } %>@ember/optional-features": "^2.1.0",
|
|
33
|
-
"@ember/string": "^
|
|
34
|
-
"@ember/test-helpers": "^3.3.
|
|
35
|
-
"@embroider/compat": "^3.
|
|
33
|
+
"@ember/string": "^4.0.0",
|
|
34
|
+
"@ember/test-helpers": "^3.3.1<% if (embroider) { %>",
|
|
35
|
+
"@embroider/compat": "^3.6.0",
|
|
36
36
|
"@embroider/core": "^3.4.14",
|
|
37
|
-
"@embroider/webpack": "^
|
|
37
|
+
"@embroider/webpack": "^4.0.4<% } %>",
|
|
38
38
|
"@glimmer/component": "^1.1.2",
|
|
39
39
|
"@glimmer/tracking": "^1.1.2<% if (typescript) { %>",
|
|
40
40
|
"@glint/environment-ember-loose": "^1.4.0",
|
|
@@ -68,13 +68,13 @@
|
|
|
68
68
|
"@types/ember__utils": "^4.0.7",
|
|
69
69
|
"@types/qunit": "^2.19.10",
|
|
70
70
|
"@types/rsvp": "^4.0.9",
|
|
71
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
72
|
-
"@typescript-eslint/parser": "^
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
72
|
+
"@typescript-eslint/parser": "^7.18.0<% } %>",
|
|
73
73
|
"broccoli-asset-rev": "^3.0.0",
|
|
74
74
|
"concurrently": "^8.2.2",
|
|
75
75
|
"ember-auto-import": "^2.7.4",
|
|
76
76
|
"ember-cli": "~<%= emberCLIVersion %>",
|
|
77
|
-
"ember-cli-app-version": "^
|
|
77
|
+
"ember-cli-app-version": "^7.0.0",
|
|
78
78
|
"ember-cli-babel": "^8.2.0",
|
|
79
79
|
"ember-cli-clean-css": "^3.0.0",
|
|
80
80
|
"ember-cli-dependency-checker": "^3.3.2",
|
|
@@ -88,26 +88,26 @@
|
|
|
88
88
|
"ember-modifier": "^4.2.0",
|
|
89
89
|
"ember-page-title": "^8.2.3",
|
|
90
90
|
"ember-qunit": "^8.1.0",
|
|
91
|
-
"ember-resolver": "^
|
|
92
|
-
"ember-source": "~5.
|
|
93
|
-
"ember-template-lint": "^
|
|
91
|
+
"ember-resolver": "^12.0.1",
|
|
92
|
+
"ember-source": "~5.12.0-beta.1",
|
|
93
|
+
"ember-template-lint": "^6.0.0<% if (welcome) { %>",
|
|
94
94
|
"ember-welcome-page": "^7.0.2<% } %>",
|
|
95
95
|
"eslint": "^8.57.0",
|
|
96
96
|
"eslint-config-prettier": "^9.1.0",
|
|
97
|
-
"eslint-plugin-ember": "^
|
|
97
|
+
"eslint-plugin-ember": "^12.2.0",
|
|
98
98
|
"eslint-plugin-n": "^16.6.2",
|
|
99
|
-
"eslint-plugin-prettier": "^5.1
|
|
99
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
100
100
|
"eslint-plugin-qunit": "^8.1.1",
|
|
101
101
|
"loader.js": "^4.7.0",
|
|
102
|
-
"prettier": "^3.3.
|
|
103
|
-
"qunit": "^2.
|
|
104
|
-
"qunit-dom": "^2.0
|
|
102
|
+
"prettier": "^3.3.3",
|
|
103
|
+
"qunit": "^2.22.0",
|
|
104
|
+
"qunit-dom": "^3.2.0",
|
|
105
105
|
"stylelint": "^15.11.0",
|
|
106
106
|
"stylelint-config-standard": "^34.0.0",
|
|
107
107
|
"stylelint-prettier": "^4.1.0",
|
|
108
108
|
"tracked-built-ins": "^3.3.0<% if (typescript) { %>",
|
|
109
|
-
"typescript": "^5.5.
|
|
110
|
-
"webpack": "^5.
|
|
109
|
+
"typescript": "^5.5.4<% } %>",
|
|
110
|
+
"webpack": "^5.93.0"
|
|
111
111
|
},
|
|
112
112
|
"engines": {
|
|
113
113
|
"node": ">= 18"
|
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": "5.11.0-
|
|
6
|
+
"version": "5.11.0-release-2db0b911a0"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/lib/cli/cli.js
CHANGED
|
@@ -187,21 +187,9 @@ class CLI {
|
|
|
187
187
|
resultOrExitCode = await this.callHelp(helpOptions);
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
// TODO: fix this
|
|
194
|
-
// Possibly this issue: https://github.com/joyent/node/issues/8329
|
|
195
|
-
// Wait to resolve promise when running on windows.
|
|
196
|
-
// This ensures that stdout is flushed so acceptance tests get full output
|
|
197
|
-
|
|
198
|
-
if (process.platform === 'win32') {
|
|
199
|
-
return new Promise((resolve) => {
|
|
200
|
-
setTimeout(resolve, 250, exitCode);
|
|
201
|
-
});
|
|
202
|
-
} else {
|
|
203
|
-
return exitCode;
|
|
204
|
-
}
|
|
190
|
+
loggerTesting.info(`cli: command run complete. exitCode: ${resultOrExitCode}`);
|
|
191
|
+
|
|
192
|
+
return resultOrExitCode;
|
|
205
193
|
});
|
|
206
194
|
|
|
207
195
|
onCommandInterrupt = async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.12.0-beta.0",
|
|
4
4
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"scripts": {
|
|
30
30
|
"docs": "yuidoc",
|
|
31
31
|
"lint": "eslint . --cache",
|
|
32
|
-
"prepack": "
|
|
32
|
+
"prepack": "pnpm docs",
|
|
33
33
|
"test": "node --unhandled-rejections=strict tests/runner",
|
|
34
34
|
"test:all": "node --unhandled-rejections=strict tests/runner all",
|
|
35
35
|
"test:cover": "nyc --all --reporter=text --reporter=lcov node tests/runner all",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"sort-package-json": "^1.57.0",
|
|
115
115
|
"symlink-or-copy": "^1.3.1",
|
|
116
116
|
"temp": "0.9.4",
|
|
117
|
-
"testem": "^3.
|
|
117
|
+
"testem": "^3.15.1",
|
|
118
118
|
"tiny-lr": "^2.0.0",
|
|
119
119
|
"tree-sync": "^2.1.0",
|
|
120
120
|
"walk-sync": "^3.0.0",
|
|
@@ -146,7 +146,6 @@
|
|
|
146
146
|
"nyc": "^15.1.0",
|
|
147
147
|
"prettier": "2.8.7",
|
|
148
148
|
"release-it": "^15.10.0",
|
|
149
|
-
"rimraf": "^3.0.2",
|
|
150
149
|
"strip-ansi": "^6.0.0",
|
|
151
150
|
"supertest": "^6.3.1",
|
|
152
151
|
"testdouble": "^3.18.0",
|
|
@@ -159,6 +158,9 @@
|
|
|
159
158
|
"engines": {
|
|
160
159
|
"node": ">= 18"
|
|
161
160
|
},
|
|
161
|
+
"volta": {
|
|
162
|
+
"node": "18.12.0"
|
|
163
|
+
},
|
|
162
164
|
"publishConfig": {
|
|
163
165
|
"registry": "https://registry.npmjs.org"
|
|
164
166
|
},
|
|
@@ -171,9 +173,5 @@
|
|
|
171
173
|
"release": true,
|
|
172
174
|
"tokenRef": "GITHUB_AUTH"
|
|
173
175
|
}
|
|
174
|
-
},
|
|
175
|
-
"volta": {
|
|
176
|
-
"node": "18.12.0",
|
|
177
|
-
"yarn": "1.22.19"
|
|
178
176
|
}
|
|
179
177
|
}
|
|
File without changes
|