summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
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-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-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-09Fixed #28591 -- Added an error message for createsuperuser --username= (blank).Hasan Ramezani
2017-10-09Fixed #28670 -- Added FETCH/OFFSET support on Oracle.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-10-09Fixed #28685 -- Fixed awkward wrapping of Select2 chips.Johannes Hoppe
2017-10-06Refs #24254 -- Removed unnecessary SQL AS clause in SQLCompiler.as_sql().Mariusz Felisiak
Incorrect on Oracle.
2017-10-06Fixed #28665 -- Change some database exceptions to NotImplementedError per ↵Simon Charette
PEP 249.
2017-10-05Fixed #28596 -- Fixed QuerySet.bulk_create() and cascade deletion crash on ↵Mariusz Felisiak
Oracle when using more than 65535 parameters. Thanks Tim Graham for the review.
2017-10-05Refs #27546 -- Replaced hardcoded class name in ForNode.__repr__().Mads Jensen
2017-10-04Refs #28670 -- Moved LIMIT/OFFSET SQL to DatabaseOperations.limit_offset_sql().Mariusz Felisiak
Thanks Tim Graham for the review.
2017-10-04Passed ignore_failures as a kwarg for readability in template tags.Tim Graham
Also removed unused VariableDoesNotExist catching where failures are ignored.
2017-10-03Refs #28584 -- Removed unused DatabaseFeatures.can_share_in_memory_db.Tim Graham
2017-10-03Fixed #28674 -- Removed unused check in QuerySet._batched_insert().Tim Graham
2017-10-03Fixed #28584 -- Dropped support for SQLite < 3.7.15.Tim Graham
2017-10-03Fixed #28675 -- Removed always True variable in ↵Tim Graham
SQLInsertCompiler.execute_sql() check. Unused since 7deb25b8dd5aa1ed02b5e30cbc67cd1fb0c3d6e6.
2017-10-02Fixed #28642 -- Added caching to parse_accept_lang_header().Tom
2017-10-02Fixed #28490 -- Removed unused code in admin.E108 check.Hunter Richards
2017-10-02Fixed #28652 -- Fixed a few comments in django/db/models/*.Дилян Палаузов
2017-10-02Refs #23919 -- Removed unneeded float()/int() calls.Mariusz Felisiak
2017-09-30Refs #27025, #28593 -- Fixed "invalid escape sequence" warnings in ↵Jon Dufresne
urls/resolvers.py.
2017-09-30Corrected typos in BaseDatabaseOperations exception messages.Mads Jensen
2017-09-30Removed always True if check in stringfilter decorator.Mads Jensen
2017-09-30Fixed #28654 -- Dropped support for SpatiaLite 4.0.Tim Graham
2017-09-29Fixed #27979 -- Made MySQL raise IntegrityError rather than OperationalError ↵Tim Graham
when saving negative numbers in PositiveInteger fields.
2017-09-29Refs #27067 -- Removed string_concat in django.utils.translation.__all__.Mariusz Felisiak
Undefined since 87d2240e6cc594a3bf28dfdb2ec023c54fb76ff7.
2017-09-29Used NotSupportedError for some unsupported database opreations per PEP 249.Mads Jensen
2017-09-29Refs #28492 -- Defined aggregates' output_field at the class level.Simon Charette
Missed in 08654a99bbdd09049d682ae57cc94241534b29f0.
2017-09-28Added missing punctuation in django/shortcuts.py docstring.Tim Graham
2017-09-28Merged hash() calls.Mariusz Felisiak
Thanks Simon Charette for the review.
2017-09-28Fixed #28629 -- Made tree.Node instances hashable.Mariusz Felisiak
Regression in 508b5debfb16843a8443ebac82c1fb91f15da687 which added Node.__eq__().
2017-09-28Simplified various __eq__() methods.Mads Jensen
2017-09-27Fixed #28626 -- Dropped support for PostgreSQL 9.3.Tim Graham
Thanks Simon Charette for the introspection changes.
2017-09-27Fixed #28562 -- Fixed DecimalValidator handling of positive exponent ↵Josh Schneier
scientific notation.
2017-09-27Fixed #28603 -- Clarified comment in collectstatic's collect().Ed Morley
2017-09-25Refs #27857 -- Replaced json.loads() ValueError exception catching with ↵Tim Graham
JSONDecodeError.
2017-09-25Fixed #27857 -- Dropped support for Python 3.4.Tim Graham
2017-09-25Removed DatabaseFeatures.supports_microsecond_precision.Tim Graham
MySQL 5.5 (refs #28552) was the last database to use it.
2017-09-25Fixed #28552 -- Dropped support for MySQL 5.5.Tim Graham