Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,21 @@ repos:
- id: check-yaml
- id: debug-statements
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "v2.21.1"
rev: "v2.21.2"
hooks:
- id: pyproject-fmt
# pyproject-fmt 2.21.2 (latest) still defines --table-format itself,
# which collides with toml-fmt-common>=1.3.3 that also adds the flag.
# Pin the transitive dep until a fixed pyproject-fmt release ships.
additional_dependencies: ["toml-fmt-common<1.3.3"]
args: ["--max-supported-python=3.14"]
- repo: https://github.com/adamchainz/django-upgrade
rev: "1.30.0"
hooks:
- id: django-upgrade
args: [--target-version, "5.2"]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.11"
rev: "v0.15.12"
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## 2.3.0 (UNRELEASED)

- Nothing yet
- Add support for Wagtail 7.4 LTS
- Add Python 3.14 to the Django 5.2 test matrix (Django 5.2 supports Python 3.14 since 5.2.8)

## 2.2.0 (2026-04-18)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Check out [Awesome Wagtail](https://github.com/springload/awesome-wagtail) for m
## Compatibility

- Django 5.2, 6.0
- Wagtail 7.0 LTS, 7.3
- Wagtail 7.0 LTS, 7.3, 7.4 LTS
- Python 3.10, 3.11, 3.12, 3.13, 3.14

## Installation
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies = [
]
optional-dependencies.docs = []
optional-dependencies.testing = [
"coverage>=6.5",
"coverage>=7",
"pre-commit>=4",
"tox>=4.18.1",
]
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[tox]
envlist =
; Django 5.2, supported Wagtail versions (LTS + latest)
py{310,311,312,313}-dj52-wt{70,73}-dr4
py{310,311,312,313,314}-dj52-wt{70,73,74}-dr4
; Django 6.0, supported Wagtail versions (Django 6.0 support was added in Wagtail 7.3)
py{312,313,314}-dj60-{wt73,wt74}-dr4

Expand All @@ -26,11 +26,11 @@ basepython =
py314: python3.14

deps =
dj52: Django>=5.2b1,<5.3
dj52: Django>=5.2,<5.3
dj60: Django>=6.0,<6.1
wt70: wagtail>=7.0,<7.1
wt73: wagtail>=7.3,<7.4
wt74: wagtail>=7.4rc1,<7.5
wt74: wagtail>=7.4,<7.5
dr4: django_recaptcha>=4.0.0,<5.0.0

commands =
Expand Down
2 changes: 1 addition & 1 deletion wagtailcaptcha/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.1.1"
__version__ = "2.3.0"