Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jazzband/django-hosts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.1
Choose a base ref
...
head repository: jazzband/django-hosts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7.0.0
Choose a head ref
  • 17 commits
  • 28 files changed
  • 9 contributors

Commits on Mar 24, 2022

  1. Configuration menu
    Copy the full SHA
    2c1a6dc View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2022

  1. Configuration menu
    Copy the full SHA
    7f858cc View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2022

  1. py311

    joshuadavidthomas authored and hramezani committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    0d4ce18 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2022

  1. Configuration menu
    Copy the full SHA
    f7a9a60 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2023

  1. Fix erroneous empty pattern matching when PARENT_HOST is defined (#128)

    * add blank + wildcard patterns testcase
    
    * suffix compiled regex according to PARENT_HOST
    
    * add `:` (port delimiter) as pattern termination
    
    * fix blank_urlconf middleware test for django 4.0+
    LeMinaw authored Jan 12, 2023
    Configuration menu
    Copy the full SHA
    591bf5d View commit details
    Browse the repository at this point in the history
  2. Add missed changelog

    hramezani committed Jan 12, 2023
    Configuration menu
    Copy the full SHA
    5ba372d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    30670e8 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2023

  1. Configuration menu
    Copy the full SHA
    03331a4 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2023

  1. Configuration menu
    Copy the full SHA
    4d4ef69 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2023

  1. Dropped Python 3.7 (#164)

    Also removed usage of `pkg_resources` in `django_hosts/__init__.py`, as
    it's been deprecated (see the "Attention" notice at the top of
    https://setuptools.pypa.io/en/latest/pkg_resources.html).
    `importlib.metadata.version()` was added in Python 3.8, which is the
    new, recommended way to get the version of an installed package.
    
    Co-authored-by: Anders <6058745+ddabble@users.noreply.github.com>
    max-muoto and ddabble committed Oct 22, 2023
    Configuration menu
    Copy the full SHA
    6519d3b View commit details
    Browse the repository at this point in the history
  2. Confirmed support for Python 3.12 (#164)

    Co-authored-by: Anders <6058745+ddabble@users.noreply.github.com>
    max-muoto and ddabble committed Oct 22, 2023
    2 Configuration menu
    Copy the full SHA
    6b6d0a4 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2023

  1. Add note to FAQ in docs (#162)

    * Add note to FAQ in docs
    
    Spent some time while implementing django-hosts and fixing our tests, so I thought it was worth adding here
    
    * Update docs/faq.rst
    
    * Update docs/faq.rst
    
    * Update docs/faq.rst
    
    ---------
    
    Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com>
    avilaton and hramezani authored Oct 27, 2023
    Configuration menu
    Copy the full SHA
    57c16c5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    17fc0b6 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Confirm support for Django 4.2 and 5.0, drop support for 4.0 and 4.1 (#…

    …166)
    
    * Ignore coverage.xml from source control
    
    It appeared after running tests, but should probably not be tracked
    
    * Confirm support for Django 4.2 and 5.0
    
    * Drop support for Django 4.0 and 4.1
    
    * Drop support for Django < 4.2
    browniebroke authored May 9, 2024
    Configuration menu
    Copy the full SHA
    625969b View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2025

  1. Update documentation links and fix typos (#172)

    * Update various links
    
    * Update MIDDLEWARE example to use list
    
    * Fix typos
    
    * Update some more redirected links
    
    * Link to english wiki page on DRY
    
    * Update docs to link to archived version of page
    
    Co-authored-by: Anders <6058745+ddabble@users.noreply.github.com>
    
    ---------
    
    Co-authored-by: Anders <6058745+ddabble@users.noreply.github.com>
    mikemanger and ddabble authored Feb 16, 2025
    Configuration menu
    Copy the full SHA
    d9479e0 View commit details
    Browse the repository at this point in the history
  2. Drop Python 3.8 and Django 5.0, add Python 3.13 and Django 5.10, upda…

    …te old code and fix tests (#171)
    
    * Bump GitHub action workflows
    
    * Test against python 3.13 and django 5.2. Drop EOL versions
    
    * Simplify tox env list for django 5.1/5.2
    
    * Fix deprecated warning in CI
    
    * Fix syntax of CI
    
    * Use Django 4.2 syntax for test HTTP headers
    
    * Use python 3 syntax for objects and super calls
    
    * Use python 3 syntax for decorators
    
    * Use python 3 syntax for strings
    
    * Add pre-commit repos for django-upgrade and pyupgrade
    
    * Remove uneeded default in middleware
    
    * Use f strings in some places
    
    * Fix flake8 issue
    
    * Updated gitignore
    
    * Updated changelog
    
    Also added the missing Django 5.2 classifier to `setup.py`.
    
    * Match quote style
    
    Co-authored-by: Anders <6058745+ddabble@users.noreply.github.com>
    
    * fixup! Match quote style
    
    * Added pre-commit-hooks
    
    ---------
    
    Co-authored-by: Anders <6058745+ddabble@users.noreply.github.com>
    mikemanger and ddabble authored Feb 16, 2025
    Configuration menu
    Copy the full SHA
    19edbfa View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2025

  1. Configuration menu
    Copy the full SHA
    3c5a903 View commit details
    Browse the repository at this point in the history
Loading