| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-08-05 | [5.1.x] Used :pypi: role in docs where appropriate. | Mariusz Felisiak | |
| Backport of 304d25667433a59409e334a93acaaa9201840508 from main. | |||
| 2024-07-25 | [5.1.x] Added contributor guidelines for performance optimizations. | Sarah Boyce | |
| Backport of 2c024c9ac096d06d9e78d1ae02b52f73a45eadf8 from main. | |||
| 2024-07-24 | [5.1.x] Updated asgiref dependency for 5.1 release series. | Mariusz Felisiak | |
| Backport of df35cf578f99522dd1ba864d513be95d47bab7a5 from main. | |||
| 2024-07-04 | [5.1.x] Replaced usage of "patch" with more precise terms in contributing docs. | Andreu Vallbona | |
| Backport of 55a2e3136b13d1af95a4129001dac963c26d8415 from main. | |||
| 2024-06-24 | [5.1.x] Migrated setuptools configuration to pyproject.toml. | Claude Paroz | |
| This branch migrates setuptools configuration from setup.py/setup.cfg to pyproject.toml. In order to ensure that the generated binary files have consistent casing (both the tarball and the wheel), setuptools version is limited to ">=61.0.0,<69.3.0". Configuration for flake8 was moved to a dedicated .flake8 file since it cannot be configured via pyproject.toml. Also, __pycache__ exclusion was removed from MANIFEST and the extras/Makefile was replaced with a simpler build command. Co-authored-by: Nick Pope <nick@nickpope.me.uk> Backport of 4686541691dbe986f58ac87630c3b7a04db4ff93 from main. | |||
| 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 | Fixed #35326 -- Added allow_overwrite parameter to FileSystemStorage. | Ben Cail | |
| 2024-05-10 | Updated docs for the Django release process. | nessita | |
| 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-04-10 | Updated docs for updating translations in ↵ | nessita | |
| docs/internals/howto-release-django.txt. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2024-03-11 | Fixed #14831 -- Extended template style guide in docs. | Ryan Cheley | |
| 2024-03-06 | Fixed broken links and redirects in docs. | Mariusz Felisiak | |
| 2024-03-01 | Refs #35234 -- Deprecated CheckConstraint.check in favor of .condition. | Simon Charette | |
| Once the deprecation period ends CheckConstraint.check() can become the documented method that performs system checks for BaseConstraint subclasses. | |||
| 2024-02-23 | Fixed #35090 -- Deprecated registering URL converters with the same name. | Salvo Polizzi | |
| 2024-02-08 | Fixed typo in docs/internals/contributing/writing-code/coding-style.txt. | Koo | |
| 2024-02-05 | Changed severity levels to list in security policy docs. | shivaramkumar | |
| 2024-01-26 | Applied Black's 2024 stable style. | Mariusz Felisiak | |
| https://github.com/psf/black/releases/tag/24.1.0 | |||
| 2024-01-23 | Refs #35058 -- Deprecated OGRGeometry.coord_dim setter. | David Smith | |
| Reflecting a change in the underlying GDAL library (since GDAL 2.1) using coord_dim to set a geometries dimensions is deprecated in favor of set_3d(). | |||
| 2024-01-11 | Reorganized the Contributing to Django docs. | Mark Walker | |
| This work follows a comprehensive review conducted during the DjangoCon US 2023 sprints. Changes include: - Updated the title of the main page for better alignment with the content. - Removed emojis to enhance accessibility and avoid cultural specificity. - Improved the layout and navigation of contributing documentation. - Unified sections for communication channels and community links. - Grouped resources according to the Diátaxis systematic approach. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Co-authored-by: Daniele Procida <daniele@vurt.org> | |||
| 2024-01-02 | Fixed #35060 -- Deprecated passing positional arguments to Model.save()/asave(). | Salvo Polizzi | |
| 2023-12-05 | Deprecated django.contrib.gis.geoip2.GeoIP2.open(). | Nick Pope | |
| 2023-12-01 | Deprecated django.contrib.gis.geoip2.GeoIP2.coords(). | Nick Pope | |
| The `ordering` argument is undocumented and of limited use, so this is effectively the same as `GeoIP2.lon_lat()`. | |||
| 2023-11-30 | Improved structure of Contributing Guide start page. | Mark Walker | |
| 2023-11-28 | Refs #34380 -- Added FORMS_URLFIELD_ASSUME_HTTPS transitional setting. | Mariusz Felisiak | |
| This allows early adoption of the new default "https". | |||
| 2023-11-24 | Fixed #34983 -- Deprecated django.utils.itercompat.is_iterable(). | Nick Pope | |
| 2023-10-31 | Fixed #34462 -- Made admin log actions in bulk. | Akash Kumar Sen | |
| This also deprecates ModelAdmin.log_deletion() and LogEntryManager.log_action(). | |||
| 2023-10-21 | 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. | |||
| 2023-10-21 | Corrected note about using accents in writing documentation contributing guide. | David Smith | |
| 2023-10-18 | Refs #34043 -- Added --screenshots option to runtests.py and selenium tests. | Sarah Boyce | |
| 2023-10-09 | Refs #34043 -- Clarified how to test UI changes. | sarahboyce | |
| 2023-09-19 | Added updating the Django release process on Trac to release steps. | Mariusz Felisiak | |
| 2023-09-18 | Advanced deprecation warnings for Django 5.1. | Mariusz Felisiak | |
| 2023-09-18 | Removed versionadded/changed annotations for 4.2. | Mariusz Felisiak | |
| This also removes remaining versionadded/changed annotations for older versions. | |||
| 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). | |||
