-
Notifications
You must be signed in to change notification settings - Fork 109
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
Dirty tracking #65
Dirty tracking #65
Conversation
* Goal is to only send changed fields when saving. * Had to change the API for adding a new label to a story since coercion and dirty tracking are done via the attribute writer. * Added test to verify that only changes attributes are sent on save.
* Bump major version number to signal backwards incompatible API change and start clean with semantic versioning.
@forest this is awesome! Thanks so much! |
…ction type. * Just provides a warning to users that Array#<< subverts coercion and dirty tracking.
Awesome job, @forest! Thanks for working so hard on this! |
I tested your branch on my project (with a very simple test) and it worked as expected. |
Great. Thanks for the feedback and reviewing the changes. I'll get this released. My goal is to put some of the foundational things in place and keep the code easy to understand so many people can contribute. The majority of my use cases are reading data, so I'm happy to have the help on update features. |
Addresses #62 while keeping the
Story#save
interface.