- Added support for Django 2.2 and 3.0
- Added support for Python 3.8
- Added support for Django 2.0 and 2.1
- Added support for Python 3.7
- Dropped support for Django 1.7 through 1.10
- Dropped support for Python 3.2 and 3.3
- Fixed generic primary key bug with createinitialfieldhistory command (#20)
- 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.