Skip to content

Commit 9be63e5

Browse files
committed
Prep release 0.8
1 parent 9601050 commit 9be63e5

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8] - 2025-02-23
11+
1012
### Changed
1113

12-
- Drop versions of Wagtail < 5.2
13-
- Add Wagtail 6.0 support
14-
- Add Django 5.0 support
14+
- Drop official support for Wagtail < 5.2 (but allow installation with >= 4.1)
15+
- Add Wagtail 6.0 and Django 5.0 to the test matrix [#62](https://github.com/torchbox/wagtail-headless-preview/pull/62) Thanks @katdom13
16+
- Update the various GitHub Actions, and switch to ruff for linting and formatting.
17+
- Make `get_client_root_url` overridable in both mixins [#59](https://github.com/torchbox/wagtail-headless-preview/pull/59)
18+
Note: if you've customised it in your page models, please update your code to add the `request` parameter
1519

1620
## [0.7] - 2023-10-20
1721

src/wagtail_headless_preview/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 7, 0)
1+
VERSION = (0, 8, 0)
22
__version__ = ".".join(map(str, VERSION))
33

44

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
class RemovedInWagtailHeadlessPreview070Warning(DeprecationWarning):
1+
class RemovedInWagtailHeadlessPreview090Warning(DeprecationWarning):
22
pass
33

44

5-
class RemovedInWagtailHeadlessPreview080Warning(PendingDeprecationWarning):
5+
class RemovedInWagtailHeadlessPreview010Warning(PendingDeprecationWarning):
66
pass
77

88

9-
removed_in_next_version_warning = RemovedInWagtailHeadlessPreview070Warning
10-
pending_deprecation_warning = RemovedInWagtailHeadlessPreview080Warning
9+
removed_in_next_version_warning = RemovedInWagtailHeadlessPreview090Warning
10+
pending_deprecation_warning = RemovedInWagtailHeadlessPreview010Warning

0 commit comments

Comments
 (0)