You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Store extends from EmberObject. This is one of the last few entanglements EmberData has with the Ember framework directly.
We would like to RFC deprecating any inherited EmberObject methods or behaviors to support #8147 and to broaden our compatibility with a wider range of Ember.js versions as well.
This does not need to be a very involved RFC. Roughly equivalent to [https://github.com/emberjs/rfcs/pull/745]. The primary impact will be that anyone using Store.reopen or Store.extend will need to instead use native class extends. class Store extends BaseStore {}
The text was updated successfully, but these errors were encountered:
Currently Store extends from
EmberObject
. This is one of the last few entanglements EmberData has with the Ember framework directly.We would like to RFC deprecating any inherited EmberObject methods or behaviors to support #8147 and to broaden our compatibility with a wider range of Ember.js versions as well.
This does not need to be a very involved RFC. Roughly equivalent to [https://github.com/emberjs/rfcs/pull/745]. The primary impact will be that anyone using
Store.reopen
orStore.extend
will need to instead use native class extends.class Store extends BaseStore {}
The text was updated successfully, but these errors were encountered: