summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2021-04-07Fixed #32442 -- Used converters on returning fields from INSERT statements.Adam Johnson
2021-04-07Refs #32074 -- Backported Enum.__repr__() from Python 3.10.Mariusz Felisiak
2021-03-30Fixed #32595 -- Fixed SchemaEditor.quote_value() crash with bytes.Mariusz Felisiak
2021-03-29Fixed #31487 -- Added precision argument to Round().Nick Pope
2021-03-29Fixed #32585 -- Fixed Value() crash with DecimalField on SQLite.Hasan Ramezani
2021-03-25Fixed #32582 -- Removed unnecessary dot in names of cloned test databases on ...Girish Sontakke
2021-03-24Removed trailing whitespaces in error messages.Mariusz Felisiak
2021-03-24Fixed #32460 -- Allowed "label"/"do_not_call_in_templates" members in model c...Nick Pope
2021-03-23Fixed #32573 -- Fixed bounds in __iso_year lookup optimization.Florian Demmer
2021-03-23Fixed #32483 -- Fixed QuerySet.values()/values_list() on JSONField key transf...Mariusz Felisiak
2021-03-17Fixed #32548 -- Fixed crash when combining Q() objects with boolean expressions.Jonathan Richards
2021-03-16Fixed #32546 -- Avoided Meta.ordering columns in GROUP BY clauses.Yuri Konotopov
2021-03-12Fixed #31516 -- Improved naming of migrations with multiple operations.manav014
2021-03-12Refs #31516, Refs #31703 -- Made makemigrations always name initial migration...Adam Johnson
2021-03-10Refs #32508 -- Raised TypeError instead of using "assert" on unsupported oper...Mariusz Felisiak
2021-03-06Fixed #24141 -- Added QuerySet.contains().Johan Schiff
2021-03-01Fixed #22640 -- Raised TypeError when instantiating model with keyword and po...Jacob Walls
2021-03-01Fixed #32456 -- Added dbshell support for specifying a password file on Postg...Hasan Ramezani
2021-02-26Refs #32292 -- Made dbshell do not use 'postgres' database when service name ...Mariusz Felisiak
2021-02-24Fixed #32478 -- Included nested columns referenced by subqueries in GROUP BY ...Simon Charette
2021-02-23Fixed #30916 -- Added support for functional unique constraints.Hannes Ljungberg
2021-02-23Fixed typo in django/db/backends/sqlite3/base.py comment.Chris Jerdonek
2021-02-19Fixed #32458 -- Made __repr__() for Index and BaseConstraint subclasses more ...Hannes Ljungberg
2021-02-19Fixed #32256 -- Fixed migration optimization crash when swapping field names.Hasan Ramezani
2021-02-18Fixed #32455 -- Allowed right combining Q() with boolean expressions.Hasan Ramezani
2021-02-18Fixed #32450 -- Fixed crash when ANDing/ORing an empty Q() with not pickleabl...starryrbs
2021-02-17Fixed #32453 -- Added introspection of unique constraint field ordering on SQ...Hannes Ljungberg
2021-02-12Simplified introspection of constraints on MySQL.Hannes Ljungberg
2021-02-11Fixed #32433 -- Added error message on QuerySet.delete() following distinct().Egidijus Macijauskas
2021-02-10Fixed #32355 -- Dropped support for Python 3.6 and 3.7Mariusz Felisiak
2021-02-09Fixed #32425 -- Fixed adding nullable field with default on MySQL.Jordan Bae
2021-02-05Fixed #32411 -- Fixed __icontains lookup for JSONField on MySQL.Hasan Ramezani
2021-02-04Refs #32074 -- Fixed TextChoices/IntegerChoices crash on Python 3.10.Mariusz Felisiak
2021-02-04Fixed #32332 -- Fixed loss of parent with non-numeric pk when saving child af...Hasan Ramezani
2021-02-03Refs #32390 -- Bumped required cx_Oracle to 7.0.Mariusz Felisiak
2021-02-03Fixed #32390 -- Dropped support for Oracle 12.2 and 18c.Mariusz Felisiak
2021-02-02Fixed #32403 -- Fixed re-raising DatabaseErrors when using only 'postgres' da...Mariusz Felisiak
2021-01-29Fixed #32392 -- Fixed ExclusionConstraint crash with Cast() in expressions.Tilman Koschnick
2021-01-26Fixed #32369 -- Fixed adding check constraints with pattern lookups and expre...Simon Charette
2021-01-21Fixed #32367 -- Fixed system check for specifying type of auto-created primar...Mariusz Felisiak
2021-01-21Fixed #32374 -- Stopped recording migration application before deferred SQL.Simon Charette
2021-01-20Fixed #32292 -- Added support for connection by service name to PostgreSQL.Hasan Ramezani
2021-01-19Fixed #32357 -- Dropped support for PostgreSQL 9.6 and PostGIS 2.3.Mariusz Felisiak
2021-01-14Refs #31369 -- Removed models.NullBooleanField per deprecation timeline.Mariusz Felisiak
2021-01-14Refs #7098 -- Removed support for passing raw column aliases to order_by().Mariusz Felisiak
2021-01-14Refs #30988 -- Removed InvalidQuery exception per deprecation timeline.Mariusz Felisiak
2021-01-14Refs #30841 -- Made isnull lookup raise ValueError for non-boolean values.Mariusz Felisiak
2021-01-14Refs #30158 -- Made alias argument required in signature of Expression.get_gr...Mariusz Felisiak
2021-01-14Fixed #32321 -- Added system checks for invalid model field names in function...Hasan Ramezani
2021-01-14Refs #26167 -- Changed default value of DatabaseFeatures.supports_expression_...Hannes Ljungberg