| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-05-22 | Added stub release notes for 5.2. | Natalia | |
| 2024-05-22 | Bumped version; main is now 5.2 pre-alpha. | Natalia | |
| 2024-05-22 | Updated man page for Django 5.1 alpha. | Natalia | |
| 2024-05-22 | Made cosmetic edits to 5.1 release notes. | Natalia | |
| 2024-05-22 | Removed empty sections from 5.1 release notes. | Natalia | |
| 2024-05-22 | Fixed #31405 -- Added LoginRequiredMiddleware. | Hisham Mahmood | |
| Co-authored-by: Adam Johnson <me@adamj.eu> Co-authored-by: Mehmet İnce <mehmet@mehmetince.net> Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | |||
| 2024-05-22 | Refs #35189 -- Removed no longer necessary JavaScript file collapse.js. | Marijke Luttekes | |
| 2024-05-22 | Refs #35189 -- Updated ModelAdmin.fieldsets screenshot in admin docs. | Natalia | |
| 2024-05-22 | Fixed #35189 -- Improved admin collapsible fieldsets by using <details> ↵ | Marijke Luttekes | |
| elements. This work improves the accessibility of the add and change pages in the admin site by adding <details> and <summary> elements to the collapsible fieldsets. This has the nice side effect of no longer requiring custom JavaScript helpers to implement the fieldsets' show/hide capabilities. Thanks to James Scholes for the accessibility advice, and to Sarah Boyce and Tom Carrick for reviews. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | |||
| 2024-05-22 | Fixed #35139 -- Prevented file read after ImageField is saved to storage. | John Parton | |
| 2024-05-21 | Fixed #18119 -- Added a DomainNameValidator validator. | Berker Peksag | |
| Thanks Claude Paroz for the review. Co-authored-by: Nina Menezes <77671865+nmenezes0@users.noreply.github.com> | |||
| 2024-05-21 | Fixed #35405 -- Converted get_cache_name into a cached property in ↵ | Adam Johnson | |
| FieldCacheMixin. FieldCacheMixin is used by related fields to track their cached values. This work migrates get_cache_name() to be a cached property to optimize performance by reducing unnecessary function calls when working with related fields, given that its value remains constant. Co-authored-by: Simon Charette <charette.s@gmail.com> Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> | |||
| 2024-05-21 | Refs #29942 -- Fixed docs build on Python < 3.9 avoiding dict union operator. | David Smith | |
| The docs build process was failing on djangoproject.com since it uses Python 3.8 and the dict union operator was added in Python 3.9. | |||
| 2024-05-21 | Refs #35326 -- Made cosmetic edits to 5.1 release notes. | Mariusz Felisiak | |
| 2024-05-21 | Fixed #35326 -- Added allow_overwrite parameter to FileSystemStorage. | Ben Cail | |
| 2024-05-17 | Fixed #35428 -- Increased parallelism of the ScryptPasswordHasher. | SaJH | |
| 2024-05-16 | Replaced fictional class 'extrapretty' in admin fieldsets docs. | Adam Johnson | |
| 2024-05-16 | Moved FileSystemStorage note in docs to the correct place. | Sarah Boyce | |
| 2024-05-15 | Fixed #35384 -- Raised FieldError when saving a file without a name to ↵ | Jonny Park | |
| FileField. | |||
| 2024-05-14 | Fixed #29942 -- Restored source file linking in docs by using the Sphinx ↵ | Joachim Jablon | |
| linkcode ext. Co-authored-by: David Smith <smithdc@gmail.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> | |||
| 2024-05-14 | Fixed #35275 -- Fixed Meta.constraints validation crash on UniqueConstraint ↵ | Mariusz Felisiak | |
| with OpClass(). This also introduces Expression.constraint_validation_compatible that allows specifying that expression should be ignored during a constraint validation. | |||
| 2024-05-13 | Replaced djangosites.org with builtwithdjango.com. | ZeyadMoustafaKamal | |
| 2024-05-10 | Updated docs for the Django release process. | nessita | |
| 2024-05-08 | Removed Redis parser_class reference from docs. | r3a96 | |
| 2024-05-07 | Added stub release notes for 5.0.7. | Natalia | |
| 2024-05-07 | Added release notes for 5.0.6 and 4.2.13. | Sarah Boyce | |
| 2024-05-06 | Added release date for 5.0.5 and 4.2.12. | Sarah Boyce | |
| 2024-05-06 | Added link to the csrf template tag in the csrf page. | alexgmin | |
| 2024-05-04 | Fixed #35426 -- Updated querysets to be a required argument of GenericPrefetch. | sobolevn | |
| 2024-05-03 | Fixed #35427 -- Corrected help text for makemessages --extension in ↵ | Shamil | |
| docs/ref/django-admin.txt. | |||
| 2024-05-03 | Refs #35422 -- Fixed typo in docs/releases/5.0.5.txt. | Natalia | |
| 2024-05-03 | Fixed #35422 -- Fixed migrations crash when altering GeneratedField ↵ | Mariusz Felisiak | |
| referencing rename field. Thanks Sarah Boyce for the report and Simon Charette for the implementation idea. | |||
| 2024-05-02 | Fixed #35359 -- Fixed migration operations ordering when adding fields ↵ | DevilsAutumn | |
| referenced by GeneratedField.expression. Thank you to Simon Charette for the review. | |||
| 2024-05-02 | Added a high contrast mode to screenshot cases. | Sarah Boyce | |
| Thank you to Sarah Abderemane and Nick Pope for the reviews. | |||
| 2024-05-02 | Clarified when ImageField attributes are set. | John Parton | |
| 2024-05-02 | Fixed rendering XOR section in docs. | Mariusz Felisiak | |
| 2024-05-02 | Refs #29280 -- Moved release note about transaction_mode to "Database ↵ | Mariusz Felisiak | |
| backends" section. | |||
| 2024-04-29 | Fixed #35412 -- Dropped support for SQLite < 3.31. | Mariusz Felisiak | |
| 2024-04-26 | Fixed #20744 -- Removed hint that arbitrary kwargs are allowed when creating ↵ | Adam Zapletal | |
| forms.Fields. | |||
| 2024-04-26 | Made confirmation prompt in squashmigrations consistent with other prompts. | Cole D | |
| Prior to this change, squashmigrations would use a [yN] prompt to ask for user confirmation. A slash was added between the yes/no options to make it consistent with other commands that print similar prompts. | |||
| 2024-04-22 | Fixed incorrect blockquotes in docs/topics/forms/index.txt. | minusf | |
| 2024-04-22 | Fixed #35392, Refs #34331 -- Allowed importing aprefetch_related_objects ↵ | James Ostrander | |
| from django.db.models. Thanks James Ostrander for the report and fix, and to Tim Graham and Mariusz Felisiak for the reviews. | |||
| 2024-04-19 | Reverted release notes for bdd76c4c3817d8e3ed5b0450d5e18e4eae096f16. | Sarah Boyce | |
| 2024-04-19 | Fixed #34994, Fixed #35386 -- Applied checkbox-row CSS class unconditionally ↵ | Adam Johnson | |
| in Admin. | |||
| 2024-04-16 | Doc'd that RemoveField also drops related database objects in PostgreSQL. | David Sanders | |
| 2024-04-16 | Fixed #35373 -- Fixed a crash when indexing a generated field on SQLite. | Simon Charette | |
| Generated fields have to be excluded from the INSERT query against the remade table including the index. Thanks Moshe Dicker for the report, David Sanders and Mariusz Felisiak for the review. | |||
| 2024-04-15 | Extended docs for Q() objects mentioning the ~ (NOT) operator. | Mohammad Kazemi | |
| Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | |||
| 2024-04-12 | Refs #35361 -- Clarified release notes for 4.2.12 and 5.0.5. | Natalia | |
| 2024-04-11 | Corrected description of list_display being a list in tutorial 7. | Aleksander Milinkevich | |
| 2024-04-10 | Fixed settings path in docs for installing SpatiaLite with Homebrew. | Adam Johnson | |
| Co-authored-by: Adam Zapletal <adamzap@gmail.com> | |||
