summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-08-20Fixed #31909 -- Fixed typo in docs/ref/contrib/admin/index.txt.Enderson Menezes
2020-08-19Fixed #31895 -- Fixed crash when decoding invalid session data.Mariusz Felisiak
Thanks Matt Hegarty for the report. Regression in d4fff711d4c97356bd6ba1273d2a5e349326eb5f.
2020-08-19Fixed #31902 -- Fixed crash of ExclusionConstraint on expressions with params.Maxim Petrov
2020-08-18Fixed #27679 -- Doc'd that empty formsets display extra + min_num forms.David Smith
2020-08-18Refs #9061 -- Allowed GenericInlineFormSet to disable deleting extra forms.Mariusz Felisiak
Follow up to 162765d6c3182e36095d29543e21b44b908625fc.
2020-08-18Refs #20347 -- Allowed customizing the maximum number of instantiated forms ↵Mariusz Felisiak
in generic_inlineformset_factory(). Follow up to 433dd737f94b09043f64b873b0ac067b3f97364b.
2020-08-18Refs #17642 -- Doc'd min_num and validate_min arguments in ↵Mariusz Felisiak
modelformset_factory() docs. Changed arguments ordering to match the modelformset_factory() signature.
2020-08-18Fixed typo in docs/ref/django-admin.txt.Mariusz Felisiak
2020-08-17Fixed #31892 -- Added backward incompatibility note about Media <script> ↵Jon Dufresne
tags changes. Refs 31080.
2020-08-17Fixed #31888 -- Avoided module-level MySQL queries in tests.Ahmad A. Hussein
2020-08-14Fixed #31826 -- Made AlterField operation a noop when adding db_column.Iuri de Silvio
AlterField operation with adding a db_column is a noop if the column name is not changed.
2020-08-14Added missing items to django.test.client.__all__ and django.test.utils.__all__.Mads Jensen
2020-08-14Removed unnecessary urlsplit() call from SimpleTestCase.assertRedirects().Mads Jensen
2020-08-14Fixed #31878 -- Made createsuperuser respect --database option in default ↵Yan Mitrofanov
usernames.
2020-08-14Fixed typo in tests/auth_tests/test_management.py docstring.Yan Mitrofanov
2020-08-13Refs #31811 -- Added optional timing outputs to the test runner.Ahmad A. Hussein
2020-08-13Refs #31863 -- Added release notes for 94ea79be137f3cb30949bf82198e96e094f2650d.Mariusz Felisiak
2020-08-13Fixed #31792 -- Made Exists() reuse QuerySet.exists() optimizations.Simon Charette
The latter is already optimized to limit the number of results, avoid selecting unnecessary fields, and drop ordering if possible without altering the semantic of the query.
2020-08-13Fixed #31825 -- Made RenameField operation a noop for fields with db_column.Iuri de Silvio
2020-08-13Fixes #31877 -- Used lazy() for TemplateView kwarg deprecation warning.Adam Johnson
SimpleLazyObjects cause a crash when filtering. Thanks Tim L. White for the report. Regression in 4ed534758cb6a11df9f49baddecca5a6cdda9311.
2020-08-12Fixed #31382 -- Made Model.save(update_fields=...) raise ValueError on ↵Pat Garcia
non-concrete fields.
2020-08-12Fixed #31863 -- Prevented mutating model state by copies of model instances.Gert Burger
Regression in bfb746f983aa741afa3709794e70f1e0ab6040b5.
2020-08-11Fixed #21181 -- Added Collate database function.Tom Carrick
Thanks Simon Charette for reviews.
2020-08-11Fixed #31866 -- Fixed locking proxy models in QuerySet.select_for_update(of=()).Daniel Hillier
2020-08-11Fixed #31865 -- Adjusted admin nav sidebar template to reduce debug logging.Carlton Gibson
Thanks to Mariusz Felisiak for review.
2020-08-11Added stub release notes for 2.2.16 and 3.0.10.Mariusz Felisiak
2020-08-11Refs #31180 -- Fixed unreachable assertions in apps tests.Mariusz Felisiak
2020-08-11Added note about password updates on argon2 attributes change.Roy Zheng
2020-08-10Fixed #31870 -- Fixed crash when populating app registry with empty or ↵Iuri de Silvio
without apps module. Regression in 3f2821af6bc48fa8e7970c1ce27bc54c3172545e.
2020-08-10Fixed #31871 -- Updated SESSION_COOKIE_SAMESITE comment in global_settings.py.אורי
Follow up to b33bfc383935cd26e19a2cf71d066ac6edd1425f.
2020-08-08Fixed #31831 -- Fixed migration operations ordering when adding ↵Iuri de Silvio
order_with_respect_to and constraints/indexes.
2020-08-08Refs #31831 -- Added autodector test for unique/index_together on _order field.Iuri de Silvio
2020-08-08Refs #31864 -- Doc'd that DEFAULT_HASHING_ALGORITHM requires 3.1.1+ in ↵Uri
release notes.
2020-08-07Fixed #31864 -- Fixed encoding session data during transition to Django 3.1.Mariusz Felisiak
Thanks אורי for the report.
2020-08-07Used mock.Mock() in SMTPBackendTests.Konstantin Alekseev
Using bool caused mypy typecheck failures.
2020-08-07Removed unnecessary sentence in QuerySet docs.Adam Alton
2020-08-07Fixed typo in docs/ref/contrib/postgres/fields.txt.Thomas
2020-08-06Fixed #25513 -- Extracted admin pagination to Paginator.get_elided_page_range().Nick Pope
2020-08-06Refs #25513 -- Fixed admin pagination elision bounds.Nick Pope
It doesn't make sense to elide a single page number which could be a clickable link to that page. We only want to elide two or more pages.
2020-08-06Refs #25513 -- Adjusted admin pagination to be 1-indexed.Nick Pope
2020-08-05Linked to DSF fundraising page from README.Danilo Alexandrino
2020-08-05Added Hypercorn to ASGI deployment guide. Phil Jones
2020-08-05Fixed #29336 -- Doc'd circular template inheritanceDavid Smith
2020-08-05Fixed #31854 -- Fixed wrapping of long model names in admin's sidebar.Mariusz Felisiak
2020-08-05Fixed #31853 -- Fixed wrapping of translated action labels in admin sidebar.007gzs
2020-08-05Refs #31493 -- Replaced var with const and let in JavaScriptCatalog template.Claude Paroz
2020-08-05Fixed #26977 -- Made abstract models raise TypeError when instantiating.Jacob Walls
2020-08-04Added stub release notes for 3.1.1.Mariusz Felisiak
2020-08-04Finalized release notes for Django 3.1.Mariusz Felisiak
2020-08-04Fixed #31842 -- Added DEFAULT_HASHING_ALGORITHM transitional setting.Mariusz Felisiak
It's a transitional setting helpful in migrating multiple instance of the same project to Django 3.1+. Thanks Markus Holtermann for the report and review, Florian Apolloner for the implementation idea and review, and Carlton Gibson for the review.