summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2023-08-28[4.1.x] Fixed warnings per flake8 6.1.0.Mariusz Felisiak
2023-02-08[4.1.x] Fixed #34319 -- Fixed Model.validate_constraints() crash on Validatio...Mariusz Felisiak
2023-02-01[4.1.x] Refs #33476 -- Applied Black's 2023 stable style.David Smith
2023-01-31[4.1.x] Fixed E501 flake8 error.Mariusz Felisiak
2023-01-26[4.1.x] Fixed #34291 -- Fixed Meta.constraints validation crash on UniqueCons...Mariusz Felisiak
2022-11-22[4.1.x] Fixed #34171 -- Fixed QuerySet.bulk_create() on fields with db_column...DevilsAutumn
2022-11-22[4.1.x] Fixed #34177 -- Fixed QuerySet.bulk_create() crash on "pk" in unique_...Mariusz Felisiak
2022-11-08[4.1.x] Fixed #34139 -- Fixed acreate(), aget_or_create(), and aupdate_or_cre...Jon Janzen
2022-09-30[4.1.x] Fixed #33984 -- Reverted "Fixed #32980 -- Made models cache related m...Mariusz Felisiak
2022-09-13[4.1.x] Fixed #33996 -- Fixed CheckConstraint validation on NULL values.David Sanders
2022-09-08[4.1.x] Fixed #33992 -- Fixed queryset crash when aggregating over a group co...Simon Charette
2022-08-27[4.1.x] Fixed #33952 -- Reallowed creating reverse foreign key managers on un...David Wobrock
2022-08-09[4.1.x] Fixed #33902 -- Fixed Meta.constraints validation crash with F() expr...Mariusz Felisiak
2022-08-06[4.1.x] Fixed #33898 -- Fixed Window() expression crash with ArrayAgg().Mariusz Felisiak
2022-07-08[4.1.x] Fixed #33829 -- Made BaseConstraint.deconstruct() and equality handle...Stéphane "Twidi" Angel
2022-07-06[4.1.x] Refs CVE-2022-34265 -- Properly escaped Extract() and Trunc() paramet...Simon Charette
2022-07-04[4.1.x] Fixed CVE-2022-34265 -- Protected Trunc(kind)/Extract(lookup_name) ag...Mariusz Felisiak
2022-06-27[4.1.x] Fixed #33796 -- Fixed ordered combined queryset crash when used in su...Mariusz Felisiak
2022-06-23[4.1.x] Fixed #33799, Refs #31685 -- Added parameters for updating conflicts ...DhruvaPatil98
2022-06-17[4.1.x] Fixed #28897 -- Fixed QuerySet.update() on querysets ordered by annot...David Wobrock
2022-05-19[4.1.x] Fixed #33705 -- Fixed crash when using IsNull() lookup in filters.David Wobrock
2022-05-17[4.1.x] Updated source translation catalogs.Mariusz Felisiak
2022-05-13Fixed typo in Query.clone()'s docstring.非法操作
2022-05-12Fixed #33543 -- Deprecated passing nulls_first/nulls_last=False to OrderBy an...Mariusz Felisiak
2022-05-12Fixed #29538 -- Fixed crash of ordering by related fields when Meta.ordering ...Ed Rivas
2022-05-10Fixed #30581 -- Added support for Meta.constraints validation.Gagaro
2022-05-04Refs #30581 -- Added Q.check() hook.Gagaro
2022-05-04Refs #33646 -- Reduced sync_to_async hops on async QuerySet iteration.Simon Charette
2022-05-03Refs #30581 -- Added Q.flatten().Gagaro
2022-05-02Refs #33646 -- Made QuerySet.raw() async-compatible.Mariusz Felisiak
2022-05-02Refs #33646 -- Added RawModelIterable.Mariusz Felisiak
2022-05-02Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock
2022-04-29Refs #33413 -- Added collation to CharField/TextField's db_parameters.David Wobrock
2022-04-26Fixed #33646 -- Added async-compatible interface to QuerySet.Andrew Godwin
2022-04-26Fixed #33655 -- Removed unnecessary constant from GROUP BY clause for QuerySe...marcperrinoptel
2022-04-22Removed unnecessary variable in Index.create_sql().Hannes Ljungberg
2022-04-22Refs #31223 -- Added __class_getitem__() to ForeignKey.Collin Anderson
2022-04-21Fixed #33004 -- Made saving objects with unsaved GenericForeignKey raise Valu...sarahboyce
2022-04-19Refs #32226 -- Fixed JSON format of QuerySet.explain() on PostgreSQL when for...Mariusz Felisiak
2022-04-14Made select_for_update() don't raise TransactionManagementError on databases ...Mariusz Felisiak
2022-04-13Fixed DatabaseFeatures.supports_index_column_ordering and related tests with ...Mariusz Felisiak
2022-04-13Removed unnecessary tuple call in SQLInsertCompiler.David Smith
2022-04-12Fixed #24296 -- Made QuerySet.exists() clear selected columns for not sliced ...mgaligniana
2022-04-12Fixed #33626 -- Cleared cache when unregistering a lookup.Himanshu-Balasamanta
2022-04-11Fixed CVE-2022-28347 -- Protected QuerySet.explain(**options) against SQL inj...Mariusz Felisiak
2022-04-11Fixed CVE-2022-28346 -- Protected QuerySet.annotate(), aggregate(), and extra...Mariusz Felisiak
2022-04-07Fixed #33618 -- Fixed MTI updates outside of primary key chain.Simon Charette
2022-04-06Fixed #33471 -- Made AlterField operation a noop when changing "choices".sarahboyce
2022-03-31Fixed #33397 -- Corrected resolving output_field for DateField/DateTimeField/...Luke Plant
2022-03-31Refs #33397 -- Added register_combinable_fields().Luke Plant