4.2.5.txt 878 B

1234567891011121314151617181920212223242526
  1. ==========================
  2. Django 4.2.5 release notes
  3. ==========================
  4. *September 4, 2023*
  5. Django 4.2.5 fixes a security issue with severity "moderate" and several bugs
  6. in 4.2.4.
  7. Bugfixes
  8. ========
  9. * Fixed a regression in Django 4.2 that caused an incorrect validation of
  10. ``CheckConstraints`` on ``__isnull`` lookups against ``JSONField``
  11. (:ticket:`34754`).
  12. * Fixed a bug in Django 4.2 where the deprecated ``DEFAULT_FILE_STORAGE`` and
  13. ``STATICFILES_STORAGE`` settings were not synced with ``STORAGES``
  14. (:ticket:`34773`).
  15. * Fixed a regression in Django 4.2.2 that caused an unnecessary selection of a
  16. non-nullable ``ManyToManyField`` without a natural key during serialization
  17. (:ticket:`34779`).
  18. * Fixed a regression in Django 4.2 that caused a crash of a queryset when
  19. filtering against deeply nested ``OuterRef()`` annotations (:ticket:`34803`).