Skip to content

v0.12.0

Compare
Choose a tag to compare
@samselikoff samselikoff released this 26 Jan 23:52
· 510 commits to master since this release
  • [ CHANGE ] The storefront service has been deprecated. Its methods are now available via the LoadableStore mixin which you can use in Ember Data's store. See the docs for more.

  • [ CHANGE ]The Loadable mixin has been renamed to LoadableModel. See the docs.

  • [ BREAKING CHANGE ] The force-sync-relationships feature is now implemented as an ESLint warning or Babel plugin. The run-time monkey patch was removed.

    Before:

    // app/app.js
    import 'ember-data-storefront/ext/force-sync';
    

    After:

    // ember-cli-build.js
    module.exports = function(environment) {
      let ENV = {
        'ember-data-storefront': {
          forceSyncRelationships: 'rewrite'
        }
      };
    }