ember-cli 5.9.0-beta.0 → 5.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # ember-cli Changelog
2
2
 
3
+ ## v5.9.0-beta.1
4
+
5
+ #### Blueprint Changes
6
+
7
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.9.0-beta.0...v5.9.0-beta.1)
8
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.9.0-beta.0...v5.9.0-beta.1)
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
+
3
16
  ## v5.9.0-beta.0
4
17
 
5
18
  #### Blueprint Changes
@@ -15,6 +28,19 @@
15
28
 
16
29
  Thank you to all who took the time to contribute!
17
30
 
31
+ ## v5.8.1
32
+
33
+ #### Blueprint Changes
34
+
35
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.8.0...v5.8.1)
36
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.8.0...v5.8.1)
37
+
38
+ #### Changelog
39
+
40
+ - [#10458](https://github.com/ember-cli/ember-cli/pull/10458) Use Lodash's `_.template` instead of `lodash.template` package [@gorner](https://github.com/gorner)
41
+
42
+ Thank you to all who took the time to contribute!
43
+
18
44
  ## v5.8.0
19
45
 
20
46
  #### Blueprint Changes
@@ -81,6 +107,19 @@ Thank you to all who took the time to contribute!
81
107
 
82
108
  Thank you to all who took the time to contribute!
83
109
 
110
+ ## v5.4.2
111
+
112
+ #### Blueprint Changes
113
+
114
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.4.1...v5.4.2)
115
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.4.1...v5.4.2)
116
+
117
+ #### Changelog
118
+
119
+ - [#10458](https://github.com/ember-cli/ember-cli/pull/10458) Use Lodash's `_.template` instead of `lodash.template` package [@gorner](https://github.com/gorner)
120
+
121
+ Thank you to all who took the time to contribute!
122
+
84
123
  ## v5.4.1
85
124
 
86
125
  #### Blueprint Changes
@@ -229,6 +268,32 @@ Thank you to all who took the time to contribute!
229
268
 
230
269
  Thank you to all who took the time to contribute!
231
270
 
271
+ ## v4.12.3
272
+
273
+ #### Blueprint Changes
274
+
275
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.12.2...v4.12.3)
276
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.12.2...v4.12.3)
277
+
278
+ #### Changelog
279
+
280
+ - [#10458](https://github.com/ember-cli/ember-cli/pull/10458) Use Lodash's `_.template` instead of `lodash.template` package [@gorner](https://github.com/gorner)
281
+
282
+ Thank you to all who took the time to contribute!
283
+
284
+ ## v4.12.2
285
+
286
+ #### Blueprint Changes
287
+
288
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.12.1...v4.12.2)
289
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.12.1...v4.12.2)
290
+
291
+ #### Changelog
292
+
293
+ - [#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)
294
+
295
+ Thank you to all who took the time to contribute!
296
+
232
297
  ## v4.12.1
233
298
 
234
299
  #### Blueprint Changes
@@ -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.9.0-beta.0-beta-de8f31e599"
6
+ "version": "5.9.0-beta.1-beta-cf37f5fb5e"
7
7
  },
8
8
  "files": {
9
9
  "lib/broccoli/default-packager.js": {
@@ -47,7 +47,7 @@ module.exports = class GitInitTask extends Task {
47
47
  }
48
48
 
49
49
  async _gitCommit() {
50
- const template = require('lodash.template');
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();
@@ -6,5 +6,5 @@ module.exports = function processTemplate(content, context) {
6
6
  interpolate: /<%=([\s\S]+?)%>/g,
7
7
  escape: /<%-([\s\S]+?)%>/g,
8
8
  };
9
- return require('lodash.template')(content, options)(context);
9
+ return require('lodash/template')(content, options)(context);
10
10
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-cli",
3
- "version": "5.9.0-beta.0",
3
+ "version": "5.9.0-beta.1",
4
4
  "description": "Command line tool for developing ambitious ember.js apps",
5
5
  "keywords": [
6
6
  "app",
@@ -91,7 +91,7 @@
91
91
  "is-git-url": "^1.0.0",
92
92
  "is-language-code": "^3.1.0",
93
93
  "isbinaryfile": "^5.0.0",
94
- "lodash.template": "^4.5.0",
94
+ "lodash": "^4.17.21",
95
95
  "markdown-it": "^13.0.1",
96
96
  "markdown-it-terminal": "^0.4.0",
97
97
  "minimatch": "^7.4.3",