Skip to content

Commit 5ecc2ca

Browse files
authored
v5.1.0 (#651)
1 parent 3aa9827 commit 5ecc2ca

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@ Don't forget to remove deprecated code on each major release!
1414

1515
## [Unreleased]
1616

17+
- Nothing (yet)!
18+
19+
## [5.1.0] - 2025-12-17
20+
1721
### Fixed
1822

1923
- Prevent restoring a backup from a different database connector (e.g. Postgres backup to SQLite) by adding an additional metadata file to all new backups.
20-
- Fixed compressed media backup restoration by using `utils.uncompress_file()` instead of relying on tarfile's built-in gzip decompression. This aligns the behavior with database restore and ensures reliable decompression with all file-like objects.
24+
- Fixed compressed media backup restoration by using `gzip.GzipFile` instead of `tarfile`'s gzip decompression algorithm.
2125

2226
## [5.0.1] - 2025-11-07
2327

@@ -330,7 +334,8 @@ Don't forget to remove deprecated code on each major release!
330334

331335
- Miscellaneous maintenance and minor bug fixes.
332336

333-
[Unreleased]: https://github.com/Archmonger/django-dbbackup/compare/5.0.1...HEAD
337+
[Unreleased]: https://github.com/Archmonger/django-dbbackup/compare/5.1.0...HEAD
338+
[5.1.0]: https://github.com/Archmonger/django-dbbackup/compare/5.0.1...5.1.0
334339
[5.0.1]: https://github.com/Archmonger/django-dbbackup/compare/5.0.0...5.0.1
335340
[5.0.0]: https://github.com/Archmonger/django-dbbackup/compare/4.3.0...5.0.0
336341
[4.3.0]: https://github.com/Archmonger/django-dbbackup/compare/4.2.1...4.3.0

dbbackup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Management commands to help backup and restore a project database and media"""
22

3-
__version__ = "5.0.1"
3+
__version__ = "5.1.0"

0 commit comments

Comments
 (0)