Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Django 5.1 by removing deprecated features #534

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Aug 28, 2024

  1. Add support for Django 5.0 by removing deprecated features

    There is only one Django feature used here that is removed in >=5.0 which is the `length_is` filter query:
    
    ```
    RemovedInDjango51Warning: The length_is template filter is deprecated in favor of the length template filter and the == operator within an {% if %} tag.
    ```
    
    A trivial change to make and the `length` feature if backwards compatile to the earliest support version this repo supports of 2.2.
    PacificGilly committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    d44a13f View commit details
    Browse the repository at this point in the history
  2. Improve documentation slightly for new developers

    The documentation was really easy to follow, but noticed that these comamnds for setting up the test app was already defined in the Makefile, so just repointed the development documentation to use the Make command instead.
    PacificGilly committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    913e795 View commit details
    Browse the repository at this point in the history