| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-11-30 | [5.0.x] Improved structure of Contributing Guide start page. | Mark Walker | |
| Backport of 6ab0f8ae52ae63808071be90ac48b39d3c75bc98 from main | |||
| 2023-11-28 | [5.0.x] Refs #34380 -- Added FORMS_URLFIELD_ASSUME_HTTPS transitional setting. | Mariusz Felisiak | |
| This allows early adoption of the new default "https". Backport of a4931cd75a1780923b02e43475ba5447df3adb31 from main. | |||
| 2023-10-21 | [5.0.x] Restructured writing documentation contributing guide. | Lance Goyke | |
| This trims and clearly delineates the how to guide from the subsequent explanation with additional subheadings. These changes have been discussed with Daniele Procida at the DjangoCon US 2023 sprints. Backport of a680ac7d775ba1bdbbda03094a4a64596864421c from main | |||
| 2023-10-21 | [5.0.x] Corrected note about using accents in writing documentation ↵ | David Smith | |
| contributing guide. Backport of 16115771020eaededb56fdfbcfec978e950b6a9a from main | |||
| 2023-10-09 | [5.0.x] Refs #34043 -- Clarified how to test UI changes. | sarahboyce | |
| Backport of e083f3082c71853a01bf149bda7fdbaf58d25f4d from main | |||
| 2023-09-19 | [5.0.x] Added updating the Django release process on Trac to release steps. | Mariusz Felisiak | |
| Backport of 7c1cf585e80114b6e531b40bd2954406d033afe3 from main | |||
| 2023-09-18 | Fixed #33651 -- Added support for prefetching GenericForeignKey. | Clément Escolano | |
| Co-authored-by: revanthgss <revanthgss@almabase.com> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2023-09-12 | Renamed ChoicesMeta to ChoicesType. | Nick Pope | |
| This also uses enum.EnumType for Python 3.11+ as Python 3.11 renamed EnumMeta to EnumType. While the former is still available as an alias of the latter for now, let's prefer the canonical name for this. Check out https://docs.python.org/3/library/enum.html#enum.EnumType | |||
| 2023-09-04 | Refs #34233 -- Bumped minimum supported version of docutils to 0.19. | Jacob Walls | |
| 2023-09-01 | Fixed #34768 -- Avoided initializing colorama on non-Windows platforms. | Sulabh Katila | |
| 2023-08-31 | Fixed #34547 -- Deprecated DatabaseOperations.field_cast_sql(). | David Smith | |
| 2023-08-30 | Fixed #31262 -- Added support for mappings on model fields and ↵ | Nick Pope | |
| ChoiceField's choices. | |||
| 2023-08-10 | Fixed #33817 -- Added support for python-oracledb and deprecated cx_Oracle. | Jingbei Li | |
| 2023-06-26 | Refs #34233 -- Bumped minimum supported version of Selenium to 4.8.0. | Mariusz Felisiak | |
| This bumps minimum supported versions of selenium to the first release to support Python 3.10. | |||
| 2023-06-23 | Refs #34391 -- Updated asgiref dependency for 5.0 release series. | Mariusz Felisiak | |
| 2023-06-13 | Updated PyPI setup access in prerequisites checklist of release how-to. | nessita | |
| 2023-06-13 | Refs #30220 -- Bumped required version of Selenium to 3.8.0. | Mariusz Felisiak | |
| Follow up to 8d010f39869f107820421631111417298d1c5bb9. | |||
| 2023-06-06 | Fixed #34609 -- Deprecated calling format_html() without arguments. | devilsautumn | |
| 2023-05-22 | Fixed #34579 -- Added Django Forum to contributing guides. | Mohit Singh Sinsniwal | |
| Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2023-05-17 | Updated broken links in docs. | Mariusz Felisiak | |
| 2023-05-11 | Made explicit the location of locally-built HTML docs. | nessita | |
| 2023-04-28 | Fixed #34380 -- Allowed specifying a default URL scheme in forms.URLField. | Coen van der Kamp | |
| This also deprecates "http" as the default scheme. | |||
| 2023-04-27 | Restored multiprocessing concurrency on coverage.py settings | Marc Gibbons | |
| * Revert "Reverted "Fixed #33213 -- Doc'd testing code coverage in parallel and used it."" This reverts commit 78da5ca0c1f2ab3201f8f6cd629e80d805ea023d. * Restored coverage multiprocess concurrency with threads Investigating https://github.com/nedbat/coveragepy/issues/1585 revealed that thread tracing gets disabled when passing `concurrency = multiprocessing`. Adding `thread` restores it, and ensures that the `auser()` is reported as covered since the test suite uses `AsyncToSync` to execute this middleware (which spawns threads). | |||
| 2023-04-22 | Updated Django Transifex links. | Claude Paroz | |
| Subdomain was changed on April 3rd and redirects will stop on July 2023. | |||
| 2023-04-19 | Doc'd RemovedInDjangoXXWarning comments in deprecating a feature guide. | Sarah Boyce | |
| 2023-04-18 | Refs #16055 -- Deprecated ↵ | David Wobrock | |
| get_joining_columns()/get_reverse_joining_columns() methods. | |||
| 2023-04-17 | Fixed #22569 -- Made ModelAdmin.lookup_allowed() respect get_list_filter(). | sarahboyce | |
| Thank you Simon Meers for the initial patch. | |||
| 2023-04-17 | Used extlinks for PyPI links. | Tim Graham | |
| Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2023-04-04 | Updated release process for 2.0+ release numbering and latest practices. | Mariusz Felisiak | |
| 2023-03-30 | Fixed #34446 -- Removed unneeded and incorrect example in coding style docs. | JiriKr | |
| 2023-03-24 | Added Django Forum to mailing lists page. | Carlton Gibson | |
| 2023-03-15 | Reverted "Fixed #33213 -- Doc'd testing code coverage in parallel and used it." | Mariusz Felisiak | |
| This reverts commit 69352d85fa8412865db9e0c7f177b333c0eac3e2. Test coverage for async methods was no longer calculated with this change. | |||
| 2023-03-01 | Fixed #34140 -- Reformatted code blocks in docs with blacken-docs. | django-bot | |
| 2023-03-01 | Refs #34140 -- Added configurations to run blacken-docs linter and adjusted ↵ | Mariusz Felisiak | |
| docs. This adds: - GitHub actions, - tox configuration, - pre-commit hook, and - makefile rules to run blacken-docs linter. Co-authored-by: David Smith <smithdc@gmail.com> | |||
| 2023-02-28 | Refs #34140 -- Corrected rst code-block and various formatting issues in docs. | Joseph Victor Zammit | |
| 2023-02-22 | Fixed #34355 -- Deprecated passing positional arguments to BaseConstraint. | Xavier Fernandez | |
| 2023-02-11 | Fixed #33213 -- Doc'd testing code coverage in parallel and used it. | Paolo Melchiorre | |
| 2023-02-10 | Refs #34140 -- Applied rst code-block to non-Python examples. | Carlton Gibson | |
| Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews. | |||
| 2023-02-10 | Fixed #34324 -- Mentioned Discord server in contributing index. | p0lygun | |
| 2023-01-18 | Refs #32339 -- Deprecated transitional form renderers. | Mariusz Felisiak | |
| 2023-01-18 | Fixed #34233 -- Dropped support for Python 3.8 and 3.9. | Mariusz Felisiak | |
| 2023-01-17 | Advanced deprecation warnings for Django 5.0. | Mariusz Felisiak | |
| 2023-01-12 | Refs #26029 -- Deprecated DEFAULT_FILE_STORAGE and STATICFILES_STORAGE settings. | Jarosław Wygoda | |
| 2023-01-05 | Refs #32355 -- Bumped minimum supported versions of 3rd-party packages. | Mariusz Felisiak | |
| This bumps minimum supported versions of 3rd-party packages to the first releases to support Python 3.8. | |||
| 2022-12-20 | Refs #34118 -- Adopted asgiref coroutine detection shims. | Carlton Gibson | |
| Thanks to Mariusz Felisiak for review. | |||
| 2022-12-20 | Refs DEP 12 -- Renamed TB to Steering Council wherever mentioned. | Andrew Godwin | |
| 2022-12-09 | Fixed #33199 -- Deprecated passing positional arguments to ↵ | SirAbhi13 | |
| Signer/TimestampSigner. Thanks Jacob Walls for the implementation idea. | |||
| 2022-12-06 | Updated various links to HTTPS and new locations. | Mariusz Felisiak | |
| 2022-12-01 | Refs #33308 -- Deprecated support for passing encoded JSON string literals ↵ | Simon Charette | |
| to JSONField & co. JSON should be provided as literal Python objects an not in their encoded string literal forms. | |||
| 2022-10-24 | Improved "rebase" example for upstream changes in working with Git docs. | Smile | |
