ember-cli 6.4.0-beta.0 → 6.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/CHANGELOG.md +26 -0
- package/blueprints/app/files/ember-cli-build.js +10 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## v6.4.0-beta.1
|
|
4
|
+
|
|
5
|
+
#### Blueprint Changes
|
|
6
|
+
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v6.4.0-beta.0...v6.4.0-beta.1)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v6.4.0-beta.0...v6.4.0-beta.1)
|
|
9
|
+
|
|
10
|
+
#### Changelog
|
|
11
|
+
|
|
12
|
+
- [#10685](https://github.com/ember-cli/ember-cli/pull/10685) Add configuration to ember-cli-build to opt new projects out of the deprecated behavior of the Store class extending EmberObject [@kategengler](https://github.com/kategengler)
|
|
13
|
+
|
|
14
|
+
Thank you to all who took the time to contribute!
|
|
15
|
+
|
|
3
16
|
## v6.4.0-beta.0
|
|
4
17
|
|
|
5
18
|
#### Blueprint Changes
|
|
@@ -17,6 +30,19 @@
|
|
|
17
30
|
|
|
18
31
|
Thank you to all who took the time to contribute!
|
|
19
32
|
|
|
33
|
+
## v6.3.1
|
|
34
|
+
|
|
35
|
+
#### Blueprint Changes
|
|
36
|
+
|
|
37
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v6.3.0...v6.3.1)
|
|
38
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v6.3.0...v6.3.1)
|
|
39
|
+
|
|
40
|
+
#### Changelog
|
|
41
|
+
|
|
42
|
+
- [#10685](https://github.com/ember-cli/ember-cli/pull/10685) Add configuration to ember-cli-build to opt new projects out of the deprecated behavior of the Store class extending EmberObject [@kategengler](https://github.com/kategengler)
|
|
43
|
+
|
|
44
|
+
Thank you to all who took the time to contribute!
|
|
45
|
+
|
|
20
46
|
## v6.3.0
|
|
21
47
|
|
|
22
48
|
#### Blueprint Changes
|
|
@@ -4,7 +4,16 @@ const EmberApp = require('ember-cli/lib/broccoli/ember-app');
|
|
|
4
4
|
|
|
5
5
|
module.exports = function (defaults) {
|
|
6
6
|
const app = new EmberApp(defaults, {
|
|
7
|
-
<% if (
|
|
7
|
+
<% if (emberData) {%>emberData: {
|
|
8
|
+
deprecations: {
|
|
9
|
+
// New projects can safely leave this deprecation disabled.
|
|
10
|
+
// If upgrading, to opt-into the deprecated behavior, set this to true and then follow:
|
|
11
|
+
// https://deprecations.emberjs.com/id/ember-data-deprecate-store-extends-ember-object
|
|
12
|
+
// before upgrading to Ember Data 6.0
|
|
13
|
+
DEPRECATE_STORE_EXTENDS_EMBER_OBJECT: false,
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
<% } %><% if (typescript) {%>'ember-cli-babel': { enableTypeScriptTransform: true },
|
|
8
17
|
|
|
9
18
|
<% } %>// Add options here
|
|
10
19
|
});
|