| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-12-22 | Added TemplatesSetting to list of built-in renderers in FORM_RENDERER docs. | Adam Johnson | |
| 2021-12-21 | Fixed #32600 -- Fixed Geometry collections and Polygon segmentation fault on ↵ | Brenton Partridge | |
| macOS ARM64. | |||
| 2021-12-17 | Changed signatures of setting_changed signal receivers. | Adam Johnson | |
| 2021-12-17 | Fixed #33366 -- Fixed case handling with swappable setting detection in ↵ | Simon Charette | |
| migrations autodetector. The migration framework uniquely identifies models by case insensitive labels composed of their app label and model names and so does the app registry in most of its methods (e.g. AppConfig.get_model) but it wasn't the case for get_swappable_settings_name() until this change. This likely slipped under the radar for so long and only regressed in b9df2b74b98b4d63933e8061d3cfc1f6f39eb747 because prior to the changes related to the usage of model states instead of rendered models in the auto-detector the exact value settings value was never going through a case folding hoop. Thanks Andrew Chen Wang for the report and Keryn Knight for the investigation. | |||
| 2021-12-16 | Fixed #33350 -- Reallowed using cache decorators with duck-typed HttpRequest. | Mariusz Felisiak | |
| Regression in 3fd82a62415e748002435e7bad06b5017507777c. Thanks Terence Honles for the report. | |||
| 2021-12-16 | Fixed #30127 -- Deprecated name argument of cached_property(). | mgaligniana | |
| 2021-12-15 | Refs #33365, Refs #30530 -- Doc'd re_path() behavior change in Django ↵ | Mariusz Felisiak | |
| 2.2.25, 3.1.14, and 3.2.10. Follow up to d4dcd5b9dd9e462fec8220e33e3e6c822b7e88a6. | |||
| 2021-12-15 | Fixed #33316 -- Added pagination to admin history view. | mgaligniana | |
| 2021-12-15 | Fixed #16063 -- Adjusted admin changelist searches spanning multi-valued ↵ | Jacob Walls | |
| relationships. This reduces the likelihood of admin searches issuing queries with excessive joins. | |||
| 2021-12-14 | Fixed #33361 -- Fixed Redis cache backend crash on booleans. | Jeremy Lainé | |
| 2021-12-13 | Improved wording in password validators docs and docstrings. | Adam Johnson | |
| 2021-12-13 | Fixed #33338 -- Doc'd that never_cache() decorator set Expires header. | mgaligniana | |
| 2021-12-13 | Corrected example in models.DecimalField docs. | Beomsoo Kim | |
| 2021-12-13 | Updated link to Microsoft SQL Server backend. | Wayne Lambert | |
| 2021-12-09 | Refs #32338 -- Added Boundfield.legend_tag(). | David Smith | |
| 2021-12-08 | Refs #33319 -- Added note about commutation of QuerySet's | operator. | Ömer Faruk Abacı | |
| 2021-12-08 | Fixed #33346 -- Fixed SimpleTestCase.assertFormsetError() crash on a formset ↵ | Baptiste Mispelon | |
| named "form". Thanks OutOfFocus4 for the report. Regression in 456466d932830b096d39806e291fe23ec5ed38d5. | |||
| 2021-12-08 | Fixed #19721 -- Allowed admin filters to customize the list separator. | Shreya Bamne | |
| 2021-12-08 | Refs #19721 -- Corrected list formatting in admin filters docs. | Shreya Bamne | |
| 2021-12-07 | Improved release notes wording for template-based form rendering. | Nick Pope | |
| 2021-12-07 | Added stub release notes for 4.0.1. | Mariusz Felisiak | |
| 2021-12-07 | Finalized release notes for Django 4.0. | Mariusz Felisiak | |
| 2021-12-07 | Updated asgiref dependency for 4.0 release series. | Mariusz Felisiak | |
| 2021-12-07 | Added CVE-2021-44420 to security archive. | Mariusz Felisiak | |
| 2021-12-07 | Fixed #30530, CVE-2021-44420 -- Fixed potential bypass of an upstream access ↵ | Florian Apolloner | |
| control based on URL paths. Thanks Sjoerd Job Postmus and TengMA(@te3t123) for reports. | |||
| 2021-12-06 | Fixed #33335 -- Made model validation ignore functional unique constraints. | Hannes Ljungberg | |
| Regression in 3aa545281e0c0f9fac93753e3769df9e0334dbaa. Thanks Hervé Le Roy for the report. | |||
| 2021-12-03 | Fixed #33078 -- Added support for language regions in i18n_patterns(). | Maxim Piskunov | |
| 2021-12-03 | Fixed #33333 -- Fixed setUpTestData() crash with models.BinaryField on ↵ | Mariusz Felisiak | |
| PostgreSQL. This makes models.BinaryField pickleable on PostgreSQL. Regression in 3cf80d3fcf7446afdde16a2be515c423f720e54d. Thanks Adam Zimmerman for the report. | |||
| 2021-12-02 | Fixed #33334 -- Alphabetized form and model fields in reference docs. | Shivam Durgbuns | |
| 2021-12-01 | Fixed #30398 -- Added CONN_HEALTH_CHECKS database setting. | Przemysław Suliga | |
| The CONN_HEALTH_CHECKS setting can be used to enable database connection health checks for Django's persistent DB connections. Thanks Florian Apolloner for reviews. | |||
| 2021-11-30 | Added stub release notes and release date for 3.2.10, 3.1.14 and 2.2.25. | Mariusz Felisiak | |
| 2021-11-29 | Fixed #32800 -- Changed CsrfViewMiddleware not to mask the CSRF secret. | Chris Jerdonek | |
| This also adds CSRF_COOKIE_MASKED transitional setting helpful in migrating multiple instance of the same project to Django 4.1+. Thanks Florian Apolloner and Shai Berger for reviews. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2021-11-26 | Fixed #33301 -- Clarified the type of arguments required by custom assertions. | Baptiste Mispelon | |
| 2021-11-26 | Refs #33163 -- Corrected example of connection signal handlers in ↵ | Mariusz Felisiak | |
| AppConfig.ready(). | |||
| 2021-11-24 | Fixed typo in docs/releases/4.0.txt. | Ryuji Tsutsui | |
| 2021-11-24 | Fixed #33298 -- Added docs and tests for using Q objects with ↵ | mgaligniana | |
| get_object_or_404()/get_list_or_404(). | |||
| 2021-11-23 | Fixed #33304 -- Allowed passing string expressions to Window(order_by). | Simon Charette | |
| 2021-11-23 | Corrected signatures of QuerySet's methods. | Mariusz Felisiak | |
| 2021-11-22 | Corrected isort example in coding style docs. | Mariusz Felisiak | |
| Follow up to e74b3d724e5ddfef96d1d66bd1c58e7aae26fc85. | |||
| 2021-11-22 | Fixed #33302 -- Made element_id optional argument for json_script template ↵ | Baptiste Mispelon | |
| filter. Added versionchanged note in documentation | |||
| 2021-11-22 | Corrected "pip install" call in coding style docs. | Paolo Melchiorre | |
| 2021-11-18 | Added Malay language. | jhisham | |
| 2021-11-18 | Refs #19721 -- Moved ModelAdmin.list_filter docs into a separate file. | Shreya Bamne | |
| Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> | |||
| 2021-11-17 | Fixed crash building HTML docs since Sphinx 4.3. | Mariusz Felisiak | |
| See https://github.com/sphinx-doc/sphinx/commit/dd2ff3e911c751c06c81f494128fba56d8ecbafd. | |||
| 2021-11-17 | Fixed #33163 -- Added example of connection signal handlers in ↵ | Roxane | |
| AppConfig.ready() to docs. | |||
| 2021-11-12 | Fixed #33161 -- Enabled durability check for nested atomic blocks in TestCase. | Krzysztof Jagiello | |
| Co-Authored-By: Adam Johnson <me@adamj.eu> | |||
| 2021-11-12 | Refs #33247 -- Used XeLaTeX for PDF docs build. | Mariusz Felisiak | |
| 2021-11-10 | Removed DatabaseIntrospection.get_key_columns(). | Mariusz Felisiak | |
| Thanks Simon Charette for the report. | |||
| 2021-11-08 | Fixed #33264 -- Made test runner return non-zero error code for unexpected ↵ | Baptiste Mispelon | |
| successes. | |||
| 2021-11-08 | Fixed #32980 -- Made models cache related managers. | Keryn Knight | |
