summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2017-07-15[1.11.x] Fixed #28399 -- Fixed QuerySet.count() for union(), difference(), an...Florian Apolloner
2017-07-10[1.11.x] Fixed #28378 -- Fixed union() and difference() when combining with a...Mariusz Felisiak
2017-06-13[1.11.x] Refs #23853 -- Updated sql.query.Query.join() docstring.Tim Graham
2017-06-13[1.11.x] Fixed #28293 -- Fixed union(), intersection(), and difference() when...Mariusz Felisiak
2017-06-08[1.11.x] Fixed #28282 -- Fixed class-based indexes name for models that only ...Jon Dufresne
2017-06-05[1.11.x] Fixed #28269 -- Fixed Model.__init__() crash on models with a field ...Adam Johnson
2017-06-01[1.11.x] Fixed #28242 -- Moved ImageField file extension validation to the fo...Manatsawin Hanmongkolchai
2017-05-30[1.11.x] Fixed #28199 -- Fixed Subquery generating unnecessary/invalid CAST.Tim Graham
2017-05-27[1.11.x] Fixed #28222 -- Allowed settable properties in QuerySet.update_or_cr...Alex
2017-05-19[1.11.x] Fixed #28210 -- Fixed Model._state.adding on MTI parent model after ...Tim Graham
2017-05-11[1.11.x] Fixed #28188 -- Fixed crash when pickling model fields.Tim Graham
2017-05-06[1.11.x] Fixed #28062 -- Added a setting to disable server-side cursors on Po...François Freitag
2017-05-05[1.11.x] Fixed #28175 -- Fixed __in lookups on a foreign key when using the f...Tim Graham
2017-05-04[1.11.x] Fixed #27554 -- Fixed prefetch_related() crash when fetching relatio...François Freitag
2017-05-03[1.11.x] Fixed #28166 -- Fixed Model._state.db on MTI parent model after savi...Tim Graham
2017-04-23[1.11.x] Fixed #28101 -- Fixed a regression with nested __in subquery lookups...Simon Charette
2017-04-20[1.11.x] Fixed #28091 -- Re-raised original exception when closing cursor cle...François Freitag
2017-04-19[1.11.x] Fixed #28096 -- Allowed prefetch calls with ModelIterable subclassesClaude Paroz
2017-04-10[1.11.x] Fixed #28047 -- Fixed QuerySet.filter() crash when it uses the name ...Tim Graham
2017-03-30[1.11.x] Refs #18247 -- Fixed SQLite QuerySet filtering on decimal result of ...Sergey Fedoseev
2017-03-28[1.11.x] Refs #18974 -- Added stacklevel for permalink() deprecation.Tim Graham
2017-03-23[1.11.x] Fixed #27969 -- Fixed models.Field.formfield() setting 'disabled' fo...Kapil Garg
2017-03-21[1.11.x] Fixed #27915 -- Allowed Meta.indexes to be defined in abstract models.Tim Graham
2017-03-18[1.11.x] Fixed #27935 -- Fixed crash with BrinIndex name > 30 characters.Mads Jensen
2017-03-14[1.11.x] Used constant instead of hard-coded value for max index name lengthMads Jensen
2017-03-01[1.11.x] Fixed #27862 -- Fixed incorrectly quoted table aliases in Subquery SQL.Matthew Schinckel
2017-02-20[1.11.x] Fixed typo in DurationField's docstring.Alexey Rogachev
2017-02-16[1.11.x] Fixed #27828 -- Fixed a crash when subtracting Integer/DurationField...Vytis Banaitis
2017-02-11[1.11.x] Fixed #27742 -- Reverted "Fixed #24607 -- Serialized natural keys in...Tim Graham
2017-02-10[1.11.x] Refs #27148 -- Fixed UUIDField.to_python(None) crash.ClairePhila
2017-01-31[1.11.x] Fixed #27800 -- Fixed QuerySet.annotate(Length(...)).distinct() crash.Lex Berezhny
2017-01-25[1.11.x] Removed unused variables that are overwritten.Mads Jensen
2017-01-16Refs #25809 -- Made a few late review comments for BrinIndex.Mads Jensen
2017-01-16Fixed #25307 -- Fixed QuerySet.annotate() crash with conditional expressions.Josh Smeaton
2017-01-16Fixed #27736 -- Used decorators for lookup registration.Mads Jensen
2017-01-15Fixed #25809 -- Added BrinIndex support in django.contrib.postgres.Mads Jensen
2017-01-14Fixed #27149 -- Added Subquery and Exists database expressions.Matthew Schinckel
2017-01-14Fixed #27718 -- Added QuerySet.union(), intersection(), difference().Florian Apolloner
2017-01-14Refs #16614 -- Prevented database errors from being masked by cursor close.François Freitag
2017-01-11Refs #16614 -- Made QuerySet.iterator() use server-side cursors on PostgreSQL.François Freitag
2017-01-03Fixed #25912 -- Added binary left/right shift operators to F expressions.anabelensc
2016-12-30Fixed #27458 -- Fixed invalid sequence/index names when using "USER"."TABLE" ...Andrew Nester
2016-12-29Fixed #27615 -- Used timedeltas as arguments to Oracle database driver.Mariusz Felisiak
2016-12-29Removed unused enumerate.Florian Apolloner
2016-12-28Fixed #27651 -- Allowed M2M to concrete and proxy through model.Tim Graham
2016-12-24Fixed #27498 -- Fixed filtering on annotated DecimalField on SQLite.Peter Inglesby
2016-12-23Used @cached_property in RawQuerySet.Adam Chainz
2016-12-23Refs #27624 -- Made QuerySet._prefetch_related_lookups immutable.Adam Chainz
2016-12-23Refs #18823 -- Corrected field name in an m2m manager error message.Andrey Kuzminov
2016-12-20Removed unneeded values in NullBooleanField.formfield().Tim Graham