| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-01-12 | Changed django.utils.log.log_response() to take exception instance. | Adam Johnson | |
| There's little point retrieving a fresh reference to the exception in the legacy tuple format, when it's all available via the exception instance we already have. | |||
| 2022-01-12 | Alphabetized field attributes in form topic docs. | David Smith | |
| 2022-01-12 | Fixed typo in docs/ref/contrib/admin/index.txt. | Scott Pashley | |
| 2022-01-12 | Fixed #33432 -- Fixed typo in docs/howto/outputting-csv.txt. | Zeilentaucher | |
| 2022-01-11 | Fixed #11715 -- Changed default value of ModelAdmin.actions/inlines to empty ↵ | Jacob Walls | |
| tuples. This clarifies the intended pattern of overwriting the default value rather than mutating it. | |||
| 2022-01-11 | Fixed #13251 -- Made pre/post_delete signals dispatch the origin. | mgaligniana | |
| 2022-01-11 | Fixed typo in docs/ref/contrib/admin/index.txt. | Victor Peralta | |
| 2022-01-10 | Fixed #29026 -- Added --scriptable option to makemigrations. | Jacob Walls | |
| 2022-01-10 | Fixed #33428 -- Confirmed support for PostGIS 3.2. | Nick Pope | |
| 2022-01-10 | Fixed #33426 -- Fixed ResolverMatch.__repr_() for class-based views. | Keryn Knight | |
| Regression in 7c08f26bf0439c1ed593b51b51ad847f7e262bc1. | |||
| 2022-01-10 | Corrected signatures of some functions in docs. | Mariusz Felisiak | |
| 2022-01-10 | Corrected directive for signals in django.contrib.auth docs. | Mariusz Felisiak | |
| 2022-01-08 | Fixed #33425 -- Fixed view name for CBVs on technical 404 debug page. | Keryn Knight | |
| Regression in 0c0b87725bbcffca3bc3a7a2c649995695a5ae3b. | |||
| 2022-01-07 | Fixed #33419 -- Restored marking forms.Field.help_text as HTML safe. | David | |
| Regression in 456466d932830b096d39806e291fe23ec5ed38d5. Thanks Matt Westcott for the report. | |||
| 2022-01-07 | Fixed #28628 -- Changed \d to [0-9] in regexes where appropriate. | Ad Timmering | |
| 2022-01-06 | Refs #33348 -- Deprecated passing errors=None to ↵ | Baptiste Mispelon | |
| SimpleTestCase.assertFormError()/assertFormsetErrors(). | |||
| 2022-01-06 | Fixed #33410 -- Fixed recursive capturing of callbacks by ↵ | Petter Friberg | |
| TestCase.captureOnCommitCallbacks(). Regression in d89f976bddb49fb168334960acc8979c3de991fa. | |||
| 2022-01-05 | Removed unused comment directive in CBV topic docs. | David | |
| 2022-01-05 | Fixed malformed attribute directives in docs. | David | |
| 2022-01-04 | Added CVE-2021-45115, CVE-2021-45116, and CVE-2021-45452 to security archive. | Carlton Gibson | |
| 2022-01-04 | Added stub release notes for Django 4.0.2. | Carlton Gibson | |
| 2022-01-04 | Corrected merge error in release notes. | Carlton Gibson | |
| 2022-01-04 | Fixed CVE-2021-45452 -- Fixed potential path traversal in storage subsystem. | Florian Apolloner | |
| Thanks to Dennis Brinkrolf for the report. | |||
| 2022-01-04 | Fixed CVE-2021-45116 -- Fixed potential information disclosure in dictsort ↵ | Florian Apolloner | |
| template filter. Thanks to Dennis Brinkrolf for the report. Co-authored-by: Adam Johnson <me@adamj.eu> | |||
| 2022-01-04 | Fixed CVE-2021-45115 -- Prevented DoS vector in ↵ | Florian Apolloner | |
| UserAttributeSimilarityValidator. Thanks Chris Bailey for the report. Co-authored-by: Adam Johnson <me@adamj.eu> | |||
| 2022-01-04 | Avoided suggestion of plain text database password in sessions topic. | Luke Plant | |
| 2021-12-31 | Fixed #33391 -- Clarified Aggregate.empty_result_set_value docs. | Mariusz Felisiak | |
| 2021-12-30 | Improved @display(empty_value) example in ModelAdmin.empty_value_display docs. | mangelozzi | |
| 2021-12-30 | Fixed #27936 -- Rewrote spanning multi-valued relationships docs. | Jacob Walls | |
| 2021-12-30 | Added default values to Entry's fields in making queries docs. | Mariusz Felisiak | |
| This makes it easier to create a data in examples. | |||
| 2021-12-28 | Updated example of YAML serialization format in docs. | Sergey Fursov | |
| 2021-12-28 | Avoided counting attributes and methods in docs. | Mariusz Felisiak | |
| 2021-12-28 | Added stub release notes for 4.0.1, 3.2.11, and 2.2.26 releases. | Carlton Gibson | |
| 2021-12-27 | Refs #33342 -- Deprecated ExclusionConstraint.opclasses. | Hannes Ljungberg | |
| 2021-12-24 | Fixed #33342 -- Added support for using OpClass() in exclusion constraints. | Hannes Ljungberg | |
| 2021-12-22 | Refs #32355 -- Bumped required psycopg2 version to 2.8.4. | Mariusz Felisiak | |
| psycopg2 2.8.4 is the first release to support Python 3.8. | |||
| 2021-12-22 | Refs #31026 -- Updated TemplatesSetting docs to refer to forms. | David Smith | |
| 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 | |
