diff options
| author | Matthew Stell <matthewb@noriker.co.uk> | 2025-06-24 07:27:52 +0100 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2025-07-01 15:24:34 -0300 |
| commit | 7feafd79a481216cdd85b4828e749fc5efacb8db (patch) | |
| tree | b7f2aa9a5394bbbc46f0c02d04b515779e7d9247 /docs | |
| parent | 58fc40427f2928190c8d273ceff2121b738e768b (diff) | |
Fixed #35846 -- Ensured consistent path ordering in ManifestStaticFilesStorage manifest files.
This change reuses the existing sorting of `hashed_files` in
`ManifestStaticFilesStorage.save_manifest` to also store a sorted
`paths` mapping in the manifest file. This ensures stable manifest
output that does not change unnecessarily.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/6.0.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/6.0.txt b/docs/releases/6.0.txt index 2e3e52444a..29912027ff 100644 --- a/docs/releases/6.0.txt +++ b/docs/releases/6.0.txt @@ -154,7 +154,9 @@ Minor features :mod:`django.contrib.staticfiles` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -* ... +* :class:`~django.contrib.staticfiles.storage.ManifestStaticFilesStorage` now + ensures consistent path ordering in manifest files, making them more + reproducible and reducing unnecessary diffs. :mod:`django.contrib.syndication` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
