4.0.3.txt 644 B

12345678910111213141516171819
  1. ==========================
  2. Django 4.0.3 release notes
  3. ==========================
  4. *March 1, 2022*
  5. Django 4.0.3 fixes several bugs in 4.0.2. Also, all Python code in Django is
  6. reformatted with :pypi:`black`.
  7. Bugfixes
  8. ========
  9. * Prevented, following a regression in Django 4.0.1, :djadmin:`makemigrations`
  10. from generating infinite migrations for a model with ``ManyToManyField`` to
  11. a lowercased swappable model such as ``'auth.user'`` (:ticket:`33515`).
  12. * Fixed a regression in Django 4.0 that caused a crash when rendering invalid
  13. inlines with :attr:`~django.contrib.admin.ModelAdmin.readonly_fields` in the
  14. admin (:ticket:`33547`).