| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-01-09 | Refs #23748 -- Added AutoField introspection for SQLite. | Nick Pope | |
| 2019-01-03 | Fixed #30070, CVE-2019-3498 -- Fixed content spoofing possiblity in the ↵ | Tom Hacohen | |
| default 404 page. Co-Authored-By: Tim Graham <timograham@gmail.com> | |||
| 2019-01-03 | Refs #29851 -- Fixed test_subquery_row_range_rank() crash on MariaDB 10.2+. | Mariusz Felisiak | |
| Thanks Tom Forbes for the report. | |||
| 2019-01-02 | Added __init__.py for db_utils tests. | Tim Graham | |
| 2019-01-02 | Used 4 space hanging indent for dictionaries. | Tim Graham | |
| Thanks Mariusz Felisiak for auditing. | |||
| 2019-01-02 | Pinned Pillow != 5.4.0 in test requirements. | Tim Graham | |
| There's a bug that causes a test failure in forms_tests: https://github.com/python-pillow/Pillow/pull/3501/files#r244651761. | |||
| 2019-01-01 | Fixed #29981 -- Fixed inline formsets with a OnetoOneField primary key that ↵ | Patrik Sletmo | |
| uses to_field. | |||
| 2019-01-01 | Fixed #30050 -- Fixed InlineModelAdmin.has_change_permission() called with ↵ | Tim Graham | |
| non-None obj during add. Thanks andreage for the report and suggested fix. | |||
| 2019-01-01 | Fixed #30060 -- Moved SQL generation for indexes and constraints to ↵ | Paveł Tyślacki | |
| SchemaEditor. | |||
| 2018-12-31 | Updated test URL patterns to use path() and re_path(). | Tim Graham | |
| 2018-12-31 | Updated a test to reflect the fact that "import *" isn't used in URLconfs ↵ | Tim Graham | |
| anymore (refs #14675). | |||
| 2018-12-27 | Followed style guide for model attribute ordering. | Matt Wiens | |
| 2018-12-27 | Fixed #29851 -- Fixed crash of annotations with window expressions in Subquery. | Mariusz Felisiak | |
| 2018-12-27 | Fixed #30024 -- Made urlencode() and Client raise TypeError when None is ↵ | Jon Dufresne | |
| passed as data. | |||
| 2018-12-27 | Fixed broken links to PyYAML page. | CHI Cheng | |
| 2018-12-26 | Fixed #30058 -- Made SMTP EmailBackend.send_messages() return 0 for ↵ | Denis Stebunov | |
| empty/error cases. | |||
| 2018-12-26 | Refs #30033 -- Fixed schema's test_m2m_rename_field_in_target_model test ↵ | Tim Graham | |
| failure on SQLite < 3.20. Mixing local test models with non-local models resulted in a referential integrity error during tear down since the models are removed in separate schema editor instances which each check constraints. Failure appeared after 7289874adceec46b5367ec3157cdd10c711253a0. | |||
| 2018-12-26 | Refs #29547 -- Skipped an unsupported partial index test on older versions ↵ | Tim Graham | |
| of SQLite. Follow up to e5b8626c0eb223cc3d643163882c5902c40ec972. | |||
| 2018-12-24 | Refs #29004 -- Prevented inspectdb tests from flushing all tables data. | Simon Charette | |
| This is a costly operation on most database backends. | |||
| 2018-12-24 | Refs #26840 -- Corrected SQLite connection mocking in a setup_databases() test. | Simon Charette | |
| The test was expecting connections used by DiscoverRunner.setup_databases() to be the ones defined in django.test.runner but this doesn't hold true since this method was made a proxy of django.test.utils.setup_databases. This broke the TransactionTestCase.serialized_rollback feature in the test suite because calls to create_db_test() cleared the test data persisted on connections objects. Added an assertions to prevent this from happening again. | |||
| 2018-12-24 | Fixed #30056 -- Added SQLite support for StdDev and Variance functions. | Nick Pope | |
| 2018-12-24 | Fixed #20098 -- Added a check for model Meta.db_table collisions. | Sanyam Khurana | |
| 2018-12-22 | Renamed Sqlite and Sqlite3 references to SQLite. | Nick Pope | |
| 2018-12-22 | Refs #14204 -- Removed obsolete referential integrity comment for SQLite. | Nick Pope | |
| 2018-12-22 | Fixed #29970, #30041 -- Made ModelBase.__new__() pass attrs without ↵ | Sergey Fedoseev | |
| contribute_to_class() to type.__new__(). | |||
| 2018-12-22 | Refs #29182 -- Corrected SQLite's supports_atomic_references_rename feature ↵ | Simon Charette | |
| flag. | |||
| 2018-12-22 | Refs #29547 -- Corrected SQLite's supports_partial_indexes feature flag. | Simon Charette | |
| 2018-12-22 | Renamed SQLite3 references to to SQLite. | Simon Charette | |
| The version suffix isn't part of the product name. | |||
| 2018-12-21 | Fixed #29750 -- Added View.setup() hook for class-based views. | François Freitag | |
| 2018-12-21 | Fixed #29792 -- Made GeometryField.deconstruct() handle 'extent' and ↵ | jtiai | |
| 'tolerance' args. | |||
| 2018-12-21 | Added tests for GeometryField.deconstruct(). | jtiai | |
| 2018-12-21 | Added tests for ContentType/Group/Permission.__str__(). | Tim Graham | |
| 2018-12-19 | Fixed #30031 -- Added --no-header option to makemigrations/squashmigrations. | Dakota Hawkins | |
| 2018-12-19 | Fixed #30015 -- Ensured request body is properly consumed for keep-alive ↵ | Konstantin Alekseev | |
| connections. | |||
| 2018-12-17 | Refs #29182 -- Stopped relying on legacy alter table semantic on SQLite 3.26+. | Simon Charette | |
| SQLite 3.26 changed the behavior of table and column renaming operations to repoint foreign key references even if foreign key checks are disabled. This makes the workarounds in place to simulate this behavior unnecessary on SQLite 3.26+. Refs #30033. | |||
| 2018-12-15 | Fixed #30023 -- Prevented SQLite schema alterations while foreign key checks ↵ | Simon Charette | |
| are enabled. Prior to this change foreign key constraint references could be left pointing at tables dropped during operations simulating unsupported table alterations because of an unexpected failure to disable foreign key constraint checks. SQLite3 does not allow disabling such checks while in a transaction so they must be disabled beforehand. Thanks ezaquarii for the report and Carlton and Tim for the review. | |||
| 2018-12-10 | Moved choices inside of test models per coding style. | Manan | |
| 2018-12-06 | Fixed #28766 -- Added ResolverMatch.route. | Benjamin Wohlwend | |
| Co-Authored-By: Xavier Fernandez <xavier.fernandez@polyconseil.fr> | |||
| 2018-12-06 | Fixed #29932 -- Fixed combining compound queries with sub-compound queries ↵ | Mariusz Felisiak | |
| on SQLite and Oracle. | |||
| 2018-12-06 | Fixed #29986 -- Added .format() support to ngettext_lazy strings. | Patrick Arminio | |
| 2018-12-06 | Fixed #30011 -- Fixed queries that reuse filtered aggregates. | Simon Charette | |
| Thanks Taqi Abbas and Raphael Kimmig for the report. | |||
| 2018-12-06 | Bumped mysqlclient requirement to >= 1.3.13. | Tim Graham | |
| There are test failures with older versions. | |||
| 2018-12-05 | Reverted "Fixed #25251 -- Made data migrations available in ↵ | Tim Graham | |
| TransactionTestCase when using --keepdb." This reverts commits b3b1d3d45fc066367f4fcacf0b06f72fcd00a9c6 and 9fa0d3786febf36c87ef059a39115aa1ce3326e8 due to reverse build failures for which a solution isn't forthcoming. | |||
| 2018-12-05 | Refs #30013 -- Fixed SchemaEditor.quote_value() test for mysqlclient 1.3.14+. | Tim Graham | |
| 2018-12-04 | Tested exception messages in generic_views tests. | François Freitag | |
| 2018-12-03 | Fixed #29930 -- Allowed editing in admin with view-only inlines. | Carlton Gibson | |
| Co-authored-by: Tim Graham <timograham@gmail.com> | |||
| 2018-11-30 | Added test for ResolverMatch.__repr__(). | Xavier Fernandez | |
| 2018-11-30 | Removed urlpatterns_reverse dependency in urlpatterns tests. | Xavier Fernandez | |
| 2018-11-30 | Fixed #29987 -- Detected unmanaged model deletions. | Tim Fiedler | |
| 2018-11-30 | Fixed #29997 -- Allowed combining SearchQuerys with different configs. | Jaap Roes | |
| Seems to be a needless restriction in 978a00e39fee25cfa99065285b0de88366710fad. | |||
