summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-11-04Refs #17448 -- Fixed GeoModelTest.test_raw_sql_query.Sergey Fedoseev
The test was a false positive.
2017-11-04Simplified GeometryField.select_format().Sergey Fedoseev
2017-11-03Fixed #28571 -- Added a prompt to bypass password validation in createsuperuser.Tom
2017-11-03Improved technique for matching input prompts in contrib.auth management tests.Tim Graham
2017-11-03Clarified error message for when sqlplarse isn't installed.Nick
2017-11-03Fixed #28768 -- Added Slovak char map for Javascript slug generation.Ondrej Kolimar
2017-11-02Fixed #28723 -- Fixed RelatedManager's prefetch_related() cache name.Mike Hansen
2017-11-01Added stub release notes for 1.11.8.Tim Graham
2017-11-01Added release date for 1.11.7.Tim Graham
2017-11-01Fixed #28759 -- Promoted the contributing guide in the docs for the ↵Tim Graham
django-developers mailing list.
2017-11-01Fixed #28745 -- Added first and last page links to paginator docs example.Sam Morrow
2017-11-01Fixed #28749 -- Added subquery support for ArrayField's __in lookup.Michał Pasternak
2017-11-01Described how querysets are protected from SQL injection in more detail.Tim Graham
2017-11-01Fixed #28680 -- Doc'd Func.__init__()'s **extra and as_sql()'s ↵Tim Graham
**extra_context aren't escaped. Thanks Hynek Cernoch for the report and review.
2017-11-01Made assorted edits to docs/releases/2.0.txt.Adam Johnson
2017-11-01Refs #23919 -- Replaced doc references to django.utils.http.urlquote() and ↵Tim Graham
urlquote_plus() with standard library alternatives. Follow up to fee42fd99ee470528858c2ccb3621135c30ec262.
2017-11-01Fixed #28741 -- Removed unnecessary leading dot from cross-domain cookie ↵Tim Graham
examples.
2017-10-31Fixed #28750 -- Allowed models to define ↵Charlie Denton
Meta.manager_inheritance_from_future for backwards compatibility. Refs 631f4ab06112aca5bd6a57b81159048f936050bf.
2017-10-31Fixed #28760 -- Removed DummyCache's unnecessary get/set/delete_many().Adam Johnson
2017-10-31Refs #23919 -- Updated references to urllib.quote() to Python 3 location.Ville Skyttä
2017-10-31Fixed typo in tests/many_to_many/tests.py.Rajesh Veeranki
2017-10-30Fixed 'a'/'an' mix-ups in docs.Ville Skyttä
2017-10-30Fixed #28742 -- Fixed AttributeError crash when assigning None to cached ↵Paulo
reverse relations.
2017-10-30Removed docs for obsolete compatibility checks.Adam Johnson
2017-10-30Refs #27318 -- Made DummyCache.set_many() return a list for consistency with ↵Adam Johnson
other backends.
2017-10-28Refs #28010 -- Allowed reverse related fields in SELECT FOR UPDATE .. OF.Ran Benita
Thanks Adam Chidlow for polishing the patch.
2017-10-28Fixed #28205 -- Doc'd that ModelAdmin.prepopulated_fields only works on add ↵Botond Beres
forms.
2017-10-28Fixed #28131 -- Corrected examples of using attribute lookups on the "perms" ↵Botond Beres
template variable.
2017-10-28Refs #28457 -- Removed unused .next-step CSS in ↵Tim Baxter
django/views/templates/default_urlconf.html.
2017-10-28Refs #28457 -- Updated the colors of the 'Congrats' page for WCAG AA compliance.Tim Baxter
2017-10-28Refs #21927 -- Removed docs for include()'s old instance_namespace parameter.Samir Shah
Follow up to ad393beeb71e8774e4bf9ad842b97022e50f1231.
2017-10-26Fixed #28747 -- Fixed typos in django/conf/global_settings.py comments.Duarte Fernandes
2017-10-25Fixed typo in docs/ref/models/querysets.txt.Botond Beres
2017-10-25Fixed #28395 -- Doc'd that QuerySet.first() can affect aggregation queries.Botond Beres
2017-10-25Fixed #28474 -- Made DurationField raise ValidationError for inputs that ↵Srinivas Reddy Thatiparthy
raised OverflowError.
2017-10-25Fixed #28689 -- Fixed unquoted table names in Subquery SQL when using OuterRef.Mariusz Felisiak
Regression in f48bc7c3dbd204eefb3c19016b1e4906ac26bee3.
2017-10-25Fixed #28737 -- Clarified {% cache %} tag's handling of arguments.Tim Graham
Thanks Tom Aratyn for the report.
2017-10-25Suggested LoginView rather than @login_required as an alternative to ↵Tim Graham
authenticate().
2017-10-25Fixed #28740 -- Added 'continent_code' and 'continent_name' in GeoIP2.city() ↵Ryan Verner
dict.
2017-10-24Fixed #28739 -- Fixed get_fixed_timezone() for negative timedeltas.medmunds
2017-10-24Added a link in README.rst for people new to IRC.Tim Graham
2017-10-24Fixed #28735 -- Fixed typo in django/views/templates/default_urlconf.html.Scot Hacker
2017-10-24Refs #28688 -- Updated a selenium test for admin's URLify.js change.Tim Graham
English words aren't removed if non-ASCII chars are present.
2017-10-23Fixed #28706 -- Moved AuthenticationFormn invalid login ValidationError to a ↵Jon Dufresne
method for reuse.
2017-10-23Removed Python 2 comment in ValidationError.Tim Graham
2017-10-22Refs #14807 -- Removed unneeded mark_safe callClaude Paroz
2017-10-21Fixed #28722 -- Made QuerySet.reverse() affect nulls_first/nulls_last.Tomer Chachamu
2017-10-21Refs #28721 -- Added test for variations of 'inf'/'infinity' as a template ↵Levi Payne
variable names. Fixed by 9ec7d8e514e09636b0ab4bcac74b5f7a5be335a3.
2017-10-21Fixed #28730 -- Fixed loss of precision for large integer literals in templatesClaude Paroz
Thanks Fraser Nevett for the report and Tim Graham for patch edits.
2017-10-21Removed unnecessary tuple()/list() calls.Mads Jensen