summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-01Fixed #26911 -- Removed NoReverseMatch silencing in RedirectView.Grzegorz Tężycki
2017-03-01Fixed typo in docs/howto/custom-template-tags.txt.albertoconnor
2017-03-01Removed PostgreSQL version detection for psycopg2 < 2.0.12.Tim Graham
2017-03-01Fixed a backends test with psycopg2 2.7.Tim Graham
2017-03-01Refs #27836 -- Fixed cleanup exception in file_storage test.Vytis Banaitis
TemporaryDirectory tries to delete the directory that was already removed.
2017-03-01Fixed typo in docs/releases/1.10.6.txt.Adam Johnson
2017-03-01Added release date for 1.10.6.Tim Graham
2017-03-01Fixed #27862 -- Fixed incorrectly quoted table aliases in Subquery SQL.Matthew Schinckel
Add aliases from resolved querysets to the parent query's external aliases to prevent those aliases from being quoted. Thanks to Vasily Stepanov for the report and Tim Graham for the review.
2017-02-28Fixed #27842 -- Added protocol kwarg to GenericSitemap.__init__().Alexey Opalev
2017-02-28Clarified HMAC usage in signing.dumps() docstring.Blake Griffith
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-02-28Removed obsolete references to form_for_instance().Tim Graham
2017-02-27Imported django.http classes instead of django.http.Asif Saifuddin Auvi
2017-02-27Refs #27802 -- Corrected BaseDatabaseOperations.datetime_extract/trunc_sql() ↵Tim Graham
docstrings.
2017-02-27Refs #27843 -- Fixed 'invalid escape sequence' warning in truncate_name().Tim Graham
2017-02-25Fixed #27176 -- Raised an exception for reentrant calls to apps.populate().François Freitag
Thanks to Aymeric Augustin, Harry Percival, and Tim Graham.
2017-02-25Added tests for contrib.sitemaps.GenericSitemap.chex
2017-02-24Made a few queryset lookup examples consistent.Alexkane
2017-02-24Fixed #27836 -- Allowed FileSystemStorage.delete() to remove directories.chillaranand
2017-02-24Fixed #27873 -- Fixed crash in setup_test_environment() if ALLOWED_HOSTS is ↵Chris Lamb
a tuple. Regression in 17e661641ddaf8266e7430d83cfb2039abc55df7
2017-02-24Refs #22144 -- Added test for QuerySet.bulk_create() with long non-ASCII text.Mariusz Felisiak
2017-02-24Refs #25187 -- Fixed AuthBackend.authenticate() compatibility for signatures ↵Tim Graham
that accept a request kwarg.
2017-02-24Fixed #27874 -- Fixed URL namespace warning (urls.W005) for nested namespaces.Chris Lamb
2017-02-24Fixed #27879 -- Fixed crash if enclosures aren't provided to ↵Pavlo Kapyshin
Atom1Feed.add_item(). Regression in 75cf9b5ac031feb8f94271c9906157c921a14520
2017-02-23Refs #11964 -- Made Q objects deconstructible.Ian Foote
2017-02-23Refs #11964, #26167 -- Made Expressions deconstructible.Ian Foote
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-02-23Fixed #27878, refs #23919 -- Used python3 shebangs.Chris Lamb
2017-02-23Completed 1.10.6 release noteClaude Paroz
2017-02-23Fixed #27868 -- Filtered locale path subdirectoriesClaude Paroz
Thanks Tim Graham for the review.
2017-02-23Fixed #25619 -- Made runserver serve with HTTP 1.1 protocolClaude Paroz
Thanks Tim Graham for the review.
2017-02-22Completed test coverage for django.utils.encoding.Tim Graham
2017-02-22Refs #27851 -- Clarified that admin.site.urls can't be passed to include().Tim Graham
2017-02-22Fixed typos in code comments.Anton Samarchyan
2017-02-22Updated Thai (th) locale formats.Manatsawin Hanmongkolchai
2017-02-22Updated Bengali (bn) locale formats.Asif Saifuddin Auvi
2017-02-22Fixed #27870 -- Cleaned up ManagementUtility.autocomplete().Phil Bazun
2017-02-21Used "0" ip shortcut for runserver example.Timothy Allen
2017-02-21Refs #26285 -- Removed postgresql's unused ↵Tim Graham
DatabaseOperations.fulltext_search_sql(). Should have been removed in 5139832398624be75ee5361a6fac9348fdb61093.
2017-02-21Fixed #27856 -- Improved accuracy of date subtraction on PostgreSQL.Vytis Banaitis
Accuracy was incorrect when dates differ by a month or more.
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-20Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257.Anton Samarchyan
2017-02-20Refs #23151 -- Removed RegexField's unused error_message parameter.Tim Graham
Should have been removed in b6ea1961eb6816dee4370fb0ebd49dba29478db1.
2017-02-20Fixed #27850 -- Made RelatedFieldWidgetWrapper call render() of the wrapped ↵Collin Anderson
widget.
2017-02-20Fixed typo in DurationField's docstring.Alexey Rogachev
2017-02-17Fixed #27308 -- Fixed BytesWarnings in the test suite.Tim Graham
2017-02-17Refs #27656 -- Updated django.template/tag docstring verbs according to PEP 257.Anton Samarchyan
2017-02-17Fixed #27843 -- Fixed truncate_name() when the name contains a username.Mariusz Felisiak
2017-02-16Added tests for db.backends.utils.truncate_name().Mariusz Felisiak
2017-02-16Fixed #27828 -- Fixed a crash when subtracting Integer/DurationField from ↵Vytis Banaitis
DateField on Oracle/PostgreSQL.