etianen / django-reversion

django-reversion is an extension to the Django web framework that provides version control for model instances.
https://django-reversion.readthedocs.io
BSD 3-Clause "New" or "Revised" License
3.04k stars 489 forks source link

Switch call from removed is_hidden method to hidden property #969

Closed jeremy-engel closed 5 months ago

jeremy-engel commented 5 months ago

ForeignObjectRel.is_hidden() was removed in https://github.com/django/django/pull/17862 in favor of the hidden property of the same class. This change will be released in django 5.1. In previous versions of django, the hidden property called the is_hidden() method, so there should not be changes in behavior for older versions.

etianen commented 5 months ago

Thanks!