| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-11-02 | Fixed #28723 -- Fixed RelatedManager's prefetch_related() cache name. | Mike Hansen | |
| 2017-10-31 | Fixed #28750 -- Allowed models to define ↵ | Charlie Denton | |
| Meta.manager_inheritance_from_future for backwards compatibility. Refs 631f4ab06112aca5bd6a57b81159048f936050bf. | |||
| 2017-10-30 | Fixed #28742 -- Fixed AttributeError crash when assigning None to cached ↵ | Paulo | |
| reverse relations. | |||
| 2017-10-28 | Refs #28010 -- Allowed reverse related fields in SELECT FOR UPDATE .. OF. | Ran Benita | |
| Thanks Adam Chidlow for polishing the patch. | |||
| 2017-10-25 | Fixed #28689 -- Fixed unquoted table names in Subquery SQL when using OuterRef. | Mariusz Felisiak | |
| Regression in f48bc7c3dbd204eefb3c19016b1e4906ac26bee3. | |||
| 2017-10-21 | Fixed #28722 -- Made QuerySet.reverse() affect nulls_first/nulls_last. | Tomer Chachamu | |
| 2017-10-18 | Refs #28575 -- Made RelatedObjectDoesNotExist classes pickable. | Simon Charette | |
| Thanks to Rachel Tobin for the initial __qualname__ work and tests. | |||
| 2017-10-18 | Fixed outdated comment in RelatedObjectDoesNotExist. | Simon Charette | |
| 2017-10-16 | Fixed #28497 -- Restored the ability to use sliced QuerySets with __exact. | Tim Graham | |
| Regression in ec50937bcbe160e658ef881021402e156beb0eaf. Thanks Simon Charette for review. | |||
| 2017-10-13 | Fixed #28695 -- Allowed models to use __init_subclass__(). | k | |
| 2017-10-13 | Corrected examples in related field descriptor docstrings. | Simon Charette | |
| Using lowercased model class names suggested that accessing the attribute from instances of the class returned an instance of the descriptor, but this is only the case when accessed from the model class. | |||
| 2017-10-13 | Refs #28575 -- Removed unnecessary code for model exception pickling. | Simon Charette | |
| Setting __qualname__ is sufficient for pickling of DoesNotExist and and MultipleObjectsReturned to work correctly. | |||
| 2017-10-13 | Refs #28643 -- Reorganized database functions. | Mariusz Felisiak | |
| Thanks Tim Graham for the review. | |||
| 2017-10-13 | Refs #28575 -- Allowed pickling Model.DoesNotExist and ↵ | Rachel Tobin | |
| MultipleObjectsReturned classes. | |||
| 2017-10-12 | Fixed #27846 -- Made Model.refresh_from_db() clear cached relations. | Paulo | |
| 2017-10-09 | Fixed #28670 -- Added FETCH/OFFSET support on Oracle. | Mariusz Felisiak | |
| Thanks Tim Graham for the review. | |||
| 2017-10-06 | Refs #24254 -- Removed unnecessary SQL AS clause in SQLCompiler.as_sql(). | Mariusz Felisiak | |
| Incorrect on Oracle. | |||
| 2017-10-06 | Fixed #28665 -- Change some database exceptions to NotImplementedError per ↵ | Simon Charette | |
| PEP 249. | |||
| 2017-10-05 | Fixed #28596 -- Fixed QuerySet.bulk_create() and cascade deletion crash on ↵ | Mariusz Felisiak | |
| Oracle when using more than 65535 parameters. Thanks Tim Graham for the review. | |||
| 2017-10-04 | Refs #28670 -- Moved LIMIT/OFFSET SQL to DatabaseOperations.limit_offset_sql(). | Mariusz Felisiak | |
| Thanks Tim Graham for the review. | |||
| 2017-10-03 | Refs #28584 -- Removed unused DatabaseFeatures.can_share_in_memory_db. | Tim Graham | |
| 2017-10-03 | Fixed #28674 -- Removed unused check in QuerySet._batched_insert(). | Tim Graham | |
| 2017-10-03 | Fixed #28584 -- Dropped support for SQLite < 3.7.15. | Tim Graham | |
| 2017-10-03 | Fixed #28675 -- Removed always True variable in ↵ | Tim Graham | |
| SQLInsertCompiler.execute_sql() check. Unused since 7deb25b8dd5aa1ed02b5e30cbc67cd1fb0c3d6e6. | |||
| 2017-10-02 | Fixed #28652 -- Fixed a few comments in django/db/models/*. | Дилян Палаузов | |
| 2017-10-02 | Refs #23919 -- Removed unneeded float()/int() calls. | Mariusz Felisiak | |
| 2017-09-30 | Corrected typos in BaseDatabaseOperations exception messages. | Mads Jensen | |
| 2017-09-29 | Fixed #27979 -- Made MySQL raise IntegrityError rather than OperationalError ↵ | Tim Graham | |
| when saving negative numbers in PositiveInteger fields. | |||
| 2017-09-29 | Used NotSupportedError for some unsupported database opreations per PEP 249. | Mads Jensen | |
| 2017-09-29 | Refs #28492 -- Defined aggregates' output_field at the class level. | Simon Charette | |
| Missed in 08654a99bbdd09049d682ae57cc94241534b29f0. | |||
| 2017-09-28 | Merged hash() calls. | Mariusz Felisiak | |
| Thanks Simon Charette for the review. | |||
| 2017-09-28 | Simplified various __eq__() methods. | Mads Jensen | |
| 2017-09-27 | Fixed #28626 -- Dropped support for PostgreSQL 9.3. | Tim Graham | |
| Thanks Simon Charette for the introspection changes. | |||
| 2017-09-25 | Fixed #27857 -- Dropped support for Python 3.4. | Tim Graham | |
| 2017-09-25 | Removed DatabaseFeatures.supports_microsecond_precision. | Tim Graham | |
| MySQL 5.5 (refs #28552) was the last database to use it. | |||
| 2017-09-25 | Fixed #28552 -- Dropped support for MySQL 5.5. | Tim Graham | |
| 2017-09-22 | Refs #27532 -- Removed Model._meta.has_auto_field per deprecation timeline. | Tim Graham | |
| 2017-09-22 | Refs #18974 -- Removed @models.permalink() decorator per deprecation timeline. | Tim Graham | |
| 2017-09-22 | Refs #27098 -- Removed DatabaseIntrospection.get_indexes() per deprecation ↵ | Tim Graham | |
| timeline. | |||
| 2017-09-22 | Fixed #27332 -- Added FilteredRelation API for conditional join (ON clause) ↵ | Nicolas Delaby | |
| support. Thanks Anssi Kääriäinen for contributing to the patch. | |||
| 2017-09-21 | Refs #28595 -- Added a hook to add execute wrappers for database queries. | Shai Berger | |
| Thanks Adam Johnson, Carl Meyer, Anssi Kääriäinen, Mariusz Felisiak, Michael Manfre, and Tim Graham for discussion and review. | |||
| 2017-09-20 | Removed unused list in Query.resolve_lookup_value(). | Nicolas Delaby | |
| Unneeded since its introduction in 4f138fe5a496a81115c4fba6615a517fc62c3b17. | |||
| 2017-09-18 | Fixed #28597 -- Fixed crash with the name of a model's autogenerated primary ↵ | Mariusz Felisiak | |
| key in an Index's fields. | |||
| 2017-09-18 | Fixed #26608 -- Added support for window expressions (OVER clause). | Mads Jensen | |
| Thanks Josh Smeaton, Mariusz Felisiak, Sergey Fedoseev, Simon Charettes, Adam Chainz/Johnson and Tim Graham for comments and reviews and Jamie Cockburn for initial patch. | |||
| 2017-09-18 | Changed default value of DatabaseFeatures.has_bulk_insert to True. | Mads Jensen | |
| 2017-09-16 | Removed unneeded StdDev.convert_value() and Variance.convert_value(). | Sergey Fedoseev | |
| Seems unneeded since its introduction in f59fd15c4928caf3dfcbd50f6ab47be409a43b01. | |||
| 2017-09-16 | Simplified Count.convert_value() and RegrCount.convert_value(). | Sergey Fedoseev | |
| 2017-09-15 | Removed unnecessary check in SQLCompiler.get_related_selections(). | Tim Graham | |
| 2017-09-13 | Refs #27090 -- Added real database sequence introspection. | Mariusz Felisiak | |
| Thanks Mariusz Felisiak for the Oracle part and Tim Graham for the review. | |||
| 2017-09-11 | Fixed #28492 -- Defined default output_field of expressions at the class level. | Simon Charette | |
| This wasn't possible when settings were accessed during Field initialization time as our test suite setup script was triggering imports of expressions before settings were configured. | |||
