Matt Westcott
9c60d26e1d
Release note for #10955 in 4.1.8
2023-09-27 18:54:09 +01:00
Matt Westcott
52f5912598
fix typo in 4.1.7 release notes header
2023-09-27 14:11:42 +01:00
Matt Westcott
8b35054c08
Release note for #10951 in 4.1.7
2023-09-27 13:17:49 +01:00
Matt Westcott
f336df32b1
Fill in release date for 5.1.2
2023-09-25 12:43:47 +01:00
Matt Westcott
3ae5dbd2ee
Fill in release date for 5.0.3
2023-09-25 12:42:33 +01:00
Matt Westcott
01326f67ec
Release note for #10939 in 5.1.2
2023-09-22 18:34:18 +01:00
Matt Westcott
7e39c8526c
Release note for #10916 in 5.1.2
2023-09-19 10:29:05 +01:00
Matt Westcott
67c61aa334
Release note for #10911 in 5.0.3
2023-09-18 16:02:46 +01:00
Daniel Kirkham
fd7caf3be9
Fix typo and expression in 5.1 release notes
2023-09-17 16:29:39 +10:00
LB Johnston
855fafbded
5.1.2 Changelog & release notes for #10857
2023-09-14 06:34:25 +10:00
LB Johnston
2f8fe9aa3f
Add 5.1 release notes for changed `attrs.html` template location ( #10887 )
...
Fixes #10874
2023-09-14 06:19:29 +10:00
Matt Westcott
b0f038e2d0
Release note for #10866 in 5.1.2
2023-09-11 19:07:44 +01:00
Matt Westcott
7dceae5feb
Add release note recommending the use of AutocompleteField
2023-09-11 19:07:44 +01:00
Sage Abdullah
96d596c085
Release notes for #10826 and #10827 in 5.1.2
2023-09-07 13:56:04 +01:00
Matt Westcott
256859de15
Release note for #10847 in 5.1.2
2023-09-07 12:22:32 +01:00
Matt Westcott
1eb36d51b6
Release note for #10847 in 5.0.3
2023-09-07 12:22:00 +01:00
Matt Westcott
587fb4d176
Release note for #10836 in 5.1.2
2023-09-06 17:55:42 +01:00
Matt Westcott
21fc7447fc
Release note for #10836 in 5.0.3
2023-09-06 17:54:44 +01:00
LB Johnston
2b289eb8ee
Add note to clarify that blocks are not interchangeable with model fields ( #10841 )
...
Prompted by https://stackoverflow.com/questions/76973112/unknown-fields-specified-for-a-page-model-in-wagtail-at-content-panels/76973226?noredirect=1#comment135693718_76973226 and similar misconceptions people have made in the past.
2023-08-31 08:04:00 +10:00
Sage Abdullah
30ee5256e2
Fill in release date for 5.1.1
2023-08-14 15:01:49 +01:00
Florent Lebreton
69e4409fa0
Fix read_only panels for fields with translatable choice labels
2023-08-10 13:10:12 +01:00
Sage Abdullah
42b7c2126f
Release notes for #10768
2023-08-10 13:09:44 +01:00
Sage Abdullah
e4031f5ca1
Introduce BooleanColumn for showing boolean values as tick/cross icons
2023-08-10 13:08:24 +01:00
Sage Abdullah
b5937cb2bf
Call out ModelAdmin migration guide in 5.1 upgrade considerations
2023-08-10 13:08:24 +01:00
Sage Abdullah
627c223a7a
Add docs for migrating ModelAdminGroup to SnippetViewSetGroup
2023-08-10 13:08:24 +01:00
Sage Abdullah
1890e8320d
Fill in release date for 5.1
2023-08-01 14:28:50 +01:00
Sage Abdullah
6f59eb6924
Group 5.1 upgrade considerations by impact
2023-08-01 13:37:03 +01:00
Thibaud Colas
ebd9a2307b
Update tutorial screenshots for Wagtail v5.1
2023-08-01 14:16:16 +02:00
Thibaud Colas
678b32e4e7
Move permissions consolidation and snippet enhancements to their own release notes sections
2023-08-01 14:16:08 +02:00
Sage Abdullah
2ca6708db4
Fix incorrect GroupPagePermission import in 5.1 release notes
2023-08-01 09:51:09 +01:00
Robert Rollins
d75d6e6f5d
Corrected a typo in {% page_header_buttons %} #10592
...
Fixes #10730
2023-08-01 07:44:27 +10:00
Andy Chosak
f84cea6715
Don't update the reference index while deleting it
...
The rebuild_reference_index management command starts by
deleting the entire ReferenceIndex table.
In Wagtail versions 4.1 and 4.2, all models are tracked in the
reference index. Unfortunately this also includes the
ReferenceIndex model itself. This is changed in 5.0 to only track certain Wagtail-related models [0].
This means that when rebuild_reference_index runs in versions
4.1 or 4.2, and deletes the ReferenceIndex table, it runs the code that checks whether ReferenceIndex instances have any
references.
If the index contains a large number of references (as could
happen if an upgrade to 4.1 built an index for a non-Wagtail
model), this process becomes extremely slow. There's no need
for the rebuild_reference_index command to update the index
when deleting it, so this can be significantly optimized by
disabling auto update here.
[0] https://docs.wagtail.org/en/stable/releases/5.0.html#referenceindex-no-longer-tracks-models-used-outside-of-wagtail
2023-07-31 15:38:09 +01:00
Sage Abdullah
96a2d9093b
Add migration to replace JSON null values with empty objects in log entries' data
2023-07-31 15:14:21 +01:00
Sage Abdullah
06b0c2f413
Guard against TypeError in 0088_fix_log_entry_json_timestamps migration
...
Old logs may have the data set to JSON `null` instead of an empty JSON
object `{}`.
See https://github.com/wagtail/wagtail/pull/8021#issuecomment-1658082683
and https://github.com/wagtail/wagtail/pull/9590#discussion_r1279096075
for more details.
2023-07-31 14:19:34 +01:00
Sage Abdullah
05880bfcad
Fix search_promotions 0004_copy_queries migration for long-lived Wagtail instances
...
This migration would fail on Wagtail instances that have been around
since v0.5 (when we still used django-south), because the column order
of the wagtailsearch_querydailyhits table is different from the newly-created
wagtailsearchpromotions_querydailyhits.
If you hit this issue, you deserve a 🌟
2023-07-31 11:30:37 +01:00
Sage Abdullah
0a9f7d6726
Release notes for #10174
2023-07-31 09:53:50 +01:00
Sage Abdullah
0c4156eba0
Add docs for migrating from modeladmin to snippets
2023-07-27 09:26:44 +01:00
Sage Abdullah
2d514a7f26
Fix incorrect versionchanged number for user_page_permissions deprecation
2023-07-25 13:28:33 +01:00
Sage Abdullah
b451e593a7
Fix link in custom HTML attributes in Panels documentation ( #10706 )
2023-07-21 07:03:29 +10:00
LB Johnston
143e45d474
Update Sphinx Wagtail Theme to v6.1.1 ( #10699 )
2023-07-20 07:51:18 +10:00
Dan Hayden
3c16eaae7e
Fix code block typo in streamfield_migrations.md ( #10701 )
2023-07-20 07:48:43 +10:00
LB Johnston
febf2dc2ca
Fix a few minor typos in the 5.1 release notes / changelog ( #10700 )
2023-07-20 07:47:20 +10:00
sgfost
61594a2616
Add docs for managing stored queries in searchpromotions
...
and update docs about the search -> searchpromotions migration.
2023-07-18 15:00:56 +01:00
LB Johnston
f3c3d31e23
Ensure userbar dialog can sit above other website content
...
- Fixes #10471
2023-07-18 13:53:06 +01:00
LB Johnston
ad6fd746b9
Documentation - Add recent third party tutorials
2023-07-18 21:48:59 +10:00
Storm B. Heg
fef8c4ac3c
Ensure StreamField panels validation errors are visible ( #10673 )
...
...by rendering panels as expanded, regardless of the collapse
setting specified by the Wagtail implementor.
Fixes #8990 partially.
2023-07-18 12:43:17 +01:00
LB Johnston
bebbcfb48d
Fix a few grammar / spelling typos in the 5.1 release notes
2023-07-18 21:38:52 +10:00
Sage Abdullah
191ddf8a55
Deprecate wagtail.contrib.modeladmin
2023-07-18 12:33:42 +01:00
Sage Abdullah
f8da5f1be1
Release notes for #10689
2023-07-18 10:42:14 +01:00
Matt Westcott
5fcb58f929
Deprecate Elasticsearch 5 and 6 search backends
2023-07-18 09:32:37 +01:00