summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2020-10-27Fixed #32128 -- Added asgiref 3.3 compatibility.Carlton Gibson
Thread sensitive parameter is True by default from asgiref v3.3.0. Added an explicit thread_sensitive=False to previously implicit uses.
2020-10-27Made OracleSpatialAdapter clone geometries rather than mutate them.Tim Graham
2020-10-26Corrected output of rendered formset example in model formsets docs.Jon Dufresne
2020-10-22Fixed #32124 -- Added per-view opt-out for APPEND_SLASH behavior.Carlton Gibson
2020-10-22Fixed #32130 -- Fixed pre-Django 3.1 password reset tokens validation.Mariusz Felisiak
Thanks Gordon Wrigley for the report and implementation idea. Regression in 226ebb17290b604ef29e82fb5c1fbac3594ac163.
2020-10-22Refs #9475 -- Linked through_default docs to related managers methods.Simon Charette
2020-10-21Fixed #32069 -- Fixed admin change-form layout on small screens.Carlton Gibson
Restored flex-wrap CSS declaration to form elements at smallest breakpoint. This was present since the responsive admin was introduced in dc37e8846eeedc3a9100ca21fdc9d579bc534c89. Regression in 8ee4bb6ffcb3346c0fa8fb194986fbf9edadc822, where it was accidentally removed.
2020-10-21Fixed #32046 -- Added CreateCollation/RemoveCollation operations for PostgreSQL.Tom Carrick
2020-10-21Fixed #26615 -- Made password reset token invalidate when changing email.Jacob Walls
Co-Authored-By: Silas Barta <sbarta@gmail.com>
2020-10-21Fixed typo in docs/releases/3.2.txt.Jacob Walls
2020-10-20Fixed outdated notes in SchemaEditor docs.Mariusz Felisiak
2020-10-19Fixed typo in docs/ref/checks.txt.Mariusz Felisiak
2020-10-19Fixed #32107 -- Fixed ProtectedError.protected_objects and ↵Hasan Ramezani
RestrictedError.restricted_objects. Regression in 4ca5c565f4dc9e97845036e86416abc5cfde766c and ab3cbd8b9a315911248227208630a020cedca08f. Thanks Vitaliy Yelnik for the report.
2020-10-18Fixed typo in docs/topics/testing/tools.txt.Jacob Walls
2020-10-17Fixed #32110 -- Doc'd and tested enumerations for ChoiceField.choices.Claude Paroz
2020-10-15Fixed #32105 -- Added template paths as ExceptionReporter class attributes.Aarni Koskela
This allows replacement of the debugging templates without having to copy-paste the `get_traceback_html` and `get_traceback_text` functions into a subclass. Thanks to Nick Pope for review.
2020-10-15Fixed #29988 -- Updated coding style to allow f-strings.Carlton Gibson
Thanks to Nick Pope for review.
2020-10-15Refs #32096 -- Removed JSONBAgg from 3.1.3 release notes.Mariusz Felisiak
JSONBAgg doesn't support ordering in Django 3.1. Follow up to 1f31027bb3ad460864fbcbbb89eeb328c0a2f184.
2020-10-14Refs #32096 -- Fixed ExclusionConstraint crash with JSONField key transforms ↵Mariusz Felisiak
in expressions. Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd.
2020-10-14Refs #32096 -- Fixed ExpressionWrapper crash with JSONField key transforms.Mariusz Felisiak
Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd. Thanks Simon Charette and Igor Jerosimić for the report.
2020-10-14Refs #32096 -- Fixed __in lookup crash against key transforms for JSONField.Mariusz Felisiak
Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd and 1251772cb83aa4106f526fe00738e51c0eb59122. Thanks Simon Charette and Igor Jerosimić for the report.
2020-10-14Refs #32096 -- Fixed crash of ArrayAgg/StringAgg/JSONBAgg with ordering over ↵Mariusz Felisiak
JSONField key transforms. Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd. Thanks Igor Jerosimić for the report.
2020-10-14Fixed #31640 -- Made Trunc() truncate datetimes to Date/TimeField in a ↵David-Wobrock
specific timezone.
2020-10-13Fixed #20601 -- Allowed forcing format with thousand separators in ↵Jacob Walls
floatformat filter. Thanks Claude Paroz and Nick Pope for reviews.
2020-10-13Refs #31040 -- Doc'd Python 3.9 compatibility.Mariusz Felisiak
2020-10-13Fixed typo in docs/topics/i18n/translation.txt.shivam sharma
2020-10-09Fixed #32091 -- Fixed admin search bar width on filtered admin page.Tim Schilling
2020-10-09Fixed #32080 -- Fixed displaying Unicode chars in forms.JSONField and ↵Qi Zhao
read-only JSONField values in admin.
2020-10-08Fixed #31181 -- Added links to related models for admin's readonly fields.Julien Rebetez
2020-10-08Fixed #29356 -- Clarified docs for QueryDict.getlist() default.Paul Grau
2020-10-08Fixed #32083 -- Added link back to migrating section in multi-db docs example.Carlton Gibson
2020-10-08Fixed #23681, Fixed #27445 -- Doc'd setting choices for NullBooleanField ↵Jacob Walls
widgets. Thanks to David Smith for investigation and review. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2020-10-07Fixed #32065 -- Restored leading dot to CSRF_COOKIE_DOMAIN examples.Carlton Gibson
Partially reverts afd375fc343baa46e61036087bc43b3d096bb0ca. Thanks to Tim Graham for review.
2020-10-07Fixed #32002 -- Added headers parameter to HttpResponse and subclasses.Tom Carrick
2020-10-06Fixed #32072 -- Fixed admin search bar height.Tom Carrick
Thanks şuayip üzülmez for the report. Regression in 8ee4bb6ffcb3346c0fa8fb194986fbf9edadc822.
2020-10-02Refs #31777 -- Doc'd Char/TextField.db_collation parameter in MySQL notes.Mariusz Felisiak
2020-10-02Fixed #32060 -- Added Random database function.Nick Pope
2020-10-01Fixed #32041 -- Doc'd how to modify served files' content types on Windows.Peter Marheine
2020-10-01Fixed #32057 -- Doc'd HttpResponse.get()/items().MAHANTH-wq
2020-10-01Added stub release notes for 3.1.3.Mariusz Felisiak
2020-10-01Added release date for 3.1.2.Mariusz Felisiak
2020-09-30Fixed #31986 -- Fixed admin filter sidebar scrolling.Tom Carrick
Regression in 2bc38bc7cae002f949157d95e3f0c19ea6b8ca5c. Thanks haki for the report.
2020-09-30Fixed #30422 -- Made TemporaryFileUploadHandler handle interrupted uploads.aryan
This patch allows upload handlers to handle interrupted uploads. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2020-09-29Updated ASGI uvicorn deployment docs.Thomas Grainger
2020-09-28Fixed #32042 -- Improved error messages for the number of submitted forms in ↵meghanabhange
formsets.
2020-09-25Fixed #28009 -- Doc'd empty_value for CharField subclasses.David Smith
2020-09-25Fixed empty values of forms.JSONField and forms.UUIDField in docs.David Smith
2020-09-25Fixed #32038 -- Fixed EmptyFieldListFilter crash with GenericRelation.Mariusz Felisiak
Thanks Javier Matos Odut for the report.
2020-09-25Refs #32038 -- Added note to ModelAdmin.list_filter docs that ↵Mariusz Felisiak
GenericForeignKeys are not supported.
2020-09-25Fixed typo and indentation in docs/ref/forms/fields.txt.Mariusz Felisiak