ember-data
Advanced tools
Changelog
Release 1.13.3 (June 19, 2015)
Changelog
Release 1.13.2 (June 18, 2015)
Changelog
Release 1.0.0-beta.19.2 (June 12, 2015)
app/store.js
- https://github.com/emberjs/data/pull/3316currentState
was not defined on a record
until the record a state change occured. https://github.com/emberjs/data/pull/3311Changelog
Release 1.0.0-beta.19.1 (June 9, 2015)
DS.Model
's InternalModel
would not be set
on init - @bmac https://github.com/emberjs/data/pull/3262Changelog
Release 1.0.0-beta.19 (June 5, 2015)
In order to fix deprecations warning induced by Ember 1.12, the store service is now injected as an instanceInitializer. As a consequence, if you had initializers depending on the store, you should move them to an instance initializer as well, and mark it as after: 'ember-data'.
store.find(App.Post, '1')
. Use the string form instead:
post
instead of App.Post
. You can also use this Ember Watson
commandChangelog
Release 1.0.0-beta.18 (May 18, 2015)
RESTSerializer#typeForRoot
has been deprecated. You can use
RESTSerializeer#modelNameFromPayloadKey
instead.RESTSerializer#payloadKeyFromModelName
. This allows you totypeKey
on Snapshots and Model classes has been deprecated. Use
modelName
instead.
specify the outgoing root key for a JSON payload.Changelog
Release 1.0.0-beta.17 (May 10, 2015)
/
if namespace is absolute. @rwjbluetype
inconsistently @emberjsfind
stayed in loading state @pangratzrolledBack
event @lolmausattrs
from superclasses into their subclasses. @omghax