summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2014-11-27Fixed #23875 -- cleaned up query.get_count()Anssi Kääriäinen
2014-11-26Fixed #23801 -- Added warning when max_length is used with IntegerFieldMattBlack85
2014-11-26Fixed #23867 -- removed DateQuerySet hacksAnssi Kääriäinen
2014-11-26Adjusted a comment to reflect some app refactor changes.Simon Charette
2014-11-21Fixed #23889 -- Added more usage of quote_name_unless_alias() to avoid deprec...Collin Anderson
2014-11-21Fixed #23862 -- Made ManyToManyRel.get_related_field() respect to_field.Simon Charette
2014-11-20Fixed #23605 -- Fixed nested subquery regressionAnssi Kääriäinen
2014-11-20Fixed #23876 -- Removed dead code in SQLAggregateCompiler.Carl Meyer
2014-11-19Fixed #21794 -- Removed deprecation warning for abstract models outside an app.Carl Meyer
2014-11-18Deprecated calling a SQLCompiler instance.Carl Meyer
2014-11-17Moved bilateral transform fetching to models.lookupsAnssi Kääriäinen
2014-11-16Fixed #21612 -- Made QuerySet.update() respect to_fieldKaren Tracey
2014-11-16Renamed qn to compilerJosh Smeaton
2014-11-15Fixed #14030 -- Allowed annotations to accept all expressionsJosh Smeaton
2014-11-12Remove Field.get_validator_unique_lookup_type()Tim Graham
2014-11-12Removed extra enumerate() from Query.setup_joins()Anssi Kääriäinen
2014-11-12Fixed #22967 -- Made Model._do_update consistentJozef Knaperek
2014-11-12Improved Query.names_to_path docstringAnssi Kääriäinen
2014-11-11Simplified Query.build_lookup()Anssi Kääriäinen
2014-11-03Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos
2014-11-03Fixed #23420 - broken warning for unbound naive datetime objectsAndy Chosak
2014-10-28Fixed #23721 -- check_related_objects without calling __iter__Collin Anderson
2014-10-28Fixed #23493 -- Added bilateral attribute to TransformThomas Chaumeny
2014-10-21Fixed #23396 -- Ensured ValueQuerySets are not checked by check_related_objects.Gabe Jackson
2014-10-19Fixed #23684 -- Used correct package name for Pillow in Error hint.Nicholas Serra
2014-10-16Fixed #23664 -- Provided a consistent definition for OrderedSet.__bool__Thomas Chaumeny
2014-10-16Fixed #23659 -- Kept annotate() args orderingClaude Paroz
2014-10-09Fixed #23627 -- Allowed register_lookup to work as a decorator.Marc Tamlyn
2014-10-08Fixed #23555 -- Avoided suppressing IndexError in QuerySet.first() and .last()Artem Rizhov
2014-10-08Fixed #23611 -- update_or_create failing from a related managerLoic Bistuer
2014-10-04Fixed #22064 -- Add check for related_nameAndré Ericson
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
2014-09-26Fixed #23460 -- Added literal `%s` support to extra() QuerySets.Matt Robenolt
2014-09-25Fixed #23455 -- Forced related_name to be a unicode string during deconstruct...Markus Holtermann
2014-09-24Fixed #23550 -- Normalized get_queryset() of RelatedObjectDescriptorLoic Bistuer
2014-09-19Fixed #23443 -- Corrected erroneous FieldError message.Thomas Chaumeny
2014-09-16Fixed #23492 -- Restored F.__deepcopy__.Baptiste Mispelon
2014-09-16Fixed #19463 -- Added UUIDFieldMarc Tamlyn
2014-09-09Fixed #11775 -- Made ABSOLUTE_URL_OVERRIDES work with models that don't defin...Tim Graham
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-09-03Fixed #18757, #14462, #21565 -- Reworked database-python type conversionsMarc Tamlyn
2014-08-30Fixed #23370 -- defer() + select_related() crashed with inherited models.Akis Kesoglou
2014-08-29Fixed #23313 -- Corrected repr(RawQuery) with dict parameters.Andrew Torpedov
2014-08-14Fixed #23288: deconstruct() ignoring related_nameAndrew Godwin
2014-08-12Avoided creation of deferred model from another deferred modelAnssi Kääriäinen
2014-08-12Fixed #23001 -- Fixed mixing defer and annotationsJosh Smeaton
2014-08-11Fixed #16426 -- deletion of 1000+ objects with relations on SQLiteAnssi Kääriäinen
2014-08-11Fixed #23266 -- Prevented queries caused by type checking lookup valuesAnubhav Joshi
2014-08-11Fixed #23259 -- Corrected insertion order of extra() select_paramsRajiv Makhijani
2014-08-07Fixed flake8 warning.Tim Graham