summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-20Removed redundant inner imports.Mariusz Felisiak
2017-10-20Fixed #28613 -- Doc'd the return value for GenericForeignKey when the ↵Tim Graham
related object is deleted.
2017-10-20Fixed #28729 -- Replaced a numbered list with unordered list in ↵Tim Graham
TemplatesSetting docs.
2017-10-20Fixed #28577 -- Added checks for ArrayField and JSONField to prevent mutable ↵Flávio Juvenal
defaults.
2017-10-20Fixed #27515 -- Made AuthenticationForm's username field use the max_length ↵Lucas Connors
from the model field. Thanks Ramin Farajpour Cami for the report.
2017-10-20Refs #19130 -- Added a test for AuthenticationForm.username max_length.Lucas Connors
This will be a more useful regression test after refs #27515.
2017-10-20Refs #24031 -- Added test for Case and When constructor arguments.Mads Jensen
2017-10-20Fixed #28662 -- Silenced join template filter error if arg isn't iterable.Mads Jensen
2017-10-18Refs #28575 -- Made RelatedObjectDoesNotExist classes pickable.Simon Charette
Thanks to Rachel Tobin for the initial __qualname__ work and tests.
2017-10-18Refs #19295 -- Doc'd that ManifestStaticFilesStorage doesn't work with ↵Collin Stedman
runserver --insecure.
2017-10-18Fixed outdated comment in RelatedObjectDoesNotExist.Simon Charette
2017-10-18Refs #28711 -- Replaced ugettext_lazy() with gettext_lazy() in a test.Tim Graham
As per c651331b34b7c3841c126959e6e52879bc6f0834.
2017-10-18Fixed #28711 -- Fixed unordered_list template filter with lazy translations.Jonas Haag
2017-10-18Refs #23260 -- Tested nested generator input to unordered_list template filter.Jonas Haag
2017-10-17Updated Basque (eu) locale formats.Eneko Illarramendi
2017-10-17Fixed typo in docs/ref/models/querysets.txt.Jozef
2017-10-17Made SearchQuery examples less sterotyped.Simon Willison
2017-10-17Fixed typos in docs/releases/2.0.txt.Simon Meers
2017-10-16Fixed #28497 -- Restored the ability to use sliced QuerySets with __exact.Tim Graham
Regression in ec50937bcbe160e658ef881021402e156beb0eaf. Thanks Simon Charette for review.
2017-10-16Fixed typo in MessageMiddleware.process_response() docstring.Joe Arthur
2017-10-14Fixed #28713 -- Prevented ModelBackend.get_all_permissions() from mutating ↵Yuri Kaszubowski Lopes
get_user_permissions().
2017-10-14Refs #28710 -- Simplified l10n format testClaude Paroz
2017-10-13Fixed #28695 -- Allowed models to use __init_subclass__().k
2017-10-13Corrected examples in related field descriptor docstrings.Simon Charette
Using lowercased model class names suggested that accessing the attribute from instances of the class returned an instance of the descriptor, but this is only the case when accessed from the model class.
2017-10-13Refs #28575 -- Removed unnecessary code for model exception pickling.Simon Charette
Setting __qualname__ is sufficient for pickling of DoesNotExist and and MultipleObjectsReturned to work correctly.
2017-10-13Updated email.Util (Python 2) references to email.utils (Python 3).Tim Graham
2017-10-13Refs #28643 -- Reorganized database functions.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-10-13Fixed #28710 -- Fixed the Basque DATE_FORMAT stringClaude Paroz
Thanks Eneko Illarramendi for the report and initial patch.
2017-10-13Refs #28440 -- Fixed server connection closing test on macOS.Tom
2017-10-13Refs #28643 -- Reorganized database functions docs.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-10-13Removed incorrect reference to ModelChoiceField in Field.choices docs.LeeHanYeong
2017-10-13Fixed #28708 -- Added constants to detect the Python version.Tim Graham
2017-10-13Improved performance of utils.html.escape().Tom
2017-10-13Refs #28575 -- Allowed pickling Model.DoesNotExist and ↵Rachel Tobin
MultipleObjectsReturned classes.
2017-10-12Fixed #27846 -- Made Model.refresh_from_db() clear cached relations.Paulo
2017-10-12Simplified IfNode.nodelistTim Graham
2017-10-12Removed unused ForNode.__iter__().Tim Graham
Unknown if it was ever used.
2017-10-12Refs #28248 -- Clarified the precision of PASSWORD_RESET_TIMEOUT_DAYS.Tim Graham
2017-10-12Fixed #28688 -- Made admin's URLify.js skip removal of English words if ↵Sævar Öfjörð Magnússon
non-ASCII chars are present.
2017-10-12Added test for FlatPage.__str__().Mads Jensen
2017-10-12Added setUp() method to FlatpageModelTests.Mads Jensen
2017-10-12Fixed #28679 -- Fixed urlencode()'s handling of bytes.François Freitag
Regression in fee42fd99ee470528858c2ccb3621135c30ec262. Thanks Claude Paroz, Jon Dufresne, and Tim Graham for the guidance.
2017-10-10Fixed #28601 -- Prevented cache.get_or_set() from caching None if default is ↵Daniel Tao
a callable that returns None.
2017-10-10Split django.utils.http tests into separate test classes.François Freitag
2017-10-09Fixed #28591 -- Added an error message for createsuperuser --username= (blank).Hasan Ramezani
2017-10-09Fixed #28423 -- Expanded docs for indexing contrib.postgres fields.Mads Jensen
2017-10-09Fixed #28670 -- Added FETCH/OFFSET support on Oracle.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-10-09Added tests for Combinable's bitwise logical operation errors.Mads Jensen
2017-10-09Moved link in "Features removed in 2.0" to be more specific.Tim Graham
2017-10-09Fixed #28685 -- Fixed awkward wrapping of Select2 chips.Johannes Hoppe