summaryrefslogtreecommitdiff
path: root/django/db/models
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34570 -- Silenced noop deferral of many-to-many and GFK.Simon Charette2023-05-171-1/+9
* Fixed #34539 -- Restored get_prep_value() call when adapting JSONFields.Julie Rymer2023-05-161-0/+2
* Fixed #470 -- Added support for database defaults on fields.Ian Foote2023-05-126-4/+114
* Fixed #34558 -- Fixed QuerySet.bulk_create() crash with Now() on Oracle.Mariusz Felisiak2023-05-111-0/+5
* Fixed #34554 -- Fixed Reverse(Value(…)) crash on Oracle.Mariusz Felisiak2023-05-101-1/+2
* Removed obsolete docstring from Field.db_returning.Lily Foote2023-05-101-4/+1
* Refs #27236 -- Made more cosmetic edits to Meta.index_together deprecation.Mariusz Felisiak2023-05-051-2/+1
* Fixed #34517 -- Avoided connection post_init signal to ImageField without wid...Orhan Hirsch2023-05-031-5/+4
* Refs #31369 -- Improved hint message in NullBooleanField's deprecation warning.Paul Brown2023-05-021-1/+1
* Fixed #33759 -- Avoided unnecessary subquery in QuerySet.delete() with self-r...4the4ryushin2023-05-011-1/+4
* Refs #33766 -- Removed sql.Query.build_filtered_relation_q().Simon Charette2023-04-242-32/+15
* Refs #33766 -- Removed unused Join.equals().Simon Charette2023-04-241-7/+0
* Fixed #33766 -- Resolved FilteredRelation.condition at referencing time.Simon Charette2023-04-243-48/+58
* Refs #16055 -- Deprecated get_joining_columns()/get_reverse_joining_columns()...David Wobrock2023-04-183-0/+31
* Fixed #16055 -- Fixed crash when filtering against char/text GenericRelation ...David Wobrock2023-04-183-11/+33
* Fixed #34480 -- Fixed crash of annotations with Chr().Jacob Walls2023-04-111-0/+1
* Fixed #34464 -- Fixed queryset aggregation over group by reference.Simon Charette2023-04-071-0/+3
* Fixed #34458 -- Fixed QuerySet.defer() crash on attribute names.Simon Charette2023-04-051-1/+2
* Fixed #34450 -- Fixed multi-valued JOIN reuse when filtering by expressions.Simon Charette2023-04-041-1/+1
* Fixed #34443 -- Fixed filtering by transforms on reverse relations.Mariusz Felisiak2023-03-281-0/+6
* Refs #29799 -- Added field instance lookups to suggestions in FieldErrors.Mariusz Felisiak2023-03-281-1/+1
* Fixed #34437 -- Made values() resolving error mention selected annotations.Simon Charette2023-03-251-5/+10
* Fixed #28553 -- Fixed annotation mismatch with QuerySet.values()/values_list(...David Wobrock2023-03-241-6/+11
* Fixed #34388 -- Allowed using choice enumeration types directly on model and ...T. Franzel2023-03-211-0/+3
* Fixed some typos in comments, docstrings, and tests.Liyang Zhang2023-03-201-1/+1
* Fixed #34421 -- Fixed QuerySet.update() on querysets in descending order by a...hb6h0572023-03-181-1/+8
* Refs #28329 -- Fixed Cast() with ForeignKey to integer fields on MySQL.David Wobrock2023-03-141-0/+3
* Fixed #27397 -- Prevented integer overflows on integer field lookups.Simon Charette2023-03-091-4/+39
* Fixed #34378 -- Made QuerySet.in_bulk() not clear odering when id_list is pas...Ekaterina Vahrusheva2023-03-031-2/+2
* Fixed #34368 -- Made subquery raise NotSupportedError when referencing outer ...Simon Charette2023-02-272-1/+6
* Fixed #34372 -- Fixed queryset crash on order by aggregation using OrderBy.Simon Charette2023-02-271-0/+2
* Fixed #34338 -- Allowed customizing code of ValidationError in BaseConstraint...Xavier Fernandez2023-02-231-11/+51
* Refs #33829 -- Added violation_error_message to constraints' __repr__().Xavier Fernandez2023-02-231-2/+14
* Fixed #34355 -- Deprecated passing positional arguments to BaseConstraint.Xavier Fernandez2023-02-221-3/+24
* Fixed #34346 -- Ordered selected expressions by position.Simon Charette2023-02-201-8/+35
* Refs #34176 -- Adjusted group by position variables naming to follow SQL spec.Simon Charette2023-02-181-5/+5
* Fixed #34280 -- Allowed specifying different field values for create operatio...tschilling2023-02-141-7/+15
* Fixed #34319 -- Fixed Model.validate_constraints() crash on ValidationError w...Mariusz Felisiak2023-02-081-1/+4
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-015-6/+2
* Fixed #34254 -- Fixed return value of Exists() with empty queryset.Raj Desai2023-01-261-0/+1
* Fixed #34291 -- Fixed Meta.constraints validation crash on UniqueConstraint w...Mariusz Felisiak2023-01-261-5/+7
* Fixed #34227 -- Fixed QuerySet.select_related() with multi-level FilteredRela...朱穆穆2023-01-241-1/+8
* Fixed #34192 -- Preserved callable storage when it returns default_storage.Matt Westcott2023-01-231-2/+3
* Fixed #34267 -- Fixed sliced QuerySet.union() crash.Francesco Panico2023-01-201-3/+0
* Refs #34233 -- Used @functools.cache.Nick Pope2023-01-182-2/+2
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-183-4/+3
* Refs #34233 -- Used types.NoneType.Nick Pope2023-01-183-6/+9
* Refs #33543 -- Made Expression.asc()/desc() and OrderBy raise ValueError when...Mariusz Felisiak2023-01-171-12/+1
* Refs #31486 -- Removed ability to pass unsaved model instances to related fil...Mariusz Felisiak2023-01-171-11/+1
* Refs #29984 -- Made QuerySet.iterator() without chunk_size raise ValueError a...Mariusz Felisiak2023-01-171-11/+3