-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
belongsTo tracking not working Ember Data 3.3.2 #58
Comments
@loxmys , since everyone has different setup and models, and I can't recreate you exact scenario on my own ( I might miss something ) if you can make a failing test in a PR then I can try and fix the issue. |
@danielspaniel I quickly debug app. https://github.com/danielspaniel/ember-data-change-tracker/blob/master/addon/utilities.js#L14 returns old value. |
oh ok, you might want to try the previous versions like v0.7.X because they were for ember data less than 3.5 you can see the notes on the tags also to see what i mean
|
@danielspaniel i fix this issue. ember-data-change-tracker 0.8.0 wokrs with ember-data 3.5.2 |
oh yeah.. i should set that in the readme, to explain what versions work for what ember-data. if you feel like helping out please make a PR and add that to docs. Would be nice addition. |
When i change belongsoTo modelChanges == {}
/test-model
testModel.startTrack();
if i set hasMany
testModel.set('manyMany', [this correct data])
modelChanges {manyMany: true} it ok
testModel.set('belong', this correct data )
modelChanges {}
The text was updated successfully, but these errors were encountered: