summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2017-12-18Fixed #28929 -- Corrected QUnit examples.weijunji
2017-12-18Fixed #28938 -- Corrected Python compatibility in the tutorial.Daniel Hepper
2017-12-12Fixed #28915 -- Prevented SQLite from truncating trailing zeros in the ↵Sergey Fedoseev
fractional part of DecimalField. This reverts commit a146b65628e702a9a3ed5be21542ca45366fbb29 and adds a test for the regression.
2017-12-13Fixed #28898 -- Corrected admin check to allow a OneToOneField in ↵Rodrigo Pinheiro Marques de Araújo
ModelAdmin.autocomplete_fields.
2017-12-12Fixed #28896 -- Reallowed filtering a queryset with GeometryField=None.Sergey Fedoseev
Regression in 58da81a5a372a69f0bac801c412b57f3cce5f188.
2017-12-08Refs #28856 -- Added test for caching of a GenericForeignKey pointing to a ↵Morgan Wahl
model that uses more than one level of MTI. Forwardport of test and release notes of 35222035029863f95769e2e59beeeb953d125689 from stable/1.11.x
2017-12-07Fixed #28891 -- Documented Origin's loader attribute.M Somerville
2017-12-07Fixed typo in docs/ref/contrib/admin/index.txt.Sam Collins
2017-12-07Fixed import in docs/ref/models/conditional-expressions.txt example.Mohammad Esmaeilbeygi
2017-12-06Fixed #28870 -- Added support for functools.partialmethod serialization in ↵Sergey Fedoseev
migrations.
2017-12-06Fixed #28886 -- Updated prefix for example django.contrib.auth.urls URLs.Tim Graham
2017-12-06Fixed #28883 -- Doc'd that the uuid URL path converter matches lowercase ↵Tim Graham
only letters.
2017-12-05Refs #28876 -- Fixed incorrect foreign key constraint name for models with ↵Mariusz Felisiak
quoted db_table. Thanks Simon Charette and Tim Graham for the review and Carlos E. C. Leite for the report.
2017-12-05Refs #28876 -- Fixed incorrect class-based model index name generation for ↵Mariusz Felisiak
models with quoted db_table. Thanks Simon Charette and Tim Graham for the review and Carlos E. C. Leite for the report.
2017-12-05Removed 'development' word in contributing docsClaude Paroz
2017-12-05Fixed #28890 -- Removed newlines between MultiWidget's subwidgets.Nick Pope
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
2017-12-05Added stub release notes for 1.11.9.Tim Graham
2017-12-05Fixed typo in docs/ref/models/expressions.txt.Igor Starikov
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-12-04Fixed grammer in docs/releases/2.0.txt.David Szotten
2017-12-04Fixed typo in docs/topics/testing/advanced.txt. (#9416)Sergey Fedoseev
2017-12-02Added stub release notes for 2.0.1.Tim Graham
2017-12-02Added release dates for 2.0 and 1.11.8.Tim Graham
2017-12-01Fixed #28849 -- Fixed referenced table and column rename on SQLite.Simon Charette
Thanks Ramiro for the input and Tim for the review.
2017-12-01Fixed #28305 -- Fixed "Cannot change column 'x': used in a foreign key ↵Tim Graham
constraint" crash on MySQL with a sequence of AlterField or RenameField operations. Regression in 45ded053b1f4320284aa5dac63052f6d1baefea9.
2017-11-30Fixed #28856 -- Fixed a regression in caching of a GenericForeignKey ↵Simon Charette
pointing to a MTI model. Regression in b9f8635f58ad743995cad2081b3dc395e55761e5.
2017-11-29Fixed #28702 -- Made query lookups for CIText fields use citext.Mads Jensen
2017-11-28Fixed #28853 -- Updated connection.cursor() uses to use a context manager.Jon Dufresne
2017-11-27Fixed #28848 -- Fixed SQLite/MySQL crash when ordering by a filtered ↵Raphael Michel
subquery that uses nulls_first/nulls_last.
2017-11-24Removed unused words from docs/spelling_wordlist.Mariusz Felisiak
2017-11-23Linked to prefetch_related_objects func in DB optimization docs.Luke Plant
2017-11-22Fixed typo in docs/topics/forms/media.txt.Hyunwoo Park
2017-11-21Clarified who the AdminEmailHandler emails.Frédéric Massart
2017-11-21Fixed #28817 -- Made QuerySet.iterator() use server-side cursors after ↵Dražen Odobašić
values() and values_list().
2017-11-18Fixed #26184 -- Allowed using any lookups in ModelAdmin.search_fields.Krzysztof Nazarewski
Thanks Krzysztof Nazarewski for the initial patch.
2017-11-18Fixed #28810 -- Replaced '%' style logging formatting with str.format() style.Chris Lamb
2017-11-17Fixed #28815 -- Fixed ExtractYear imports in docs/ref/models/expressions.txt.Benjamin Bach
2017-11-16Fixed #28802 -- Fixed typo in docs/topics/auth/default.txt.Tim Graham
2017-11-16Fixed #28796 -- Doc'd backwards incompatibility when reverse() receives ↵Tim Graham
bytestring args/kwargs. Due to 301de774c21d055e9e5a7073e5bffdb52bc71079.
2017-11-14Fixed #28792 -- Fixed index name truncation of namespaced tables.Simon Charette
Refs #27458, #27843. Thanks Tim and Mariusz for the review.
2017-11-14Fixed #28786 -- Doc'd middleware ordering considerations due to ↵Tim Graham
CommonMiddleware setting Content-Length.
2017-11-12Fixed #28781 -- Added QuerySet.values()/values_list() support for union(), ↵Mariusz Felisiak
difference(), and intersection(). Thanks Tim Graham for the review.
2017-11-11Refs #26447 -- Removed outdated ETag comment in CommonMiddleware.Tim Graham
Follow up to 48d57788ee56811fa77cd37b9edf40535f82d87e.
2017-11-09Fixed #28777 -- Clarified the docs for admin.register's args.Tim Graham
2017-11-08Fixed #28645 -- Reallowed AuthenticationForm to raise the inactive user ↵shanghui
error when using ModelBackend. Regression in e0a3d937309a82b8beea8f41b17d8b6298da2a86. Thanks Guilherme Junqueira for the report and Tim Graham for the review.
2017-11-07Fixed #28720 -- Added HttpRequest.get_full_path_info().Jonas Haag
2017-11-07Fixed #28770 -- Warned that quoting a placeholder in a raw SQL string is unsafe.Tim Graham
Thanks Hynek Cernoch for the report and review.
2017-11-07Fixed #28663 -- Add a check for likely incorrectly migrated ↵Chris Lamb
django.urls.path() routes.
2017-11-07Fixed typo in docs/topics/db/aggregation.txt.Tim Graham
2017-11-06Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов