2023-01-02 07:50:33 +00:00
|
|
|
==========================
|
|
|
|
Django 4.1.6 release notes
|
|
|
|
==========================
|
|
|
|
|
2023-01-25 10:57:04 +00:00
|
|
|
*February 1, 2023*
|
2023-01-02 07:50:33 +00:00
|
|
|
|
2023-01-25 11:21:48 +00:00
|
|
|
Django 4.1.6 fixes a security issue with severity "moderate" and a bug in
|
|
|
|
4.1.5.
|
|
|
|
|
|
|
|
CVE-2023-23969: Potential denial-of-service via ``Accept-Language`` headers
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
The parsed values of ``Accept-Language`` headers are cached in order to avoid
|
|
|
|
repetitive parsing. This leads to a potential denial-of-service vector via
|
|
|
|
excessive memory usage if large header values are sent.
|
|
|
|
|
|
|
|
In order to avoid this vulnerability, the ``Accept-Language`` header is now
|
|
|
|
parsed up to a maximum length.
|
2023-01-02 07:50:33 +00:00
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2023-01-26 08:31:40 +00:00
|
|
|
* Fixed a bug in Django 4.1 that caused a crash of model validation on
|
|
|
|
``UniqueConstraint`` with ordered expressions (:ticket:`34291`).
|