Alexey Kotlyarov
|
a52a531a8b
|
Fixed #26398 -- Made FieldFile.open() respect its mode argument.
|
2016-03-23 10:05:26 -04:00 |
Kai Feldhoff
|
baa8b0ec39
|
Refs #25759 -- Fixed some Funcs to work if different database backends are used.
|
2016-03-21 20:20:29 -04:00 |
Jason Parrott
|
4c1c93032f
|
Fixed #26373 -- Fixed reverse lookup crash with a ForeignKey to_field in a subquery.
|
2016-03-19 17:54:29 -04:00 |
Tim Graham
|
f15f4b8bb6
|
Refs #26367 -- Removed obsolete _size cache on FieldField.
The _size attribute is used in File.size but FieldFile overrides it.
|
2016-03-17 10:25:17 -04:00 |
Claude Paroz
|
204e00c0c5
|
Fixed #26140 -- Suppressed MySQL warning when inserting binary content
Thanks Tim Graham for the review.
|
2016-03-14 18:08:13 +01:00 |
Tim Graham
|
4f0cd0fd16
|
Fixed #26324 -- Fixed DurationField with fractional seconds on SQLite.
|
2016-03-10 12:18:29 -05:00 |
Tim Graham
|
359be4460e
|
Refs #19527 -- Fixed SQL compiler regression causing Oracle failure.
|
2016-03-05 14:02:35 -05:00 |
Simon Charette
|
c92123cc1d
|
Fixed #26226 -- Made related managers honor the queryset used for prefetching their results.
Thanks Loïc for the suggested improvements and Tim for the review.
|
2016-03-02 16:10:18 -05:00 |
Marc Tamlyn
|
8ddc79a799
|
Fixed #26285 -- Deprecated the MySQL-specific __search lookup.
|
2016-03-02 14:41:56 -05:00 |
acrefoot
|
04240b2365
|
Refs #19527 -- Allowed QuerySet.bulk_create() to set the primary key of its objects.
PostgreSQL support only.
Thanks Vladislav Manchev and alesasnouski for working on the patch.
|
2016-03-02 14:29:09 -05:00 |
Simon Charette
|
0223e213dd
|
Fixed #26186 -- Documented how app relative relationships of abstract models behave.
This partially reverts commit bc7d201bdb .
Thanks Tim for the review.
Refs #25858.
|
2016-02-29 22:07:05 -05:00 |
Adam Chainz
|
6a383f773a
|
Removed unused 'Between' lookup.
It was added in 20bab2cf9d and stopped being
used for `Range` in 00aa562884 when
`bilateral` was added to `Transform`.
|
2016-02-29 08:00:04 -05:00 |
chenesan
|
b84f5ab4ec
|
Fixed #26230 -- Made default_related_name affect related_query_name.
|
2016-02-27 08:48:32 -05:00 |
Attila Tovt
|
5e2c4d7afb
|
Fixed #26264 -- Fixed prefetch_related() crashes with values_list(flat=True)
|
2016-02-26 19:26:15 -05:00 |
Adam Chainz
|
ef33bc2d4d
|
Fixed #25279 -- Made prefetch_related_objects() public.
|
2016-02-26 14:55:01 -05:00 |
Simon Charette
|
766afc22a1
|
Fixed #24793 -- Unified temporal difference support.
|
2016-02-26 12:25:12 -05:00 |
Edwar Baron
|
eb44172760
|
Fixed #25811 -- Added a helpful error when making _in queries across different databases.
|
2016-02-26 07:31:56 -05:00 |
Tim Graham
|
70d3f81ca4
|
Fixed #26233 -- Fixed invalid reSt in models.Q docstring.
|
2016-02-18 08:45:55 -05:00 |
Tim Graham
|
004ba0f99e
|
Removed unneeded hint=None/obj=None in system check messages.
|
2016-02-12 13:01:25 -05:00 |
Markus Holtermann
|
18afd50a2b
|
Updated allow_migrate() signature in check framework tests
|
2016-02-12 14:31:27 +11:00 |
Anssi Kääriäinen
|
46ecfb9b3a
|
Fixed #26196 -- Made sure __in lookups use to_field as default.
Thanks Simon Charette for the test.
|
2016-02-11 11:09:08 -05:00 |
ZachLiuGIS
|
04e13c8913
|
Fixed #26179 -- Removed null assignment check for non-nullable foreign key fields.
|
2016-02-11 10:07:39 -05:00 |
Anssi Kääriäinen
|
353aecbf8c
|
Fixed #26153 -- Reallowed Q-objects in ForeignObject.get_extra_descriptor_filter().
|
2016-02-11 08:59:43 -05:00 |
Brobin
|
dca8b916ff
|
Fixed #26154 -- Deprecated CommaSeparatedIntegerField
|
2016-02-10 17:57:43 -05:00 |
Simon Charette
|
a325fb1f9b
|
Fixed #26162 -- Checked query name clashes of hidden relationships.
Although reverse accessor clashes should be skipped query name can't be hidden.
Thanks to Ian Foote and Tim Graham for the review.
|
2016-02-08 09:59:27 -05:00 |
Tim Graham
|
10a162809f
|
Refs #24007 -- Removed an apps.populate() call in model unpickling that can cause deadlocks.
|
2016-02-08 08:28:48 -05:00 |
James Pulec
|
f05722a08a
|
Fixed #25354 -- Added class/app_label interpolation for related_query_name.
|
2016-01-28 11:10:47 -05:00 |
François Freitag
|
bdbe50a491
|
Fixed #25546 -- Prevented duplicate queries with nested prefetch_related().
|
2016-01-26 07:20:13 -05:00 |
userimack
|
60586dd737
|
Fixed #26125 -- Fixed E731 flake warnings.
|
2016-01-25 14:23:43 -05:00 |
Joshua Phillips
|
16baec5c8a
|
Fixed #25910 -- Rejected read-only property names in model constructors.
|
2016-01-22 13:27:11 -05:00 |
Anssi Kääriäinen
|
ee596888e1
|
Fixed #26092 -- Fixed QuerySet.order_by() regression with an M2M through model.
|
2016-01-20 19:13:05 -05:00 |
Simon Charette
|
bc7d201bdb
|
Fixed #25858 -- Bound abstract model application relative relationships.
Thanks to Karl Hobley for the report and Markus, Shai, Aymeric for their input
and Tim for the review.
|
2016-01-11 12:23:23 -05:00 |
Anderson Resende
|
b5f8c81ce1
|
Fixed #26026 -- Fixed isinstance crash comparing EmptyQuerySet to non-QuerySet.
|
2016-01-07 10:57:05 -05:00 |
Simon Charette
|
7bb373e309
|
Refs #25746 -- Added a test utility to isolate inlined model registration.
Thanks to Tim for the review.
|
2016-01-06 20:00:07 -05:00 |
varunnaganathan
|
3eba9638ee
|
Fixed #25316 -- Fixed a crash with order_by() and values() after annotate().
|
2016-01-02 07:06:54 -05:00 |
Marten Kenbeek
|
16411b8400
|
Fixed #26013 -- Moved django.core.urlresolvers to django.urls.
Thanks to Tim Graham for the review.
|
2015-12-31 14:21:29 -05:00 |
Bryan Marty
|
62ca2dea04
|
Fixed #8065 -- Made id_list an optional argument for QuerySet.in_bulk().
|
2015-12-26 17:57:19 -05:00 |
Alexander Sosnovskiy
|
2a7ce34600
|
Fixed #14286 -- Added models.BigAutoField.
|
2015-12-25 20:01:31 -05:00 |
Varun Sharma
|
692d055890
|
Fixed #25984 -- Corrected RuntimeError message in ModelBase.__new__().
|
2015-12-24 16:44:58 -05:00 |
Chris Lamb
|
77b8d8cb6d
|
Discouraged use of /tmp with predictable names.
The use of predictable filenames in /tmp often leads to symlink attacks
so remove the most obvious use of them in the docs.
|
2015-12-24 09:54:33 -05:00 |
Luis San Pablo
|
a856555df2
|
Fixed #25981 -- Added need to update migrations to on_delete deprecation warning.
|
2015-12-24 08:08:22 -05:00 |
Tomo Otsuka
|
8b6974a685
|
Fixed #25972 -- Restored support for the isnull lookup with ForeignObject.
|
2015-12-24 07:33:55 -05:00 |
Ian Foote
|
86eccdc8b6
|
Fixed #25544 -- Removed duplicate ids in prefetch_related() queries.
|
2015-12-17 19:08:30 -05:00 |
Sergey Fedoseev
|
ed1bcf0515
|
Refs #25894 -- Fixed evaluation of zero-length slices of QuerySet.values() on Oracle.
|
2015-12-17 17:07:10 -05:00 |
Sergey Fedoseev
|
69b69f6d60
|
Fixed #25894 -- Fixed evaluation of zero-length slices of QuerySet.values().
|
2015-12-15 07:29:35 -05:00 |
Ed Bartosh
|
423b3afce4
|
Fixed #25939 -- Removed redundant transaction in QuerySet.update_or_create().
There is no need to wrap the save() call in transaction.atomic() as
it's already done down the call stack in Model.save_base().
|
2015-12-14 19:41:11 -05:00 |
Simon Charette
|
8035cee922
|
Fixed #25882 -- Prevented fast deletes matching no rows from crashing on MySQL.
Thanks to Trac aliases gerricom for the report, raphaelmerx for the
attempts to reproduce and Sergey Fedoseev and Tim for the review.
Refs #16891
|
2015-12-14 13:12:36 -05:00 |
Attila Tovt
|
6f229048dd
|
Fixed #25547 -- Made Model.refresh_from_db() update FileField's instance.
|
2015-12-05 17:23:13 -05:00 |
Alexander Sosnovskiy
|
b61eab18f7
|
Fixed #13774 -- Added models.Field.rel_db_type().
|
2015-12-04 07:55:41 -05:00 |
Josh Soref
|
93452a70e8
|
Fixed many spelling mistakes in code, comments, and docs.
|
2015-12-03 12:48:24 -05:00 |