index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
models
/
sql
/
query.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed #34570 -- Silenced noop deferral of many-to-many and GFK.
Simon Charette
2023-05-17
1
-1
/
+9
*
Refs #33766 -- Removed sql.Query.build_filtered_relation_q().
Simon Charette
2023-04-24
1
-29
/
+8
*
Fixed #33766 -- Resolved FilteredRelation.condition at referencing time.
Simon Charette
2023-04-24
1
-32
/
+38
*
Fixed #34464 -- Fixed queryset aggregation over group by reference.
Simon Charette
2023-04-07
1
-0
/
+3
*
Fixed #34458 -- Fixed QuerySet.defer() crash on attribute names.
Simon Charette
2023-04-05
1
-1
/
+2
*
Fixed #34450 -- Fixed multi-valued JOIN reuse when filtering by expressions.
Simon Charette
2023-04-04
1
-1
/
+1
*
Refs #29799 -- Added field instance lookups to suggestions in FieldErrors.
Mariusz Felisiak
2023-03-28
1
-1
/
+1
*
Fixed #34437 -- Made values() resolving error mention selected annotations.
Simon Charette
2023-03-25
1
-5
/
+10
*
Fixed #28553 -- Fixed annotation mismatch with QuerySet.values()/values_list(...
David Wobrock
2023-03-24
1
-6
/
+11
*
Fixed some typos in comments, docstrings, and tests.
Liyang Zhang
2023-03-20
1
-1
/
+1
*
Refs #34233 -- Used str.removeprefix()/removesuffix().
Mariusz Felisiak
2023-01-18
1
-2
/
+1
*
Fixed #34176 -- Fixed grouping by ambiguous aliases.
Simon Charette
2023-01-09
1
-30
/
+15
*
Refs #33308 -- Deprecated support for passing encoded JSON string literals to...
Simon Charette
2022-12-01
1
-3
/
+3
*
Fixed #31679 -- Delayed annotating aggregations.
Simon Charette
2022-11-23
1
-41
/
+34
*
Refs #25307 -- Replaced SQLQuery.rewrite_cols() by replace_expressions().
Simon Charette
2022-11-14
1
-62
/
+25
*
Reduced nesting inside Query.get_aggregation().
Simon Charette
2022-11-14
1
-7
/
+6
*
Refs #28477 -- Fixed handling aliased annotations on aggregation.
Simon Charette
2022-11-14
1
-1
/
+1
*
Refs #28477 -- Reduced complexity of aggregation over qualify queries.
Simon Charette
2022-11-11
1
-14
/
+20
*
Fixed #28477 -- Stripped unused annotations on aggregation.
Simon Charette
2022-11-09
1
-20
/
+51
*
Used more augmented assignment statements.
Nick Pope
2022-10-31
1
-1
/
+1
*
Refs #30158 -- Removed alias argument for Expression.get_group_by_cols().
Simon Charette
2022-10-06
1
-8
/
+11
*
Refs #33992 -- Refactored subquery grouping logic.
Simon Charette
2022-10-06
1
-8
/
+9
*
Refs #33308 -- Enabled explicit GROUP BY and ORDER BY aliases.
Simon Charette
2022-10-06
1
-2
/
+15
*
Fixed #34012 -- Made QuerySet.order_by() apply transforms on related fields f...
David Sanders
2022-10-04
1
-0
/
+1
*
Fixed #34015 -- Allowed filtering by transforms on relation fields.
Mariusz Felisiak
2022-09-22
1
-10
/
+0
*
Fixed #33975 -- Fixed __in lookup when rhs is a queryset with annotate() and ...
DevilsAutumn
2022-09-09
1
-6
/
+2
*
Fixed #21204 -- Tracked field deferrals by field instead of models.
Simon Charette
2022-08-30
1
-90
/
+63
*
Used AND, OR, XOR constants instead of hard-coded values.
Nick Pope
2022-07-27
1
-3
/
+3
*
Fixed #33816 -- Fixed QuerySet.only() after select_related() crash on proxy m...
Ipakeev
2022-07-04
1
-0
/
+1
*
Refs #32786 -- Made query clear ordering when ordered combined queryset is us...
Mariusz Felisiak
2022-06-27
1
-0
/
+2
*
Fixed typo in Query.clone()'s docstring.
非法操作
2022-05-13
1
-1
/
+1
*
Fixed #33655 -- Removed unnecessary constant from GROUP BY clause for QuerySe...
marcperrinoptel
2022-04-26
1
-2
/
+2
*
Fixed #24296 -- Made QuerySet.exists() clear selected columns for not sliced ...
mgaligniana
2022-04-12
1
-1
/
+1
*
Fixed CVE-2022-28347 -- Protected QuerySet.explain(**options) against SQL inj...
Mariusz Felisiak
2022-04-11
1
-0
/
+10
*
Fixed CVE-2022-28346 -- Protected QuerySet.annotate(), aggregate(), and extra...
Mariusz Felisiak
2022-04-11
1
-0
/
+14
*
Removed unnecessary Query.get_loaded_field_names_cb() and Query.deferred_to_d...
Mariusz Felisiak
2022-03-31
1
-12
/
+5
*
Refs #24020 -- Removed redundant Query.get_loaded_field_names().
Mariusz Felisiak
2022-03-31
1
-19
/
+0
*
Fixed #33598 -- Reverted "Removed unnecessary reuse_with_filtered_relation ar...
Mariusz Felisiak
2022-03-30
1
-9
/
+38
*
Refs #30581 -- Allowed sql.Query to be used without model.
Gagaro
2022-03-16
1
-3
/
+10
*
Refs #27624 -- Optimized Query.clone() a bit.
Keryn Knight
2022-03-03
1
-5
/
+2
*
Refs #27624 -- Optimized sql.Query creation by moving immutable/singleton att...
Keryn Knight
2022-03-03
1
-60
/
+63
*
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
1
-1
/
+2
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-228
/
+388
*
Refs #33476 -- Refactored problematic code before reformatting by Black.
Mariusz Felisiak
2022-02-03
1
-4
/
+4
*
Fixed #29338 -- Allowed using combined queryset in Subquery.
Mariusz Felisiak
2022-01-17
1
-0
/
+6
*
Fixed #33319 -- Fixed crash when combining with the | operator querysets with...
Ömer Faruk Abacı
2021-12-08
1
-8
/
+17
*
Refs #33319 -- Added comment about keys/values assertion in Query.change_alia...
Ömer Faruk Abacı
2021-12-08
1
-0
/
+3
*
Refs #25265 -- Allowed customizing Query's datastructure classes.
Erik Cederstrand
2021-12-07
1
-7
/
+14
*
Fixed #33282 -- Fixed a crash when OR'ing subquery and aggregation lookups.
Simon Charette
2021-12-02
1
-0
/
+8
*
Refs #24121 -- Added __repr__() to BaseDatabaseWrapper, JoinPromoter, and SQL...
Jonny Park
2021-11-19
1
-0
/
+6
[next]