summaryrefslogtreecommitdiff
path: root/django/db/models/sql
AgeCommit message (Expand)Author
2025-10-27Fixed #26434 -- Removed faulty clearing of ordering field when missing from e...Michal Mládek
2025-10-24Fixed #36674 -- Fixed memory leak in select_related().Ken Nzioka
2025-10-01Fixed CVE-2025-59681 -- Protected QuerySet.annotate(), alias(), aggregate(), ...Mariusz Felisiak
2025-09-22Fixed #35453 -- Made ManyToManyField.concrete False.Ryan P Kilby
2025-09-22Fixed #36480 -- Made values() resolving error mention unselected aliases.Shubham Singh
2025-09-19Refs #36152, #35667 -- Used skip_file_prefixes in alias deprecation warning.Jacob Walls
2025-09-19Fixed #36584, Refs #36149 -- Allowed subquery values against tuple in lookup ...사재혁
2025-09-14Refs #27222 -- Refreshed GeneratedFields values on save() initiated update.Simon Charette
2025-09-04Fixed #36481 -- Fixed QuerySet.update concrete fields check.Ryan P Kilby
2025-09-03Fixed CVE-2025-57833 -- Protected FilteredRelation against SQL injection in c...Jake Howard
2025-08-29Fixed #36431 -- Returned tuples for multi-column ForeignObject in values()/va...SaJH
2025-08-29Refs #36152 -- Suppressed duplicate warning when using "%" in alias via value...Jacob Walls
2025-08-28Refs #27222 -- Adapted RETURNING handling to be usable for UPDATE queries.Simon Charette
2025-08-07Fixed #36210, Refs #36181 -- Allowed Subquery usage in further lookups agains...Jacob Walls
2025-07-23Refs #36500 -- Corrected rewrapped long lines fixed via a script.Mike Edmunds
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2025-06-20Fixed #36152 -- Deprecated use of "%" in column aliases.Jacob Walls
2025-06-12Fixed #36442 -- Cloned FilteredRelation before rename_prefix_from_q.viliam mihalik
2025-05-16Fixed #36392 -- Raised ValueError when subquery referencing composite pk sele...Jacob Walls
2025-04-07Fixed #36301 -- Fixed select_for_update(of) crash when using values()/values_...Simon Charette
2025-04-05Fixed #36299 -- Prevented field selection on QuerySet.alias() after values().Simon Charette
2025-04-03Fixed #36292 -- Fixed crash when aggregating over a group mixing transforms a...Simon Charette
2025-03-31Refs #28909 -- Simplified code using unpacking generalizations.Aarni Koskela
2025-02-13Refs #36181 -- Removed the obsolete SubqueryConstraint machinery.Simon Charette
2025-02-11Fixed #36149 -- Allowed subquery values against tuple exact and in lookups.Simon Charette
2025-02-06Fixed #35677 -- Avoided non-sticky filtering of prefetched many-to-many.Simon Charette
2025-02-01Fixed #36088 -- Avoided unnecessary DEFAULT usage on bulk_create().Simon Charette
2025-01-28Fixed #36122 -- Raised FieldError when updating with composite reference value.Simon Charette
2025-01-28Fixed #36120 -- Raised FieldError when targeting a composite primary key fiel...Jacob Walls
2025-01-27Fixed #36109 -- Fixed RecursionError when stacking FilteredRelation joins.Peter DeVita
2025-01-15Refs #16055 -- Removed get_joining_columns()/get_reverse_joining_columns() me...Sarah Boyce
2025-01-13Fixed #36086 -- Fixed crash when using GeneratedField with non-AutoField pk.Simon Charette
2025-01-13Refs #373 -- Removed unused composite pk code in SQLInsertCompiler.Simon Charette
2025-01-08Fixed #36065 -- Fixed ordering by expression referencing composite primary key.Simon Charette
2025-01-03Fixed #35918 -- Added support for execute_sql to directly return row counts.Raphael Gaschignard
2025-01-03Fixed #36029 -- Handled implicit exact lookups in condition depth checks for ...Jacob Walls
2024-12-11Refs #35936 -- Avoided field placeholder lookup for each value inserted.Simon Charette
2024-11-29Fixed #373 -- Added CompositePrimaryKey.Bendeguz Csirmaz
2024-10-14Fixed #35744 -- Relabelled external aliases of combined queries.Simon Charette
2024-08-12Fixed #35586 -- Added support for set-returning database functions.Devin Cox
2024-08-06Fixed CVE-2024-42005 -- Mitigated QuerySet.values() SQL injection attacks aga...Simon Charette
2024-08-02Fixed #35643 -- Fixed a crash when ordering a QuerySet by a reference contain...Simon Charette
2024-08-01Refs #373 -- Added tuple lookups.Bendeguz Csirmaz
2024-07-23Fixed #35585 -- Corrected Query.exists() call in Query.has_results().Flavio Curella
2024-07-22Fixed #35614 -- Prevented SQLCompiler.as_subquery_condition() from mutating a...Bendeguz Csirmaz
2024-07-19Fixed #35559 -- Avoided unnecessary query on sliced union of empty queries.Simon Charette
2024-07-16Doc'd purpose of tuple() in SQLCompiler.get_from_clause().Tim Graham
2024-07-15Removed leftover KeyError handling after Query.tables attribute cleanup.nessita
2024-07-09Fixed #35413 -- Made unsupported lookup error message more specific.wookkl
2024-07-03Refs #28900 -- Made Query.has_select_fields a computed property.Simon Charette