File: 4.2.8.txt

package info (click to toggle)
python-django 3%3A5.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 61,236 kB
  • sloc: python: 361,585; javascript: 19,250; xml: 211; makefile: 182; sh: 28
file content (40 lines) | stat: -rw-r--r-- 1,557 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
==========================
Django 4.2.8 release notes
==========================

*December 4, 2023*

Django 4.2.8 fixes several bugs in 4.2.7 and adds compatibility with Python
3.12.

Bugfixes
========

* Fixed a regression in Django 4.2 that caused :option:`makemigrations --check`
  to stop displaying pending migrations (:ticket:`34457`).

* Fixed a regression in Django 4.2 that caused a crash of
  ``QuerySet.aggregate()`` with aggregates referencing other aggregates or
  window functions through conditional expressions (:ticket:`34975`).

* Fixed a regression in Django 4.2 that caused a crash when annotating a
  ``QuerySet`` with a ``Window`` expressions composed of a ``partition_by``
  clause mixing field types and aggregation expressions (:ticket:`34987`).

* Fixed a regression in Django 4.2 where the admin's change list page had
  misaligned pagination links and inputs when using ``list_editable``
  (:ticket:`34991`).

* Fixed a regression in Django 4.2 where checkboxes in the admin would be
  centered on narrower screen widths (:ticket:`34994`).

* Fixed a regression in Django 4.2 that caused a crash of querysets with
  aggregations on MariaDB when the ``ONLY_FULL_GROUP_BY`` SQL mode was enabled
  (:ticket:`34992`).

* Fixed a regression in Django 4.2 where the admin's read-only password widget
  and some help texts were incorrectly aligned at tablet widths
  (:ticket:`34982`).

* Fixed a regression in Django 4.2 that caused a migration crash on SQLite when
  altering unsupported ``Meta.db_table_comment`` (:ticket:`35006`).