| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-11-02 | Fixed #33234 -- Fixed autodetector crash for proxy models inheriting from ↵ | Mariusz Felisiak | |
| non-model class. Regression in aa4acc164d1247c0de515c959f7b09648b57dc42. Thanks Kevin Marsh for the report. | |||
| 2021-11-02 | Fixed #33224 -- Removed ↵ | Hasan Ramezani | |
| DatabaseFeatures.supports_mixed_date_datetime_comparisons. | |||
| 2021-11-02 | Fixed #33246 -- Made squashmigrations raise CommandError when squashed_name ↵ | andrewdotn | |
| already exists. | |||
| 2021-11-02 | Fixed isolation of admin_views.tests.ValidXHTMLTests. | Mariusz Felisiak | |
| 2021-11-01 | Added stub release notes for Django 3.2.10. | Mariusz Felisiak | |
| 2021-11-01 | Added release date for 3.2.9. | Mariusz Felisiak | |
| 2021-11-01 | Added Google Cloud Spanner to list of third-party DB backends. | Vikash Singh | |
| 2021-11-01 | Fixed #33245 -- Made django.utils.html.urlize() thread-safe. | Timothy McCurrach | |
| Regression in e567670b1abe61af4acfaa6a6a7e92a7acfa8b00. | |||
| 2021-10-29 | Fixed #33236 -- Fixed assertHTMLEqual() error messages for escaped HTML. | Pratyush Mittal | |
| 2021-10-28 | Fixed #33228 -- Changed value of ↵ | Chinmoy | |
| BaseDatabaseFeatures.has_case_insensitive_like to False. | |||
| 2021-10-28 | Removed unused model's Options.installed. | Mariusz Felisiak | |
| Unused since f9698c43918c118a29516cbef4e23c197eb2dc25. | |||
| 2021-10-27 | Fixed #33201 -- Made RenameModel operation a noop for models with db_table. | Iuri de Silvio | |
| 2021-10-27 | Refs #33182 -- Adjusted custom admin theming example to use correct template ↵ | Carlton Gibson | |
| block. | |||
| 2021-10-27 | Fixed #33182 -- Moved admin dark mode vars to separate stylesheet and ↵ | Matteo Vitali | |
| template block. | |||
| 2021-10-26 | Fixed #32672 -- Fixed introspection of primary key constraints on SQLite. | Anv3sh | |
| Thanks Simon Charette for the implementation idea. | |||
| 2021-10-26 | Corrected AutodetectorTests.test_rename_field_and_foo_together()'s docstring. | Mariusz Felisiak | |
| 2021-10-26 | Fixed #27079 -- Avoided multiple setUpClass()/tearDownClass() calls in ↵ | Jacob Walls | |
| LiveServerTestCase tests. | |||
| 2021-10-26 | Removed duplicated lines in ↵ | Tim Graham | |
| test_in_lookup_allows_F_expressions_and_expressions_for_datetimes(). | |||
| 2021-10-25 | Fixed #31503 -- Made autodetector remove unique/index_together before ↵ | David Wobrock | |
| altering fields. | |||
| 2021-10-25 | Fixed #33205 -- Made call_command() raise TypeError when dest with multiple ↵ | Hasan Ramezani | |
| arguments is passed. | |||
| 2021-10-25 | Fixed typo in tests/servers/tests.py. | Jacob Walls | |
| 2021-10-22 | Fixed #33214 -- Added ↵ | Manaia Junior | |
| BaseDatabaseOperations.format_for_duration_arithmetic() stub method. | |||
| 2021-10-21 | Fixed #33215 -- Confirmed support for GEOS 3.10. | Mariusz Felisiak | |
| 2021-10-21 | Fixed #33210 -- Clarified docs for sitemaps ping_google() helper. | Arkadiusz Adamski | |
| 2021-10-21 | Fixed #25916 -- Added lastmod support to sitemap index view. | David Smith | |
| Co-authored-by: Matthew Downey <matthew.downey@webit.com.au> | |||
| 2021-10-21 | Refs #25916 -- Isolated sitemap.test_utils tests | David Smith | |
| 2021-10-21 | Fixed #33211 -- Updated tests for Selenium 4.0.0. | Carlton Gibson | |
| Replaced deprecated `find_element[s]_by_*()` usages, in favour of `find_element[s]()` with an explicit `By`. | |||
| 2021-10-21 | Refs #33211 -- Added assertCountSeleniumElements() test helper. | Carlton Gibson | |
| 2021-10-21 | Made F deconstruction omit 'expressions' in the path. | Adam Johnson | |
| 2021-10-20 | Fixed #33043 -- Made method_decorator() preserve wrapper assignments. | Vinay Karanam | |
| Regression in f434f5b84f7fcea9a76a551621ecce70786e2899. | |||
| 2021-10-20 | Fixed #32987 -- Added system check for template tag modules with the same name. | Shreya Bamne | |
| Co-authored-by: Daniel Fairhead <daniel@dev.ngo> | |||
| 2021-10-20 | Refs #32987 -- Refactored out get_template_tag_modules(). | Daniel Fairhead | |
| 2021-10-20 | Refs #32956 -- Capitalized HTTP/HTTPS in comments, docs, and docstrings. | David Smith | |
| 2021-10-19 | Refs #33207 -- Clarified that AUTH_USER_MODEL expects an app label. | Mariusz Felisiak | |
| 2021-10-19 | Fixed #33197 -- Made field rename with prior matching db_column change a noop. | Simon Charette | |
| Thanks Jacob Walls for the report. | |||
| 2021-10-18 | Refs #32956 -- Changed docs to treat the acronym HTTP phonetically. | David Smith | |
| 2021-10-18 | Fixed #33172 -- Added example of modifying upload handlers on the fly for CBVs. | sreehari1997 | |
| 2021-10-18 | Fixed #33194 -- Fixed migrations when altering a field with functional ↵ | Hannes Ljungberg | |
| indexes/unique constraints on SQLite. This adjusts Expressions.rename_table_references() to only update alias when needed. Regression in 83fcfc9ec8610540948815e127101f1206562ead. Co-authored-by: Simon Charette <charettes@users.noreply.github.com> | |||
| 2021-10-18 | Fixed #33198 -- Corrected BinaryField.max_length docs. | Nick Frazier | |
| 2021-10-15 | Refs #32074 -- Removed usage of deprecated asyncore and smtpd modules. | Mariusz Felisiak | |
| asyncore and smtpd modules were deprecated in Python 3.10. | |||
| 2021-10-15 | Fixed #33195 -- Refactored urlize() based on a class. | Claude Paroz | |
| This allows easier customization/ | |||
| 2021-10-15 | Refs #30509 -- Adjusted internal FileResponse variable name. | Carlton Gibson | |
| Follow up to dc724c5bf9d3b8d59c9571aa751c3cd001cdeced. | |||
| 2021-10-15 | Fixed #23953 -- Made makemigrations continue number sequence for squashed ↵ | Jacob Walls | |
| migrations. | |||
| 2021-10-15 | Refs #23953 -- Added MigrationAutodetector.parse_number() tests. | Jacob Walls | |
| 2021-10-14 | Removed unused DOTS list. | Claude Paroz | |
| Unused since 4ff389dcdc15884eef059b2b8dea4b710e0a3b98. | |||
| 2021-10-14 | Refs #30509 -- Adjusted FileResponse test to close file earlier. | Piotr Kunicki | |
| 2021-10-14 | Fixed #30509 -- Made FileResponse better handle buffers and non-zero file ↵ | Piotr Kunicki | |
| offsets. | |||
| 2021-10-14 | Refs #30509 -- Increased FileResponse test coverage. | Piotr Kunicki | |
| Split tests by behavior, e.g. header, and added additional tests. | |||
| 2021-10-14 | Fixed #33008 -- Fixed prefetch_related() for deleted GenericForeignKeys. | Martin Svoboda | |
| Thanks Simon Charette for the implementation idea. | |||
| 2021-10-14 | Refs #27131 -- Removed SMTPBackendTests.test_server_login(). | Mariusz Felisiak | |
| test_server_login() was a regression test for a crash when passing Unicode strings to SMTP server using CRAM-MD5 method on Python 2. Python 2 is no longer supported and test_server_login() passes even without FakeSMTPChannel.smtp_AUTH() because smtplib.SMTPAuthenticationError is raised when AUTH is not implemented. | |||
