5.0.3.txt 933 B

1234567891011121314151617181920212223242526
  1. ==========================
  2. Django 5.0.3 release notes
  3. ==========================
  4. *Expected March 4, 2024*
  5. Django 5.0.3 fixes several bugs in 5.0.2.
  6. Bugfixes
  7. ========
  8. * Fixed a regression in Django 5.0.2 where ``intcomma`` template filter could
  9. return a leading comma for string representation of floats (:ticket:`35172`).
  10. * Fixed a bug in Django 5.0 that caused a crash of ``Signal.asend()`` and
  11. ``asend_robust()`` when all receivers were asynchronous functions
  12. (:ticket:`35174`).
  13. * Fixed a regression in Django 5.0.1 where :meth:`.ModelAdmin.lookup_allowed`
  14. would prevent filtering against foreign keys using lookups like ``__isnull``
  15. when the field was not included in :attr:`.ModelAdmin.list_filter`
  16. (:ticket:`35173`).
  17. * Fixed a regression in Django 5.0 that caused a crash of
  18. ``@sensitive_variables`` and ``@sensitive_post_parameters`` decorators on
  19. functions loaded from ``.pyc`` files (:ticket:`35187`).