summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-12-20Fixed #28932 -- Prevented Oracle from truncating trailing zeros in the ↵Sergey Fedoseev
fractional part of DecimalField. Fixes the test added in 6fd6d8383f48ea2fe4e058725fa30529a083e9a5. Regression in 7c1f3901bcdabb1340a621e7df9b24f3acd0d6f3.
2017-12-20Fixed #28934 -- Prevented Cast from truncating microseconds on Oracle.Mariusz Felisiak
2017-12-20Refs #25181 -- Updated timezone.now() docs about obtaining the time in the ↵Sergey Fedoseev
current time zone.
2017-12-19Fixed #28727 -- Fixed Cast crash on SQLite when casting a Python ↵Mariusz Felisiak
date/datetime to Date/DateTimeField.
2017-12-19Simplified and improved performance of floatformat filter.Mariusz Felisiak
Thanks Sergey Fedoseev for the review.
2017-12-18Fixed #25277 -- Restored test dependency to the original python-memcached.Tim Graham
2017-12-18Fixed #28929 -- Corrected QUnit examples.weijunji
2017-12-18Fixed #28938 -- Corrected Python compatibility in the tutorial.Daniel Hepper
2017-12-16Removed unused DatabaseOperations.date_interval_sql() on Oracle.Sergey Fedoseev
Unused since 5ca82e710e2f92b8c5114492205c8764918407d3.
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-12Simplified SQLite converter for bool type.Sergey Fedoseev
2017-12-12Fixed #28896 -- Reallowed filtering a queryset with GeometryField=None.Sergey Fedoseev
Regression in 58da81a5a372a69f0bac801c412b57f3cce5f188.
2017-12-12Refs #27985 -- Reallowed using __exact=None as an alias for __isnull=True if ↵Sergey Fedoseev
a custom lookup class with lookup_name != None is registered as the exact lookup. Regression in 58da81a5a372a69f0bac801c412b57f3cce5f188 and prerequisite for refs #28896.
2017-12-11Fixed #28874 -- Prevented double escaping of errors on hidden form fields.Daniil
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
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-08Corrected type of MESSAGE_TAGS setting override in tests.Nick Pope
2017-12-08Refs #27849 -- Removed empty Q() hack in filtered Aggregate.as_sql().Simon Charette
This required allowing WhereNode to be provided as When(condition). This was made possible by cf12257db23fa248c89a3da3f718aa01a50ca659.
2017-12-08Made session loading in cached_db engine more DRY.Jozef
2017-12-08Improved performance of loading DateTimeField on Oracle and MySQL.Sergey Fedoseev
2017-12-08Simplified widgets.Select._choice_has_empty_value().Sergey Fedoseev
2017-12-07Fixed #28906 -- Removed unnecessary bool() calls.Tim Graham
2017-12-07Fixed #28907 -- Removed unnecessary if statements.Tim Graham
2017-12-07Fixed #28791 -- Allowed commands that don't require settings to work if the ↵geekodour
DJANGO_SETTINGS_MODULE doesn't exist.
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-07Refs #23919 -- Replaced super() calls for old-style classes.Nick Pope
2017-12-07Fixed import in docs/ref/models/conditional-expressions.txt example.Mohammad Esmaeilbeygi
2017-12-06Fixed #28893 -- Removed unnecessary dict.items() calls.Tim Graham
2017-12-06Fixed #28870 -- Added support for functools.partialmethod serialization in ↵Sergey Fedoseev
migrations.
2017-12-06Simplified BaseModelAdmin.lookup_allowed() a bit.Sergey Fedoseev
2017-12-06Fixed #28877 -- Made ordinal template filter results more localizable.Tzu-ping Chung
Marked the whole pattern (e.g. "{value}th") as translatable, instead of just this suffix, so that languages not using suffixes for ordinals can use this tag.
2017-12-06Added "Python 3 Only" trove classifier.Nick Pope
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 #28873 -- Used dict.setdefault() to set model and form field defaults.Дилян Палаузов
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-12-04Simplified django.utils.cache.get_max_age().Jozef
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-02Refs #28871 -- Fixed admin_views selenium test failure.Tim Graham
2017-12-02Added release dates for 2.0 and 1.11.8.Tim Graham