You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Django Signals support for backup and restore operations (#614)
This PR implements Django Signals support for the django-dbbackup package, allowing users to hook into backup and restore operations for both database and media files. The implementation adds 8 new signals that are sent before and after each operation type.
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: Archmonger <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ Don't forget to remove deprecated code on each major release!
18
18
19
19
- Implement new `SqliteBackupConnector` to backup SQLite3 databases using the `.backup` command (safe to execute on databases with active connections).
20
20
- Verified full Windows compatibility via new CI workflows.
21
+
- Add Django Signals support for backup and restore operations. New signals include `pre_backup`, `post_backup`, `pre_restore`, `post_restore`, `pre_media_backup`, `post_media_backup`, `pre_media_restore`, and `post_media_restore`.
0 commit comments