ember-cli 6.3.0 → 6.3.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
+ ## v6.3.1
4
+
5
+ #### Blueprint Changes
6
+
7
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v6.3.0...v6.3.1)
8
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v6.3.0...v6.3.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.3.0
4
17
 
5
18
  #### 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 (typescript) {%>'ember-cli-babel': { enableTypeScriptTransform: true },
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
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-cli",
3
- "version": "6.3.0",
3
+ "version": "6.3.1",
4
4
  "description": "Command line tool for developing ambitious ember.js apps",
5
5
  "keywords": [
6
6
  "app",