summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2017-08-11Removed outdated comment in Query.build_filter().Sergey Fedoseev
2017-08-10Fixed #28386 -- Made operations within non-atomic migrations honor the ↵Evan Grim
operation's atomic flag when migrating backwards.
2017-08-10Refs #18247 -- Fixed filtering on ↵Sergey Fedoseev
CombinedExpression(output_field=DecimalField()) annotation on SQLite.
2017-08-10Refs #28459 -- Improved performance of loading DecimalField on SQLite.Sergey Fedoseev
2017-08-10Refs #16043 -- Refactored internal fields value cache.Paulo
* Removed all hardcoded logic for _{fieldname}_cache. * Added an internal API for interacting with the field values cache. Thanks carljm and MarkusH for support.
2017-08-10Refs #28459 -- Made Oracle get_db_converters() return converter for empty ↵Sergey Fedoseev
strings only when it's needed.
2017-08-09Simplified Float/DecimalField.validate() with math.isfinite().Srinivas Reddy Thatiparthy
2017-08-09Simplified SQLite converter for bool type.Sergey Fedoseev
2017-08-09Fixed argument name in call_command() docstring.Raúl Pedro Fernandes Santos
Follow up to 8f6a1a15516629b30e2fa2c48d5e682f7955868c.
2017-08-09Refs #4518 -- Removed handling of empty strings in typecast_decimal().Sergey Fedoseev
It's unclear if the original change was needed, but it seems unneeded now. Reverted 6fc10f50b0c9b877fffcad4893056cb91fa66b4f.
2017-08-08Refs #23766 -- Added tests for CursorWrapper.callproc().Mariusz Felisiak
Thanks Tim Graham for the review.
2017-08-08Refs #28459 -- Improved performance of sql.compiler.cursor_iter().Sergey Fedoseev
2017-08-08Fixed #28465 -- Unified index SQL creation in DatabaseSchemaEditorClaude Paroz
Thanks Tim Graham for the review.
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-07Refs #28459 -- Improved performance of SQLCompiler.results_iter().Sergey Fedoseev
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 -- 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-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-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-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-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 #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-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-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-25Removed obsolete references to add_to_query().Sergey Fedoseev
Support for it was removed in d3f00bd5706b35961390d3814dd7e322ead3a9a3.
2017-07-24Fixed #28321 -- Prevented FormSet.full_clean() from adding errors from ↵Windson yang
deleted forms.