summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2017-11-07Fixed #28585 -- Calculated admin's change form multipart context variable ↵Claude Paroz
from forms and formsets Thanks Tim Graham for the review.
2017-11-07Fixed #28719 -- Added a helpful exception if ↵Bjorn Kristinsson
MultipleObjectTemplateResponseMixin doesn't generate any template names.
2017-11-07Fixed #28720 -- Added HttpRequest.get_full_path_info().Jonas Haag
2017-11-07Fixed #28758 -- Fixed RangeMax/MinValueValidators crash with unbound ranges.Imran Iqbal
2017-11-07Fixed #28544 -- Made unlocalize template filter behave like {% localize off ↵Claude Paroz
%} tag Thanks Beda Kosata for the report and Tim Graham for the review.
2017-11-07Fixed #28663 -- Add a check for likely incorrectly migrated ↵Chris Lamb
django.urls.path() routes.
2017-11-07Refs #28518 -- Improved performance of assigning values to GeometryFields.Sergey Fedoseev
2017-11-07Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов
2017-11-06Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов
2017-11-06Fixed #28501 -- Fixed "python -m django runserver" crash.Yusuke Miyazaki
2017-11-04Simplified GeometryField.select_format().Sergey Fedoseev
2017-11-03Fixed #28571 -- Added a prompt to bypass password validation in createsuperuser.Tom
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-01Fixed #28749 -- Added subquery support for ArrayField's __in lookup.Michał Pasternak
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-30Fixed #28742 -- Fixed AttributeError crash when assigning None to cached ↵Paulo
reverse relations.
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-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-26Fixed #28747 -- Fixed typos in django/conf/global_settings.py comments.Duarte Fernandes
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 #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-24Fixed #28735 -- Fixed typo in django/views/templates/default_urlconf.html.Scot Hacker
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-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
2017-10-20Removed redundant inner imports.Mariusz Felisiak
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-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-18Fixed outdated comment in RelatedObjectDoesNotExist.Simon Charette
2017-10-18Fixed #28711 -- Fixed unordered_list template filter with lazy translations.Jonas Haag
2017-10-17Updated Basque (eu) locale formats.Eneko Illarramendi
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-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.