Changelog
0.7.6
Changelog
0.7.5
errors
an instance of same Errors
class used by
@ember-data/model
, which provides list of vaidation errors.Changelog
0.7.4
setUnknownProperty
remove cache and child model data if value is not resolved.Changelog
0.7.3
setUnknownProperty
remove cache after setting a new value and only update cache when value is resolved.Changelog
0.7.2
setUnknownProperty
only update cache when value is resolved.Changelog
0.7.1
length
of M3RecordArray
as property.Changelog
0.7.0
breaking: Properties manually set, including those set in initial record
creation, are treated as resolved. This means that
createRecord({ myprop })
will not use transforms for myprop
.
bugfix: now able to set RecordArray
properties with RecordArray
values.
Semantics are still update in-place, as when setting to arrays of models.
Changelog
0.6.0
breaking: To be consistent with the request types used in ember-data,
queryURL
will pass a requestType
of queryURL
. Previously query-url
was passed.
breaking: All arrays of references are now returned as RecordArray
s.
schema.isAttributeArrayRef
is therefore deprecated.
store.queryURL
will now call adapter.queryURL
if it exists, instead of
adapter.ajax
. This is intended to be a hook for doing app-wide url
conversion for store.queryURL
calls beyond prepending the adapter
namespace.
Changelog
0.5.1
schemaInterface
to compute attribute references from
data other than key
, dependencies are now tracked and key
is invalidated
correctly when those dependencies are invalidated. (thanks @dnalagatla)Changelog
0.5.0
notifyProperties(undefined)
from nested models with no changed attributes (thanks @sangm)null
id is fine for indicating a uniform type that should always be reused when new properties come in (thanks @dnachev)