index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
Age
Commit message (
Expand
)
Author
2026-03-30
[5.2.x] Applied Black's 2026 stable style.
Mariusz Felisiak
2026-02-24
[5.2.x] Bumped minimum isort version to 7.0.0.
Jacob Walls
2026-02-10
[5.2.x] Fixed #36903 -- Fixed further NameErrors when inspecting functions wi...
93578237
2026-02-03
[5.2.x] Refs CVE-2026-1312 -- Raised ValueError when FilteredRelation aliases...
Jacob Walls
2026-02-03
[5.2.x] Fixed CVE-2026-1312 -- Protected order_by() from SQL injection via al...
Jacob Walls
2026-02-03
[5.2.x] Fixed CVE-2026-1287 -- Protected against SQL injection in column alia...
Jake Howard
2025-12-31
[5.2.x] Refs #33647 -- Fixed silent data truncation in bulk_create on Postgres.
Simon Charette
2025-12-02
[5.2.x] Fixed CVE-2025-13372 -- Protected FilteredRelation against SQL inject...
Jacob Walls
2025-11-24
[5.2.x] Fixed #36751 -- Fixed empty filtered aggregation crash over annotated...
Simon Charette
2025-11-20
[5.2.x] Fixed #36748 -- Filtered non-standard placeholders from UNNEST queries.
Chris Wesseling
2025-11-05
[5.2.x] Refs CVE-2025-64459 -- Avoided propagating invalid arguments to Q on ...
Jacob Walls
2025-11-05
[5.2.x] Fixed CVE-2025-64459 -- Prevented SQL injections in Q/QuerySet via th...
Jacob Walls
2025-11-04
[5.2.x] Fixed #36704 -- Fixed system check error for proxy model with a compo...
Hal Blackburn
2025-10-14
[5.2.x] Fixed #36648, Refs #33772 -- Accounted for composite pks in first()/l...
Jacob Walls
2025-10-11
[5.2.x] Fixed #36646 -- Added compatibility for oracledb 3.4.0.
Simon Charette
2025-10-01
[5.2.x] Fixed CVE-2025-59681 -- Protected QuerySet.annotate(), alias(), aggre...
Mariusz Felisiak
2025-09-03
[5.2.x] Fixed CVE-2025-57833 -- Protected FilteredRelation against SQL inject...
Jake Howard
2025-08-29
[5.2.x] Fixed #36431 -- Returned tuples for multi-column ForeignObject in val...
SaJH
2025-08-05
[5.2.x] Fixed #36530 -- Extended fields.E347 to check for ManyToManyField inv...
jkhall81
2025-08-04
[5.2.x] Fixed #34871, #36518 -- Implemented unresolved lookups expression rep...
Simon Charette
2025-08-04
[5.2.x] Fixed #36198 -- Implemented unresolved transform expression replacement.
Simon Charette
2025-07-28
[5.2.x] Fixed #36522 -- Added support for filtering composite pks using a tup...
Simon Charette
2025-07-10
[5.2.x] Fixed #36502 -- Restored UNNEST strategy for foreign key bulk inserts...
Simon Charette
2025-06-30
[5.2.x] Fixed #36464 -- Fixed "__in" tuple lookup on backends lacking native ...
Simon Charette
2025-06-16
[5.2.x] Fixed #36453 -- Made When.condition resolve with for_save=False.
Clifford Gama
2025-06-06
[5.2.x] Fixed #36419 -- Ensured for_save was propagated when resolving expres...
Clifford Gama
2025-06-04
[5.2.x] Fixed #36432 -- Fixed a prefetch_related crash on related target subc...
Simon Charette
2025-06-03
[5.2.x] Fixed #36416 -- Made QuerySet.in_bulk() account for composite pks in ...
Jacob Walls
2025-05-23
[5.2.x] Fixed #36404 -- Fixed Aggregate.filter using OuterRef.
Adam Johnson
2025-05-19
[5.2.x] Fixed #36388 -- Made QuerySet.union() return self when called with no...
Colleen Dunlap
2025-05-16
[5.2.x] Fixed #36392 -- Raised ValueError when subquery referencing composite...
Jacob Walls
2025-05-12
[5.2.x] Fixed #36373 -- Fixed select_related() crash on foreign object for a ...
Simon Charette
2025-04-30
[5.2.x] Fixed #36358 -- Corrected introspection of composite primary keys on ...
Simon Charette
2025-04-30
[5.2.x] Refs #36052, #32234 -- Removed create_test_table_with_composite_prima...
Simon Charette
2025-04-30
[5.2.x] Fixed #36360 -- Fixed QuerySet.update() crash when referring annotati...
Simon Charette
2025-04-11
[5.2.x] Fixed #36288 -- Addressed improper handling of duplicates in values_l...
Simon Charette
2025-04-07
[5.2.x] Fixed #36301 -- Fixed select_for_update(of) crash when using values()...
Simon Charette
2025-04-05
[5.2.x] Fixed #36299 -- Prevented field selection on QuerySet.alias() after v...
Simon Charette
2025-04-04
[5.2.x] Fixed #36289 -- Fixed bulk_create() crash with nullable geometry fiel...
Simon Charette
2025-04-03
[5.2.x] Fixed #36290 -- Made TupleIn() lookup discard tuples containing None.
Simon Charette
2025-04-03
[5.2.x] Fixed #36292 -- Fixed crash when aggregating over a group mixing tran...
Simon Charette
2025-03-30
[5.2.x] Fixed warnings per flake8 7.2.0.
Mariusz Felisiak
2025-02-18
[5.2.x] Fixed #35167 -- Delegated to super() in JSONField.get_db_prep_save().
Jacob Walls
2025-02-18
[5.2.x] Fixed #36197 -- Fixed improper many-to-many count() and exists() for ...
Simon Charette
2025-02-16
[5.2.x] Fixed #35967 -- Deferred test suite fixtures serialization after all ...
Simon Charette
2025-02-15
[5.2.x] Refs #36181 -- Removed the obsolete SubqueryConstraint machinery.
Mariusz Felisiak
2025-02-15
[5.2.x] Fixed #36173 -- Stabilized identity of Concat with an explicit output...
Simon Charette
2025-02-13
[5.2.x] Fixed #36181 -- Allowed Subquery usage in __in lookups against compos...
Simon Charette
2025-02-11
[5.2.x] Fixed #36149 -- Allowed subquery values against tuple exact and in lo...
Simon Charette
2025-02-11
[5.2.x] Refs #36148 -- Relied on a feature switch to define tuple lookups sup...
Simon Charette
[next]