| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-02-15 | Fixed #32417 -- Removed unneeded hasattr() check in ↵ | Chris Jerdonek | |
| LiveServerTestCase._tearDownClassInternal(). | |||
| 2021-02-15 | Refs #32417 -- Improved cleaning up and fixed isolation of staticfiles_tests ↵ | Chris Jerdonek | |
| tests. | |||
| 2021-02-13 | Refs #32394 -- Rephrased release note for STATIC_URL change. | Tim Graham | |
| 2021-02-12 | Simplified introspection of constraints on MySQL. | Hannes Ljungberg | |
| Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2021-02-12 | Fixed #32437 -- Fixed cleaning up ALLOWED_HOSTS in LiveServerTestCase on ↵ | Chris Jerdonek | |
| setUpClass() failure. | |||
| 2021-02-12 | Fixed #32438 -- Fixed typo in docs/topics/testing/tools.txt. | David Smith | |
| 2021-02-12 | Refs #32416 -- Added LiveServerThread.server_class to ease subclassing. | Chris Jerdonek | |
| 2021-02-11 | Documented an example custom context processor. | Adam Johnson | |
| 2021-02-11 | Improved pagination documentation | Adam Johnson | |
| * Link to the topic guide * Document that page() can raise PageNotAnInteger. | |||
| 2021-02-11 | Refs #30944 -- Added pyproject.toml in reusable apps docs. | Nick Pope | |
| Related to f8f35e8c530aaf440fa8160327461460d79f6db2. | |||
| 2021-02-11 | Fixed #32433 -- Added error message on QuerySet.delete() following distinct(). | Egidijus Macijauskas | |
| 2021-02-11 | Refs #19102 -- Removed flaky test ↵ | Egidijus Macijauskas | |
| Ticket19102Tests.test_ticket_19102_distinct_on. The subquery pushdown only happens because another table is involved in filter. It's not the distinct usage that causes the pushdown. The distinct('description').order_by('pk') expression is not valid because SELECT DISTINCT ON must match initial ORDER BY expressions which is not the case here. | |||
| 2021-02-11 | Enabled build-system isolation via pip. | Florian Apolloner | |
| 2021-02-11 | Fixed #32421 -- Made admindocs ModelDetailView show model cached properties. | Ramon Saraiva | |
| 2021-02-10 | Refs #32355 -- Restored PY36 and PY37 version constants. | Carlton Gibson | |
| Partially reverts ec0ff406311de88f4e2a135d784363424fe602aa. PY36 should be removed when Django 2.2 is EOL. PY37 should be removed when Django 3.2 is EOL. Thanks to Tim Graham for the report. | |||
| 2021-02-10 | Used allowlist_externals in tox.ini (again) | Matthias Kestenholz | |
| allowlist_externals is already used in this file. Refs #31670 | |||
| 2021-02-10 | Fixed #32431 -- Reversed order of security issues history. | Hasan Ramezani | |
| 2021-02-10 | Fixed #32355 -- Dropped support for Python 3.6 and 3.7 | Mariusz Felisiak | |
| 2021-02-09 | Fixed #32145 -- Improved makemessages error message when app's locale ↵ | Josh Santos | |
| directory doesn't exist. | |||
| 2021-02-09 | Fixed #32425 -- Fixed adding nullable field with default on MySQL. | Jordan Bae | |
| Thanks Simon Charette for the review. | |||
| 2021-02-08 | Fixed #28216 -- Added next_page/get_default_redirect_url() to LoginView. | ThinkChaos | |
| 2021-02-08 | Used .. attribute:: directive in authentication views docs. | Mariusz Felisiak | |
| 2021-02-08 | Fixed #32430 -- Doc'd base class-based views. | Anil Khatri | |
| 2021-02-08 | Fixed #32408 -- Doc'd django.views.generic.detail.BaseDetailView. | Anil Khatri | |
| 2021-02-06 | Refs #32394 -- Changed STATIC_URL/MEDIA_URL to relative paths in tests and ↵ | Markus Holtermann | |
| docs where appropriate. | |||
| 2021-02-06 | Fixed #32394 -- Changed project template settings to use relative STATIC_URL. | Markus Holtermann | |
| Refs #25598 which added original support for relative STATIC_URL and MEDIA_URL. | |||
| 2021-02-05 | Fixed #32411 -- Fixed __icontains lookup for JSONField on MySQL. | Hasan Ramezani | |
| 2021-02-05 | Fixed #32419 -- Clarified URLconf in example of serving media files. | Amankumar Singh | |
| 2021-02-05 | Fixed #32420 -- Fixed detecting primary key values in deserialization when ↵ | Mikolaj Rybinski | |
| PK is also a FK. | |||
| 2021-02-04 | Fixed #32350 -- Fixed showmigrations crash for applied squashed migrations. | Daniel Ebrahimian | |
| Thanks Simon Charette for reviews. | |||
| 2021-02-04 | Corrected typo in advice to new contributors. | Carlton Gibson | |
| 2021-02-04 | Skipped test_archive tests when bz2/lzma module is not installed. | Mariusz Felisiak | |
| 2021-02-04 | Fixed #32395 -- Allowed capturing stdout of migration signals. | Simon Charette | |
| 2021-02-04 | Used subTest() in migrate_signals.tests.MigrateSignalTests.test_args(). | Simon Charette | |
| 2021-02-04 | Refs #32074 -- Fixed TextChoices/IntegerChoices crash on Python 3.10. | Mariusz Felisiak | |
| EnumMeta has a new keyword argument 'boundary' in Python 3.10. This is a new mechanism that controls how out-of-range / invalid bits are handled, see https://bugs.python.org/issue38250. | |||
| 2021-02-04 | Refs #32412 -- Adjusted link from tutorial to reference docs. | GabbyPrecious | |
| The writing code index page is a better location for a newer contributor to land, than the specific patch guidelines subpage. | |||
| 2021-02-04 | Refs #32412 -- Adjusted beginning of Advice for new contributors. | GabbyPrecious | |
| With the goal of guiding folks to the right destination: * Improved wording of tutorial call-out. * Added summary of page purpose. * Added link to Writing code reference doc. | |||
| 2021-02-04 | Fixed #31527 -- Allowed admindocs index to handle non-string URLconfs. | Jim Xie | |
| 2021-02-04 | Fix typos | Dan Swain | |
| 2021-02-04 | Fixed #32332 -- Fixed loss of parent with non-numeric pk when saving child ↵ | Hasan Ramezani | |
| after parent. Follow up to 519016e5f25d7c0a040015724f9920581551cab0. | |||
| 2021-02-03 | Refs #32390 -- Bumped required cx_Oracle to 7.0. | Mariusz Felisiak | |
| 2021-02-03 | Fixed #32390 -- Dropped support for Oracle 12.2 and 18c. | Mariusz Felisiak | |
| 2021-02-02 | Fixed #32403 -- Fixed re-raising DatabaseErrors when using only 'postgres' ↵ | Mariusz Felisiak | |
| database. Thanks Kazantcev Andrey for the report. Regression in f48f671223a20b161ca819cf7d6298e43b8ba5fe. | |||
| 2021-02-01 | Fixed typo in docs/ref/forms/widgets.txt. | Brad Solomon | |
| 2021-02-01 | Added stub release notes for 3.1.7. | Mariusz Felisiak | |
| 2021-02-01 | Added CVE-2021-3281 to security archive. | Mariusz Felisiak | |
| 2021-02-01 | Fixed CVE-2021-3281 -- Fixed potential directory-traversal via ↵ | Mariusz Felisiak | |
| archive.extract(). Thanks Florian Apolloner, Shai Berger, and Simon Charette for reviews. Thanks Wang Baohua for the report. | |||
| 2021-01-29 | Fixed #32345 -- Fixed preserving encoded query strings in set_language() view. | Sandro Covo | |
| Thanks Johannes Maron for the review. | |||
| 2021-01-29 | Fixed #32392 -- Fixed ExclusionConstraint crash with Cast() in expressions. | Tilman Koschnick | |
| 2021-01-29 | Fixed GeoIPTest.test04_city() failure with the latest GeoIP2 database. | Mariusz Felisiak | |
