Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Corrected multiply defined labels in docs. | Mariusz Felisiak | 2021-11-04 | 3 | -24/+27 |
| | |||||
* | Refs #33247 -- Fixed rendering of Unicode chars and emojis in PDF docs build. | Andrew Neitsch | 2021-11-04 | 1 | -6/+28 |
| | |||||
* | Fixed #33262 -- Fixed crash of conditional aggregation on Exists(). | Hannes Ljungberg | 2021-11-04 | 3 | -2/+10 |
| | |||||
* | Fixed #33260 -- Fixed crash when chaining QuerySet.exists() after ↵ | Hannes Ljungberg | 2021-11-03 | 2 | -0/+10 |
| | | | | select_for_update(of=()). | ||||
* | Refs #33247 -- Corrected configuration for Read The Docs. | Carlton Gibson | 2021-11-03 | 2 | -4/+7 |
| | | | | | | | | | This pins Sphinx version, because the default Sphinx version used by RTD is not compatible with Python 3.8+. This also, sets Python 3.8 for RTD builds which is compatible with all current versions of Django. Thanks to Mariusz Felisiak for the suggestion. | ||||
* | Fixed #33247 -- Added configuration for Read The Docs. | Carlton Gibson | 2021-11-03 | 1 | -0/+18 |
| | | | | Co-authored-by: Andrew Neitsch <andrew@neitsch.ca> | ||||
* | Fixed #32996 -- Cached PathInfos on relations. | Keryn Knight | 2021-11-03 | 11 | -29/+182 |
| | | | | | | PathInfo values are ostensibly static over the lifetime of the object for which they're requested, so the data can be memoized, quickly amortising the cost over the process' duration. | ||||
* | Fixed #33252 -- Made cache middlewares thread-safe. | Iuri de Silvio | 2021-11-03 | 2 | -3/+23 |
| | |||||
* | Refs #33252 -- Used @override_settings in ↵ | Iuri de Silvio | 2021-11-03 | 1 | -2/+1 |
| | | | | BaseCacheTests.test_cache_write_unpicklable_object() | ||||
* | Refs #33245 -- Minor edits to django.utils.html.urlize() changes. | tim-mccurrach | 2021-11-03 | 1 | -5/+5 |
| | | | Follow up to ad81b606a2b5276397460a654fc7ad901a54b91e. | ||||
* | Corrected module reference in contributing tutorial. | Adam Johnson | 2021-11-03 | 1 | -1/+1 |
| | |||||
* | Fixed typo in docs/topics/logging.txt. | Brad | 2021-11-03 | 1 | -1/+1 |
| | |||||
* | Fixed #32691 -- Made Exact lookup on BooleanFields compare directly to a ↵ | Roman | 2021-11-02 | 2 | -0/+51 |
| | | | | | | | | | | boolean value on MySQL. Performance regression in 37e6c5b79bd0529a3c85b8c478e4002fd33a2a1d. Thanks Todor Velichkov for the report. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | ||||
* | Fixed #33187 -- Made inspectdb handle ForeignKey.to_field attribute. | jordan.bae | 2021-11-02 | 3 | -2/+22 |
| | |||||
* | Fixed #33234 -- Fixed autodetector crash for proxy models inheriting from ↵ | Mariusz Felisiak | 2021-11-02 | 2 | -0/+25 |
| | | | | | | | non-model class. Regression in aa4acc164d1247c0de515c959f7b09648b57dc42. Thanks Kevin Marsh for the report. | ||||
* | Fixed #33224 -- Removed ↵ | Hasan Ramezani | 2021-11-02 | 3 | -5/+5 |
| | | | | DatabaseFeatures.supports_mixed_date_datetime_comparisons. | ||||
* | Fixed #33246 -- Made squashmigrations raise CommandError when squashed_name ↵ | andrewdotn | 2021-11-02 | 2 | -0/+15 |
| | | | | already exists. | ||||
* | Fixed isolation of admin_views.tests.ValidXHTMLTests. | Mariusz Felisiak | 2021-11-02 | 1 | -4/+4 |
| | |||||
* | Added stub release notes for Django 3.2.10. | Mariusz Felisiak | 2021-11-01 | 2 | -0/+13 |
| | |||||
* | Added release date for 3.2.9. | Mariusz Felisiak | 2021-11-01 | 1 | -3/+2 |
| | |||||
* | Added Google Cloud Spanner to list of third-party DB backends. | Vikash Singh | 2021-11-01 | 1 | -0/+2 |
| | |||||
* | Fixed #33245 -- Made django.utils.html.urlize() thread-safe. | Timothy McCurrach | 2021-11-01 | 1 | -16/+21 |
| | | | | Regression in e567670b1abe61af4acfaa6a6a7e92a7acfa8b00. | ||||
* | Fixed #33236 -- Fixed assertHTMLEqual() error messages for escaped HTML. | Pratyush Mittal | 2021-10-29 | 2 | -3/+25 |
| | |||||
* | Fixed #33228 -- Changed value of ↵ | Chinmoy | 2021-10-28 | 6 | -5/+4 |
| | | | | BaseDatabaseFeatures.has_case_insensitive_like to False. | ||||
* | Removed unused model's Options.installed. | Mariusz Felisiak | 2021-10-28 | 1 | -4/+0 |
| | | | Unused since f9698c43918c118a29516cbef4e23c197eb2dc25. | ||||
* | Fixed #33201 -- Made RenameModel operation a noop for models with db_table. | Iuri de Silvio | 2021-10-27 | 2 | -5/+28 |
| | |||||
* | Refs #33182 -- Adjusted custom admin theming example to use correct template ↵ | Carlton Gibson | 2021-10-27 | 1 | -1/+1 |
| | | | | block. | ||||
* | Fixed #33182 -- Moved admin dark mode vars to separate stylesheet and ↵ | Matteo Vitali | 2021-10-27 | 5 | -39/+48 |
| | | | | template block. | ||||
* | Fixed #32672 -- Fixed introspection of primary key constraints on SQLite. | Anv3sh | 2021-10-26 | 2 | -17/+23 |
| | | | | Thanks Simon Charette for the implementation idea. | ||||
* | Corrected AutodetectorTests.test_rename_field_and_foo_together()'s docstring. | Mariusz Felisiak | 2021-10-26 | 1 | -3/+1 |
| | |||||
* | Fixed #27079 -- Avoided multiple setUpClass()/tearDownClass() calls in ↵ | Jacob Walls | 2021-10-26 | 3 | -54/+23 |
| | | | | LiveServerTestCase tests. | ||||
* | Removed duplicated lines in ↵ | Tim Graham | 2021-10-26 | 1 | -5/+0 |
| | | | | test_in_lookup_allows_F_expressions_and_expressions_for_datetimes(). | ||||
* | Fixed #31503 -- Made autodetector remove unique/index_together before ↵ | David Wobrock | 2021-10-25 | 2 | -19/+181 |
| | | | | altering fields. | ||||
* | Fixed #33205 -- Made call_command() raise TypeError when dest with multiple ↵ | Hasan Ramezani | 2021-10-25 | 3 | -0/+54 |
| | | | | arguments is passed. | ||||
* | Fixed typo in tests/servers/tests.py. | Jacob Walls | 2021-10-25 | 1 | -3/+3 |
| | |||||
* | Fixed #33214 -- Added ↵ | Manaia Junior | 2021-10-22 | 2 | -0/+11 |
| | | | | BaseDatabaseOperations.format_for_duration_arithmetic() stub method. | ||||
* | Fixed #33215 -- Confirmed support for GEOS 3.10. | Mariusz Felisiak | 2021-10-21 | 2 | -2/+7 |
| | |||||
* | Fixed #33210 -- Clarified docs for sitemaps ping_google() helper. | Arkadiusz Adamski | 2021-10-21 | 1 | -5/+10 |
| | |||||
* | Fixed #25916 -- Added lastmod support to sitemap index view. | David Smith | 2021-10-21 | 11 | -45/+295 |
| | | | | Co-authored-by: Matthew Downey <matthew.downey@webit.com.au> | ||||
* | Refs #25916 -- Isolated sitemap.test_utils tests | David Smith | 2021-10-21 | 2 | -0/+11 |
| | |||||
* | Fixed #33211 -- Updated tests for Selenium 4.0.0. | Carlton Gibson | 2021-10-21 | 10 | -325/+411 |
| | | | | | Replaced deprecated `find_element[s]_by_*()` usages, in favour of `find_element[s]()` with an explicit `By`. | ||||
* | Refs #33211 -- Added assertCountSeleniumElements() test helper. | Carlton Gibson | 2021-10-21 | 4 | -110/+88 |
| | |||||
* | Made F deconstruction omit 'expressions' in the path. | Adam Johnson | 2021-10-21 | 2 | -2/+2 |
| | |||||
* | Fixed #33043 -- Made method_decorator() preserve wrapper assignments. | Vinay Karanam | 2021-10-20 | 2 | -1/+24 |
| | | | | Regression in f434f5b84f7fcea9a76a551621ecce70786e2899. | ||||
* | Fixed #32987 -- Added system check for template tag modules with the same name. | Shreya Bamne | 2021-10-20 | 17 | -2/+145 |
| | | | | Co-authored-by: Daniel Fairhead <daniel@dev.ngo> | ||||
* | Refs #32987 -- Refactored out get_template_tag_modules(). | Daniel Fairhead | 2021-10-20 | 1 | -10/+19 |
| | |||||
* | Refs #32956 -- Capitalized HTTP/HTTPS in comments, docs, and docstrings. | David Smith | 2021-10-20 | 7 | -11/+9 |
| | |||||
* | Refs #33207 -- Clarified that AUTH_USER_MODEL expects an app label. | Mariusz Felisiak | 2021-10-19 | 1 | -3/+3 |
| | |||||
* | Fixed #33197 -- Made field rename with prior matching db_column change a noop. | Simon Charette | 2021-10-19 | 3 | -12/+39 |
| | | | | Thanks Jacob Walls for the report. | ||||
* | Refs #32956 -- Changed docs to treat the acronym HTTP phonetically. | David Smith | 2021-10-18 | 13 | -18/+22 |
| |