Django signals that fire when specific model fields change. Version 0.8.0, stable but infrequent releases (last release 2022). Depends on Django 3.2+.
pip install django-fieldsignalsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Connect a signal to a specific field on a model. Place in AppConfig.ready().
Always connect signals inside AppConfig.ready() or using ready() decorator.
Use Django's post_save signal or override save() for bulk updates if needed.
Replace connect_signal() with connect().
Update receivers to expect field_name instead of field.