main
Commits on Sep 27, 2022
-
-
-
Fixed #34050 -- Replaced invalid chars in migration names with '_'.
Thanks to Bishal Gautam for the report and initial implementation. Regression in fa58450. Co-Authored-By: Bishal Gautam <[email protected]>
Commits on Sep 26, 2022
-
-
-
Removed unnecessary MySQL workaround in timezones tests.
Unnecessary since 22da5f8.
-
Refs #34041 -- Added navigation landmark to breadcrumbs in admin.
Thanks Thibaud Colas for pair programming.
Commits on Sep 25, 2022
-
Fixed #26975 -- Clarified how Django looks for fixture files.
Co-Authored-By: Daniel Brotsky <[email protected]>
-
Fixed #34027 -- Fixed migrations crash when altering type of char/tex…
…t fields referenced by foreign key on PostgreSQL.
-
Fixed #34049 -- Fixed displaying SVGs patterns.
Regression in bc7aa2a.
Commits on Sep 24, 2022
-
Fixed #34033 -- Improved accessibility of switch button for dark mode…
… in the admin. Bug in bc7aa2a. Thanks Thibaud Colas for the report and review.
-
Fixed #34023 -- Added inline argument to user_deleted_form().
This binds the loop variable.
Commits on Sep 23, 2022
-
Fixed #34024 -- Fixed crash when aggregating querysets with Q objects…
… annotations. This reverts b64db05. It was reasonable to assume it was unnecessary code as there were no failing tests upon its removal. This commit adds the necessary regression tests for the failing condition identified in #34024 alongside the original tests added in the PR for which WhereNode.is_summary was introduced.
Commits on Sep 22, 2022
Commits on Sep 21, 2022
Commits on Sep 19, 2022
Commits on Sep 17, 2022
-
Fixed #34016 -- Fixed QuerySet.values()/values_list() crash on ArrayA…
…gg() and JSONBAgg(). Regression in e06dc45.
-
Fixed #34014 -- Fixed DecimalValidator validating 0 in positive expon…
…ent scientific notation. Thanks Shiplu Mokaddim for the report.
Commits on Sep 16, 2022
-
-
Fixed test_relational_post_delete_signals_happen_before_parent_object…
… when run in isolation.
Commits on Sep 15, 2022
-
Refs #28333 -- Explicitly ordered outer qualify query on window filte…
…ring. While most backends will propagate derived table ordering as long as the outer query doesn't perform additional processing the SQL specs doesn't explicitly state the ordering must be maintained.
-
Fixed #33994 -- Corrected position of extrastyle and extrahead blocks…
… in admin base template.