summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-08-08Fixed #28471 -- Clarified that Meta.indexes is preferred to index_together.Tim Graham
2017-08-08Fixed #28472 -- Optimized a jQuery selector in admin's actions.js.bc500
2017-08-08Refs #28459 -- Improved performance of ValuesIterable.Sergey Fedoseev
2017-08-07Removed unnecessary else in SelectDateWidget.id_for_lable().Srinivas Reddy Thatiparthy
2017-08-07Refs #28459 -- Improved performance of select_related() when model is ↵Sergey Fedoseev
prefetched from its parent.
2017-08-07Added newline at end of docs/faq/index.txt.Mads Jensen
2017-08-07Refs #28459 -- Improved performance of SQLCompiler.results_iter().Sergey Fedoseev
2017-08-07Fixed #28466 -- Clarified the definition of a lazy relationship.Tim Graham
2017-08-07Fixed #28457 -- Updated the design of the 'Congrats' page for new Django ↵Timothy Allen
projects. Developed by Timothy Allen and Chad Whitman of The Wharton School with shepherding from Aymeric Augustin and Collin Anderson.
2017-08-07Removed unnecessary else clause in TemplateStrings.get_template().Srinivas Reddy Thatiparthy
2017-08-07Removed unnecessary assignment in Oracle's ↵Srinivas Reddy Thatiparthy
FormatStylePlaceholderCursor._fix_for_params(). Obsolete since fae56427e1987ff8c8bd24d6331007f9c53e7abc.
2017-08-02Removed unused _combine() node argument from various combinable classes.Mariusz Felisiak
Unused since f59fd15c4928caf3dfcbd50f6ab47be409a43b01 (Combinable) and since its introduction in 2d877da85526bad0dad7fd6b1d56b1f924c0116a (SearchVectorCombinable/SearchQueryCombinable/SearchQuery).
2017-08-02Refs #7697 -- Tested escaping of safe strings in the technical 500 debug view.Tim Graham
Tests were omitted in the original commit: a56a226241f5808b2eaf1e4b5a155d35047b8a06.
2017-08-02Refs #7697 -- Removed unnecessary force_escape of technical 500 debug view ↵Tim Graham
"unicode hint". The test passes before and after the removal. unicode_hint will never be SafeText, so normal autoescaping is sufficient.
2017-08-02Refs #5046 -- Tested the 'unicode hint' in the technical 500 debug view.Tim Graham
2017-08-02Fixed #28441 -- Fixed GEOS version parsing with a commit hash at the end.Tim Graham
2017-08-02Refs #28459 -- Improved performance of Model.from_db() when fields are deferred.Sergey Fedoseev
2017-08-02Simplified check that pk is fetched in RawQuerySet.__iter__().Sergey Fedoseev
2017-08-01Removed unused DatabaseOperations.last_insert_id() on PostgreSQL.Mariusz Felisiak
Unused since 9eb2afddfa0165d69f3e506122c2aa2b68618591.
2017-08-01Fixed #28459 -- Improved performance of ValuesListIterable.Sergey Fedoseev
2017-08-01Fixed #28454 -- Simplifed use of Query.setup_joins() by returning a named tuple.Matthew Wilkes
2017-08-01Removed unneeded escape filter in templates where autoescaping is enabled.Tim Graham
2017-08-01Added stub release notes for 1.11.5.Tim Graham
2017-08-01Added release date for 1.11.4.Tim Graham
2017-08-01Refs #28370 -- Moved db converters deprecation warning to improve performance.Sergey Fedoseev
2017-07-31Fixed #27985 -- Fixed query for __exact=value when get_prep_value() converts ↵Sergey Fedoseev
value to None. Also fixed crash of .filter(field__transform=None).
2017-07-31Refs #20880 -- Removed non-cloning logic from Query.clone().Anssi Kääriäinen
2017-07-31Refs #20880 -- Removed non-cloning logic from QuerySet._clone().Anssi Kääriäinen
2017-07-31Fixed #28453 -- Made __exact=None lookup use transforms.Sergey Fedoseev
2017-07-31Removed a primary key value dependency in a multiple_database test.Tim Graham
Follow up to a51c4de1945be2225f20fad794cfb52d8f1f9236.
2017-07-31Avoided creating temporary lists for obtaining the first item.Sergey Fedoseev
2017-07-31Removed unneeded TruncBase.arity.Sergey Fedoseev
Uneeded since its introduction in 2a4af0ea43512370764303d35bc5309f8abce666.
2017-07-29Used assertRaisesMessage() to test Django's error messages.Mads Jensen
2017-07-29Avoided creation of temporary sets.Sergey Fedoseev
2017-07-29Fixed #28264 -- Made FilePathField sort files and directories when ↵Srinivas Reddy Thatiparthy
recursive=True.
2017-07-28Prevented query_utils.refs_expression() from looking for empty string in ↵Sergey Fedoseev
annotations map.
2017-07-27Fixed #28371 -- Fixed Cast() with CharField if the max_length argument isn't ↵Mariusz Felisiak
provided. Thanks Tim Graham for the review.
2017-07-27Fixed #28415 -- Clarified what characters ASCII/UnicodeUsernameValidator accept.Tim Graham
2017-07-27Fixed #28437 -- Added support for complex geometry expressions in GIS lookups.Sergey Fedoseev
2017-07-26Allowed database backends to specify data types for Cast().Mariusz Felisiak
A small refactor ahead of refs #28371.
2017-07-26Removed unused SpatialOperations.from_wkb.Tim Graham
Unused since its introduction in ff60c5f9de3e8690d1e86f3e9e3f7248a15397c8.
2017-07-26Improved test coverage for django.conf.Anton Samarchyan
2017-07-26Improved test coverage for django.contrib.sitemaps.Anton Samarchyan
2017-07-26Fixed #28363 -- Allowed naming the migration generated by squashmigrations.Melvyn Sopacua
2017-07-26Fixed #28433 -- Made GEOSGeometry.__eq__() work correctly with non-canonical ↵Sergey Fedoseev
EWKT string.
2017-07-26Replaced "not A== B" with "A != B" in docs/howto/writing-migrations.txt.Berker Peksag
2017-07-26Fixed #28436 -- Added support for distance lookups on MySQL.Sergey Fedoseev
2017-07-25Fixed #28432 -- Allowed geometry expressions to be used with distance lookups.Sergey Fedoseev
Distance lookups use the Distance function for decreased code redundancy.
2017-07-25Fixed #28435 -- Removed inaccurate warning about SECURE_HSTS_PRELOAD.Tim Graham
2017-07-25Removed obsolete references to add_to_query().Sergey Fedoseev
Support for it was removed in d3f00bd5706b35961390d3814dd7e322ead3a9a3.