summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2019-04-18Fixed typos in docs, comments, and exception messages.Ville Skyttä
2019-04-18Fixed #30335, #29139 -- Fixed crash when ordering or aggregating over a neste...can
2019-04-17Fixed #30191 -- Selected only referenced fields during cascade deletion.Simon Charette
2019-04-17Refs #18676 -- Enabled fast-delete for m2m_changed senders.Simon Charette
2019-04-16Fixed #30368 -- Fixed prefetch_related() for GenericForeignKey when PK is als...Vinny Do
2019-04-15Refs #23758 -- Used RecursionError instead of RuntimeError to raise nested su...Simon Charette
2019-04-15Refs #27149 -- Based recursive nested subquery detection on sys.getrecursionl...Simon Charette
2019-04-15Fixed #30325 -- Reverted "Fixed #29725 -- Removed unnecessary join in QuerySe...Mariusz Felisiak
2019-04-14Fixed #30343 -- Fixed prefetch_related() for GenericForeignKey when PK of rel...Mariusz Felisiak
2019-04-08Fixed #30330 -- Fixed setting of primary key to None during fast-delete.Florian Apolloner
2019-04-03Fixed typo in django/db/models/query_utils.py comment.David Beitey
2019-03-27Fixed #28621 -- Fixed crash of annotations with OuterRef.Mariusz Felisiak
2019-03-25Fixed #28431 -- Added a system check for BinaryField to prevent strings defau...Hasan Ramezani
2019-03-23Fixed #30246 -- Reused annotation aliases references in aggregation filters.Simon Charette
2019-03-23Refs #30188 -- Avoided GROUP BY when aggregating over non-aggregates.Simon Charette
2019-03-23Refs #30188 -- Prevented double annotation of subquery when aggregated over.Simon Charette
2019-03-23Fixed #30188 -- Fixed a crash when aggregating over a subquery annotation.Simon Charette
2019-03-23Fixed #21703 -- Fixed a crash when excluding a related field with a F().Simon Charette
2019-03-22Fixed #30280 -- Restored Model.get_FIELD_display()'s coercion of lazy strings.Matthias Kestenholz
2019-03-22Fixed #30271 -- Added the Sign database function.Nick Pope
2019-03-21Removed obsolete Lookup hook to prepare rhs expressions.Simon Charette
2019-03-21Refs #27149, #29542 -- Simplified subquery parentheses wrapping logic.Simon Charette
2019-03-21Refs #27149 -- Moved subquery expression resolving to Query.Simon Charette
2019-03-21Refs #27149 -- Made Subquery store Query instead of Queryset.Simon Charette
2019-03-21Fixed #30158 -- Avoided unnecessary subquery group by on aggregation.Simon Charette
2019-03-21Refs #30158 -- Added alias argument to Expression.get_group_by_cols().Simon Charette
2019-03-20Fixed #30240 -- Added SHA1, SHA224, SHA256, SHA384, and SHA512 database funct...Nick Pope
2019-03-14Fixed #30254 -- Allowed model metaclasses to access the attribute dict in __i...Matt Westcott
2019-03-07Fixed #29754 -- Added is_dst parameter to Trunc database functions.ahbk
2019-03-04Fixed #30232 -- Corrected expected format in invalid DurationField error mess...avas9366
2019-03-01Refs #29408 -- Cosmetic edits for validation of related fields and lookups in...Mariusz Felisiak
2019-03-01Fixed #29408 -- Added validation of related fields and lookups in model Meta....Hasan Ramezani
2019-02-21Refs #19544 -- Added a fast path for through additions if supported.Simon Charette
2019-02-21Refs #19544 -- Ignored auto-created through additions conflicts if supported.Simon Charette
2019-02-21Refs #19544 -- Extracted ManyRelatedManager.add() missing ids logic to a method.Simon Charette
2019-02-21Refs #28643 -- Added MD5 database function.Mariusz Felisiak
2019-02-14Fixed #29619 -- Added field names to some FieldErrors.Hasan Ramezani
2019-02-13Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis
2019-02-09Fixed #30027 -- Errored out on Window function usage if unsupported.Simon Charette
2019-02-09Simplified Window.as_sql().Sergey Fedoseev
2019-02-06Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope
2019-02-04Fixed #30156 -- Dropped support for SpatiaLite 4.1 and 4.2.Tim Graham
2019-01-30Refs #29444 -- Renamed DatabaseFeatures.can_return_id* to be generic for othe...Johannes Hoppe
2019-01-30Fixed #30076 -- Added Model.get_FOO_display() even if field's choices are empty.Joshua Cannon
2019-01-30Fixed E117 and F405 flake8 warnings.Mariusz Felisiak
2019-01-27Removed default mode='r' argument from calls to open().Jon Dufresne
2019-01-21Fixed #30106 -- Made order_with_respect_to updates use QuerySet.bulk_update().Simon Charette
2019-01-21Fixed #30120 -- Fixed invalid SQL in distinct aggregate.Simon Charette
2019-01-17Refs #28750 -- Removed suppport for model Meta.manager_inheritance_from_future.Tim Graham
2019-01-17Refs #11557 -- Removed the field_name keyword argument to QuerySet.earliest()...Tim Graham