summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2015-09-07Fixed typos in django/db/models/query.py docstrings.Nick Pope
2015-09-05Fixed #24525 -- Fixed AssertionError in some complex queries.Tim Graham
2015-09-04Fixed #19263 -- Fixed crash when filtering using __in and an empty QuerySet.Tim Graham
2015-09-03Fixed #25058 -- Added GenericRelations with related_query_name to the admin's...sarthakmeh
2015-09-03Fixed #25335 -- Fixed regression where QuerySet.iterator() didn't return an i...Gavin Wahl
2015-09-01Removed obsolete TODO about moving CommaSeparatedIntegerField into contrib.Tim Graham
2015-09-01Fixed #25320 -- Reverted ManyToManyField.null to False for backwards compatib...Tim Graham
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-08-31Fixed #25252 -- Added friendly error message on incorrect .select_related() useY3K
2015-08-27Fixed #24201 -- Added order_with_respect_to support to GenericForeignKey.Alex Hill
2015-08-27Fixed #24590 -- Cached calls to swappable_setting.Markus Holtermann
2015-08-25Fixed #14217 -- Added validation for field name collision when using model in...sarthakmeh
2015-08-20Fixed #24951 -- Fixed AssertionError in delete queries involving a foreign/pr...Tim Graham
2015-08-15Fixed #24986 -- Added support for annotations in DISTINCT queries.Valentina Mukhamedzhanova
2015-08-15Fixed #25064 -- Allowed empty join columns.Alex Hill
2015-08-14Made Options.get_base_chain() always return a list.Valentina Mukhamedzhanova
2015-08-12Fixed #25172 -- Fixed check framework to work with multiple databases.Ion Scerbatiuc
2015-08-10Fixed #25160 -- Moved unsaved model instance data loss check to Model.save()Tim Graham
2015-08-03Removed unused Field.get_flatchoices() method.Tim Graham
2015-07-28Adjusted SQLCompiler.get_order_by()'s docstring return value.risicle
2015-07-28Fixed #18556 -- Allowed RelatedManager.add() to execute 1 query where possible.Tim Graham
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella
2015-07-27Fixed #25095 -- Fixed annotate() + values() group by bugMitchell Kotler
2015-07-23Fixed #12768 -- Fixed QuerySet.raw() regression on FK with custom db_column.Matt Johnson
2015-07-17Fixed #16501 -- Added an allow_unicode parameter to SlugField.Edward Henderson
2015-07-14Fixed #24716 -- Deprecated Field._get_val_from_obj()Thomas Stephenson
2015-07-13Fixed #24923 -- errored out nicely when using aggregates in order_by()Anssi Kääriäinen
2015-07-09Fixed #25081 -- Prevented DISTINCT ON ordering from being cleared in get().Simon Charette
2015-07-02Fixed #25054 -- Added app_label to swapped model AttributeErrorChris Lamb
2015-07-02Fixed #24997 -- Enabled bulk_create() on proxy modelsWilliam Schwartz
2015-06-30Fixed #18247 -- Added cast to NUMERIC for Decimals on sqliteMichael Tänzer
2015-06-30Fixed #24911 -- Made BaseManager.get_queryset() allow custom queryset args.Jonas Degrave
2015-06-29Removed unused condition for the abstract model in ensure_default_manager()Andriy Sokolovskiy
2015-06-29Fixed #23791 -- Corrected object type check for pk__in=qsAnssi Kääriäinen
2015-06-27Sorted imports in __init__.py files.Tim Graham
2015-06-27Fixed #24887 -- Removed one-arg limit from models.aggregateGreg Chapple
2015-06-26Fixed #25016 -- Reallowed non-ASCII values for ForeignKey.related_name on Pyt...薛丞宏
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
2015-06-19Fixed #24940 -- Made model managers hashableMarkus Holtermann
2015-06-18Fixed #24873 -- Prevented nested Prefetch objects from being overwritten.Gagaro
2015-06-15Fixed #24979 -- Removed usage of inspect.getargspec().Tim Graham
2015-06-15Removed django.utils.functional.total_ordering()Tim Graham
2015-06-15Fixed #24912 -- Fixed prefetch_related failure for UUIDField primary keysBrian King
2015-06-06Fixed #24859 -- Made QuerySet.get() with UUIDField raise TypeError on bad value.Cole Maclean
2015-06-06Fixed #24744 - Fixed relabeled_clone for the TransformAndriy Sokolovskiy
2015-06-05Fixed #24924 -- Join promotion for multiple Case expressionsMark Lavin
2015-06-05Minor edits to Greatest/Least docs; refs #24767.Tim Graham
2015-06-05Refs #24833 -- Forwardported some of "Fixed Case expressions with exclude()."Andriy Sokolovskiy
2015-06-05Fixed #24767 -- Added Greatest and Least expressionsIan Foote
2015-06-04Fixed #22316 -- Added time filters to TimeField on SQLite.Matthew Somerville