| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-02-04 | Refs #35612 -- Extended docs on how the security team evaluates reports. | nessita | |
| Co-authored-by: Shai Berger <shai@platonix.com> | |||
| 2025-01-28 | Clarified the Releaser's discretion for determining and postponing the ↵ | Sarah Boyce | |
| release date. | |||
| 2025-01-28 | Updated the release process documentation to reflect the current process. | Sarah Boyce | |
| 2025-01-28 | Refs #36005 -- 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.12. | |||
| 2025-01-23 | Clarified feature freeze tasks in docs/internals/howto-release-django.txt. | nessita | |
| Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | |||
| 2025-01-22 | Fixed #36125 -- Switched docs to use chat.djangoproject.com when referencing ↵ | Baptiste Mispelon | |
| the Discord server. | |||
| 2025-01-20 | Refs #32193 -- Updated python-memcached to pymemcache in contributing guide. | Mariusz Felisiak | |
| Follow up to 05f3a6186efefc9fca2204a745b992501c6fd91f. | |||
| 2025-01-20 | Fixed #36005 -- Dropped support for Python 3.10 and 3.11. | Mariusz Felisiak | |
| 2025-01-15 | Advanced deprecation warnings for Django 6.0. | Sarah Boyce | |
| 2025-01-15 | Removed versionadded/changed annotations for 5.1. | Sarah Boyce | |
| This also removes remaining versionadded/changed annotations for older versions. | |||
| 2025-01-08 | Fixed #35999 -- Removed #django IRC channel references where appropriate. | Sarah Boyce | |
| Some references are replaced with links to the Django Discord server. | |||
| 2025-01-06 | Refs #35444 -- Deprecated contrib.postgres aggregates ordering for order_by. | Chris Muthig | |
| Aligns the argument with SQL standards already used in Window.order_by and sets up for adding support to Aggregate. | |||
| 2024-11-28 | Fixed #35530 -- Deprecated request.user fallback in auth.login and auth.alogin. | Jaap Roes | |
| 2024-11-27 | Removed trailing whitespace in docs. | Adam Zapletal | |
| 2024-11-14 | Replaced message suggestions from IRC to Discord in contributing docs. | AfiMaameDufie | |
| 2024-11-11 | Refs #32365 -- Removed pytz from list of test dependencies in unit test docs. | Mariusz Felisiak | |
| Follow up to e6f82438d4e3750e8d299bfd79dac98eebe9f1e0. | |||
| 2024-11-06 | Fixed #35863 -- Replaced bold text with heading level 3 in new contributors ↵ | ssanger | |
| docs. This improves accessibility for screen reader users, see WCAG SC 1.3.1 Info and Relationships: https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html | |||
| 2024-11-05 | Clarified instructions on how to claim a ticket. | Maria Hynes | |
| 2024-11-05 | Fixed typo in docs/internals/howto-release-django.txt. | Mariusz Felisiak | |
| 2024-10-30 | Fixed #35866 -- Clarified the positioning Python magic methods on models in ↵ | maddrum | |
| the internal style guide. | |||
| 2024-10-25 | Improved the writing documentation contributing guide. | Paolo Melchiorre | |
| 2024-10-25 | Improved readability of triage workflow image by increasing its size and ↵ | mbcodes | |
| color contrast. | |||
| 2024-10-16 | Expanded contributor docs on getting feedback from the wider community. | Maryam Yusuf | |
| 2024-10-11 | Fixed #35612 -- Added documentation on how the security team evaluates reports. | Sarah Boyce | |
| Co-authored-by: Joshua Olatunji <joshua+github@etentlabs.com> | |||
| 2024-09-23 | Made cosmetic edits to the Steering council docs. | Sarah Boyce | |
| 2024-09-16 | Removed setting the release schedule from Steering Council prerogatives as ↵ | Sarah Boyce | |
| per DEP 44. | |||
| 2024-08-28 | Fixed #35666 -- Documented stacklevel usage and testing, and adjusted test ↵ | Simon Charette | |
| suite accordingly. Over the years we've had multiple instances of hit and misses when emitting warnings: either setting the wrong stacklevel or not setting it at all. This work adds assertions for the existing warnings that were declaring the correct stacklevel, but were lacking tests for it. | |||
| 2024-08-05 | Used :pypi: role in docs where appropriate. | Mariusz Felisiak | |
| 2024-07-29 | Fixed #35546 -- Emphasised accepted ticket requirement in contributing docs. | Maryam Yusuf | |
| 2024-07-29 | Referenced joining the triage and review team as motivation to do PR reviews. | Maryam Yusuf | |
| 2024-07-25 | Added contributor guidelines for performance optimizations. | Sarah Boyce | |
| 2024-07-24 | Updated asgiref dependency for 5.1 release series. | Mariusz Felisiak | |
| 2024-07-04 | Replaced usage of "patch" with more precise terms in contributing docs. | Andreu Vallbona | |
| 2024-06-28 | Refs #22712 -- Corrected deprecation of "all" argument in ↵ | Mariusz Felisiak | |
| django.contrib.staticfiles.finders.find(). Features deprecated in Django 5.2 should be removed in Django 6.1. | |||
| 2024-06-24 | 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> | |||
| 2024-05-22 | Advanced deprecation warnings for Django 5.2. | Natalia | |
| 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> | |||
