ember-cli 5.4.0 → 5.4.2
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
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## v5.4.2
|
|
4
|
+
|
|
5
|
+
#### Blueprint Changes
|
|
6
|
+
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.4.1...v5.4.2)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.4.1...v5.4.2)
|
|
9
|
+
|
|
10
|
+
#### Changelog
|
|
11
|
+
|
|
12
|
+
- [#10458](https://github.com/ember-cli/ember-cli/pull/10458) Use Lodash's `_.template` instead of `lodash.template` package [@gorner](https://github.com/gorner)
|
|
13
|
+
|
|
14
|
+
Thank you to all who took the time to contribute!
|
|
15
|
+
|
|
16
|
+
## v5.4.1
|
|
17
|
+
|
|
18
|
+
#### Blueprint Changes
|
|
19
|
+
|
|
20
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.4.0...v5.4.1)
|
|
21
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.4.0...v5.4.1)
|
|
22
|
+
|
|
23
|
+
#### Changelog
|
|
24
|
+
|
|
25
|
+
- [#10402](https://github.com/ember-cli/ember-cli/pull/10402) [BUGFIX release] use import type in helpers/index.ts :: typechecking in new apps otherwise fails [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
26
|
+
|
|
27
|
+
Thank you to all who took the time to contribute!
|
|
28
|
+
|
|
3
29
|
## v5.4.0
|
|
4
30
|
|
|
5
31
|
#### Blueprint Changes
|
|
@@ -135,6 +161,32 @@ Thank you to all who took the time to contribute!
|
|
|
135
161
|
|
|
136
162
|
Thank you to all who took the time to contribute!
|
|
137
163
|
|
|
164
|
+
## v4.12.3
|
|
165
|
+
|
|
166
|
+
#### Blueprint Changes
|
|
167
|
+
|
|
168
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.12.2...v4.12.3)
|
|
169
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.12.2...v4.12.3)
|
|
170
|
+
|
|
171
|
+
#### Changelog
|
|
172
|
+
|
|
173
|
+
- [#10458](https://github.com/ember-cli/ember-cli/pull/10458) Use Lodash's `_.template` instead of `lodash.template` package [@gorner](https://github.com/gorner)
|
|
174
|
+
|
|
175
|
+
Thank you to all who took the time to contribute!
|
|
176
|
+
|
|
177
|
+
## v4.12.2
|
|
178
|
+
|
|
179
|
+
#### Blueprint Changes
|
|
180
|
+
|
|
181
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.12.1...v4.12.2)
|
|
182
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.12.1...v4.12.2)
|
|
183
|
+
|
|
184
|
+
#### Changelog
|
|
185
|
+
|
|
186
|
+
- [#10314](https://github.com/ember-cli/ember-cli/pull/10314) [BUGFIX] Do not try to wire up Testem unless a test framework is dete… [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
187
|
+
|
|
188
|
+
Thank you to all who took the time to contribute!
|
|
189
|
+
|
|
138
190
|
## v4.12.1
|
|
139
191
|
|
|
140
192
|
#### Blueprint Changes
|
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
setupApplicationTest as upstreamSetupApplicationTest,
|
|
3
3
|
setupRenderingTest as upstreamSetupRenderingTest,
|
|
4
4
|
setupTest as upstreamSetupTest,
|
|
5
|
-
SetupTestOptions,
|
|
5
|
+
type SetupTestOptions,
|
|
6
6
|
} from 'ember-qunit';
|
|
7
7
|
|
|
8
8
|
// This file exists to provide wrappers around ember-qunit's
|
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.4.
|
|
6
|
+
"version": "5.4.2-lts-5-4-b5cbec9760"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/lib/tasks/git-init.js
CHANGED
|
@@ -47,7 +47,7 @@ module.exports = class GitInitTask extends Task {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
async _gitCommit() {
|
|
50
|
-
const template = require('lodash
|
|
50
|
+
const template = require('lodash/template');
|
|
51
51
|
let commitTemplate = fs.readFileSync(path.join(__dirname, '../utilities/COMMIT_MESSAGE.txt'));
|
|
52
52
|
let commitMessage = template(commitTemplate)(pkg);
|
|
53
53
|
let env = this.buildGitEnvironment();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-cli",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.2",
|
|
4
4
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"is-git-url": "^1.0.0",
|
|
91
91
|
"is-language-code": "^3.1.0",
|
|
92
92
|
"isbinaryfile": "^5.0.0",
|
|
93
|
-
"lodash
|
|
93
|
+
"lodash": "^4.17.21",
|
|
94
94
|
"markdown-it": "^13.0.1",
|
|
95
95
|
"markdown-it-terminal": "^0.4.0",
|
|
96
96
|
"minimatch": "^7.4.3",
|