summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-09-27Completed test coverage for createsuperuser command.Marcelo Galigniana
2022-09-27Fixed typo in 4.1.2 release notes.Carlton Gibson
2022-09-27Set date and added stub notes for 4.1.2, 4.0.8, and 3.2.16 releases.Carlton Gibson
2022-09-27Fixed #34050 -- Replaced invalid chars in migration names with '_'.Adam Johnson
Thanks to Bishal Gautam for the report and initial implementation. Regression in fa58450a9ab8a1bdd2a5090b51b00078fd85ffa6. Co-Authored-By: Bishal Gautam <bisalgt@gmail.com>
2022-09-26Fixed #34040 -- Removed autofocus from admin search box.Moshe Nahmias
2022-09-26Improved migrate help text for the --check option.Mike Lissner
2022-09-26Removed unnecessary MySQL workaround in timezones tests.Mariusz Felisiak
Unnecessary since 22da5f8817ffff3917bcf8a652dce84f382c9202.
2022-09-26Bumped minimum Sphinx version to 4.5.0 in docs/requirements.txt.sarahboyce
Follow up to ebf25555bbed3e9112d4b726575d60b242daf48a.
2022-09-26Refs #34041 -- Added navigation landmark to breadcrumbs in admin.Florian Perucki
Thanks Thibaud Colas for pair programming.
2022-09-25Fixed #26975 -- Clarified how Django looks for fixture files.Filip Łajszczak
Co-Authored-By: Daniel Brotsky <dev@brotsky.com>
2022-09-25Fixed #34027 -- Fixed migrations crash when altering type of char/text ↵David Sanders
fields referenced by foreign key on PostgreSQL.
2022-09-25Fixed #34037 -- Improved color contrast for close buttons in admin.Mia Bajić
2022-09-25Fixed #34049 -- Fixed displaying SVGs patterns.Pablousse
Regression in bc7aa2a5e91cf65fc7510edaf1776528c7ad07b4.
2022-09-24Fixed #34046 -- Fixed pinning flake8 and isort versions in tox.ini.Michael Howitz
2022-09-24Fixed #34026 -- Fixed WKBReader.read() crash on string input.select-case
2022-09-24Fixed #34033 -- Improved accessibility of switch button for dark mode in the ↵Florian Perucki
admin. Bug in bc7aa2a5e91cf65fc7510edaf1776528c7ad07b4. Thanks Thibaud Colas for the report and review.
2022-09-24Fixed #34023 -- Added inline argument to user_deleted_form().Michał Pasternak
This binds the loop variable.
2022-09-23Fixed #34024 -- Fixed crash when aggregating querysets with Q objects ↵David Sanders
annotations. This reverts b64db05b9cedd96905d637a2d824cbbf428e40e7. 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.
2022-09-22Refs #34012 -- Added test for ordering by transform of related fields.Mariusz Felisiak
2022-09-22Fixed #34015 -- Allowed filtering by transforms on relation fields.Mariusz Felisiak
2022-09-19Fixed typo in docs/releases/3.2.1.txt.Jacob Walls
2022-09-19Fixed permissions for GitHub action with welcome message.Mariusz Felisiak
Follow up to bc33b047848759e7ae90bf85c94ff6cc5913e1ee.
2022-09-17Fixed #34016 -- Fixed QuerySet.values()/values_list() crash on ArrayAgg() ↵Alexander Kerkum
and JSONBAgg(). Regression in e06dc4571ea9fd5723c8029959b95808be9f8812.
2022-09-17Fixed #34014 -- Fixed DecimalValidator validating 0 in positive exponent ↵Kamil Turek
scientific notation. Thanks Shiplu Mokaddim for the report.
2022-09-17Fixed #34017 -- Doc'd that Argon2id variant is used by Argon2PasswordHasher.Ritik Soni
2022-09-17Fixed #34019 -- Removed obsolete references to "model design considerations" ↵DevilsAutumn
note.
2022-09-16Fixed permissions for GitHub action with welcome message.Mariusz Felisiak
Follow up to bc33b047848759e7ae90bf85c94ff6cc5913e1ee.
2022-09-16Fixed #34018 -- Fixed typo in docs/ref/contrib/flatpages.txt.Ferran Jovell
2022-09-16Fixed permissions for GitHub action with welcome message.Mariusz Felisiak
2022-09-16Fixed test_relational_post_delete_signals_happen_before_parent_object when ↵Mariusz Felisiak
run in isolation.
2022-09-16Fixed #33966 -- Added support for using KeyTextTransform from lookup.Allen Jonathan David
2022-09-15Refs #28333 -- Explicitly ordered outer qualify query on window filtering.Simon Charette
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.
2022-09-15Fixed #33994 -- Corrected position of extrastyle and extrahead blocks in ↵Jay Patel
admin base template.
2022-09-15Changed camel case variable to snake case in contrib.admin/auth.Youngkwang Yang
2022-09-15Used first-interaction for GitHub action with welcome message.Mariusz Felisiak
2022-09-15Described Article-Reporter relationship in many-to-one topic.Pamela Fox
2022-09-14Fixed #29186 -- Fixed pickling HttpRequest and subclasses.Anvesh Mishra
2022-09-13Fixed #33996 -- Fixed CheckConstraint validation on NULL values.David Sanders
Bug in 667105877e6723c6985399803a364848891513cc. Thanks James Beith for the report.
2022-09-13Fixed #31335 -- Fixed removing composed composed Meta constraints/indexes on ↵Sergey Fursov
foreign keys on MySQL.
2022-09-12Refs #31335 -- Added more tests for removing composed Meta ↵Sergey Fursov
constraints/indexes on foreign keys.
2022-09-12Refs #34000 -- Optimized handling None values in numberformat.format().Jimmy Angelakos
2022-09-12Fixed #34000 -- Fixed numberformat.format() crash on empty strings.Jimmy Angelakos
2022-09-12Refs #31335 -- Added SchemaEditor._create_missing_fk_index() on MySQL.Sergey Fursov
2022-09-09Fixed #33995 -- Fixed FormSet.empty_form crash when empty_permitted is ↵DevilsAutumn
passed to form_kwargs.
2022-09-09Corrected example of redundant all() in docs.Dhanush
2022-09-09Fixed #33975 -- Fixed __in lookup when rhs is a queryset with annotate() and ↵DevilsAutumn
alias(). This fixes clearing selected fields.
2022-09-08Used CSS flex and <nav> for ModelAdmin.date_hierarchy.Tom Carrick
2022-09-08Fixed #33992 -- Fixed queryset crash when aggregating over a group ↵Simon Charette
containing Exists. A more in-depth solution is likely to make sure that we always GROUP BY selected annotations or revisit how we use Query.exists() in the Exists expression but that requires extra work that isn't suitable for a backport. Regression in e5a92d400acb4ca6a8e1375d1ab8121f2c7220be. Thanks Fernando Flores Villaça for the report.
2022-09-07Refs #24179 -- Fixed selenium tests for offset of admin selector boxes in ↵Mariusz Felisiak
fieldset. Regression in be63c78760924e1335603c36babd0ad6cfaea3c4.
2022-09-07Fixed #33986 -- Hardened binary lookup in template commands.Shai Berger
Made template commands look up formatters before writing files. This makes sure files included in the template are not identified as executable formatter commands, even in case the template is rendered into the system path (as might easily happen on Windows, where the current directory is on the system path by default). While at it, Warned about trusting custom templates for startapp/startproject. Thanks Trung Pham of Viettel Cyber Security for reporting the issue, Django Security Team for discussions, and Adam Johnson and Carlton Gibson for reviews.