From 989fcb491945588f43878a8b0b6ffa8cf61b1ed5 Mon Sep 17 00:00:00 2001 From: Demian Brecht Date: Wed, 10 Dec 2025 15:44:09 -0800 Subject: [PATCH 1/2] updated allowed django version range, added 5.2 to test matrix --- .github/workflows/tests.yml | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 033ef89..1684b5f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12'] + django: ['4.2', '5.2'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 3462dd9..58d3492 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "Django middleware class to quickly dispatch any requests that wai license = {file = "LICENSE.txt"} readme = "README.md" dependencies = [ - "django >=2.2, <5" + "django >=4.2, <6" ] keywords = [ "django", From d3c24a65ef10481d331b3521adbaceaffc57209c Mon Sep 17 00:00:00 2001 From: Demian Brecht Date: Wed, 10 Dec 2025 15:52:31 -0800 Subject: [PATCH 2/2] bump version, add to changelog --- CHANGELOG.md | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7ae135..b9c2a8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [unreleased] - XXXX-XX-XX +## [1.0.4] - 2025-12-10 - [PR 9](https://github.com/salesforce/django-request-queue-timeout/pull/9) Update GitHub action versions - [PR 10](https://github.com/salesforce/django-request-queue-timeout/pull/10) Fix Makefile install target +- [PR 13](https://github.com/salesforce/django-request-queue-timeout/pull/13) Add Django 5.x support ## [1.0.3] - 2024-02-06 - [PR 6](https://github.com/salesforce/django-request-queue-timeout/pull/6) chore: upgrade django 4.2 LTS (@W-14178534) diff --git a/pyproject.toml b/pyproject.toml index 58d3492..6cbd6ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-request-queue-timeout" -version = "1.0.3" +version = "1.0.4" description = "Django middleware class to quickly dispatch any requests that wait too long in a queue before being processed" license = {file = "LICENSE.txt"} readme = "README.md"