File tree 3 files changed +12
-8
lines changed
src/wagtail_headless_preview
3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.8] - 2025-02-23
11
+
10
12
### Changed
11
13
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
15
19
16
20
## [ 0.7] - 2023-10-20
17
21
Original file line number Diff line number Diff line change 1
- VERSION = (0 , 7 , 0 )
1
+ VERSION = (0 , 8 , 0 )
2
2
__version__ = "." .join (map (str , VERSION ))
3
3
4
4
Original file line number Diff line number Diff line change 1
- class RemovedInWagtailHeadlessPreview070Warning (DeprecationWarning ):
1
+ class RemovedInWagtailHeadlessPreview090Warning (DeprecationWarning ):
2
2
pass
3
3
4
4
5
- class RemovedInWagtailHeadlessPreview080Warning (PendingDeprecationWarning ):
5
+ class RemovedInWagtailHeadlessPreview010Warning (PendingDeprecationWarning ):
6
6
pass
7
7
8
8
9
- removed_in_next_version_warning = RemovedInWagtailHeadlessPreview070Warning
10
- pending_deprecation_warning = RemovedInWagtailHeadlessPreview080Warning
9
+ removed_in_next_version_warning = RemovedInWagtailHeadlessPreview090Warning
10
+ pending_deprecation_warning = RemovedInWagtailHeadlessPreview010Warning
You can’t perform that action at this time.
0 commit comments