2023-12-04 14:21:37 +01:00
|
|
|
==========================
|
|
|
|
Django 5.0.1 release notes
|
|
|
|
==========================
|
|
|
|
|
2023-12-05 06:02:36 +01:00
|
|
|
*Expected January 2, 2024*
|
2023-12-04 14:21:37 +01:00
|
|
|
|
|
|
|
Django 5.0.1 fixes several bugs in 5.0.
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2023-12-06 19:03:41 +01:00
|
|
|
* Reallowed, following a regression in Django 5.0, using a foreign key to a
|
|
|
|
model with a primary key that is not ``AutoField`` in
|
|
|
|
:attr:`.ModelAdmin.list_filter` (:ticket:`35020`).
|
2023-12-07 20:50:18 +01:00
|
|
|
|
|
|
|
* Fixed a long standing bug in handling the ``RETURNING INTO`` clause that
|
|
|
|
caused a crash when creating a model instance with a ``GeneratedField`` which
|
|
|
|
``output_field`` had backend-specific converters (:ticket:`35024`).
|
2023-12-06 23:19:09 +01:00
|
|
|
|
|
|
|
* Fixed a regression in Django 5.0 that caused a crash of ``Model.save()`` for
|
|
|
|
models with both ``GeneratedField`` and ``ForeignKey`` fields
|
|
|
|
(:ticket:`35019`).
|