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.
ForeignObjectRel.is_hidden()
was removed in https://github.com/django/django/pull/17862 in favor of thehidden
property of the same class. This change will be released in django 5.1. In previous versions of django, thehidden
property called theis_hidden()
method, so there should not be changes in behavior for older versions.