Skip to content

Commit c0c4d4d

Browse files
authored
Merge pull request #13 from salesforce/add-django-5.2
updated allowed django version range, added 5.2 to test matrix
2 parents 3507630 + d3c24a6 commit c0c4d4d

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
11+
python-version: ['3.10', '3.11', '3.12']
12+
django: ['4.2', '5.2']
1213

1314
steps:
1415
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [unreleased] - XXXX-XX-XX
7+
## [1.0.4] - 2025-12-10
88
- [PR 9](https://github.com/salesforce/django-request-queue-timeout/pull/9) Update GitHub action versions
99
- [PR 10](https://github.com/salesforce/django-request-queue-timeout/pull/10) Fix Makefile install target
10+
- [PR 13](https://github.com/salesforce/django-request-queue-timeout/pull/13) Add Django 5.x support
1011

1112
## [1.0.3] - 2024-02-06
1213
- [PR 6](https://github.com/salesforce/django-request-queue-timeout/pull/6) chore: upgrade django 4.2 LTS (@W-14178534)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "django-request-queue-timeout"
7-
version = "1.0.3"
7+
version = "1.0.4"
88
description = "Django middleware class to quickly dispatch any requests that wait too long in a queue before being processed"
99
license = {file = "LICENSE.txt"}
1010
readme = "README.md"
1111
dependencies = [
12-
"django >=2.2, <5"
12+
"django >=4.2, <6"
1313
]
1414
keywords = [
1515
"django",

0 commit comments

Comments
 (0)