1
0
mirror of https://github.com/django/django.git synced 2025-03-15 11:50:46 +00:00
django/docs/releases/4.1.4.txt
Daniel Ivanov 5eab4d1924 Fixed #34088 -- Fixed Sitemap.get_latest_lastmod() crash with empty items.
Bug in 480191244d12fefbf95854b2b117c71ffe44749a.

Thanks Michal Čihař for the report.
2022-11-07 06:15:54 +01:00

19 lines
554 B
Plaintext

==========================
Django 4.1.4 release notes
==========================
*Expected December 6, 2022*
Django 4.1.4 fixes several bugs in 4.1.3.
Bugfixes
========
* Fixed a regression in Django 4.1 that caused an unnecessary table rebuilt
when adding ``ManyToManyField`` on SQLite (:ticket:`34138`).
* Fixed a bug in Django 4.1 that caused a crash of the sitemap index view with
an empty :meth:`Sitemap.items() <django.contrib.sitemaps.Sitemap.items>` and
a callable :attr:`~django.contrib.sitemaps.Sitemap.lastmod`
(:ticket:`34088`).