- Added Django 1.10 compatibility.
- Added MySQL compatibility.
- Fixed issue that would duplicate tracked fields.
- Added the ability to track field history of parent models.
- Added Django 1.7 compatibility.
- Added a way to automatically store the logged in user on
FieldHistory.user
.
FieldHistory
objects are now created usingbulk_create
, which means only one query will be executed, even when changing multiple fields at the same time.- Added a way to store which user updated a field.
- Added
get_latest_by
toFieldHistory
Meta options so.latest()
and.earliest()
can be used. - Added
createinitialfieldhistory
management command. - Added
renamefieldhistory
management command.
- First release on PyPI.