I recently added django-reversion to my project to keep a history of model changes. Now, any time I save a model in my system, I get the following warning in the log:
.../site-packages/reversion/models.py:218: UserWarning: pre_save and post_save signals will not longer be sent for Revision and Version models in django-reversion 1.8. Please use the pre_revision_commit and post_revision_commit signals instead.
However, I'm not using the pre_save and post_save signals on the Revision and Version models themselves, or anything that extends those⦠Is this warning saying that I need to change the pre_save and post_save signals on any model in my project that makes use of versioning??