Skip to content

Releases: embermap/ember-data-storefront

v0.12.0

26 Jan 23:52
Compare
Choose a tag to compare
  • [ 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'
        }
      };
    }