kopia lustrzana https://github.com/wagtail/wagtail
rodzic
d00c2fe12c
commit
28d55f8c24
|
@ -19,13 +19,11 @@ Changelog
|
|||
* Move `list_filter`, `filterset_class`, `search_fields`, `search_backend_name`, `list_export`, `export_filename`, `list_per_page`, and `ordering` from `SnippetViewSet` to `ModelViewSet` (Sage Abdullah)
|
||||
* Add default header titles to generic `IndexView` and `CreateView` (Sage Abdullah)
|
||||
* Allow overriding `IndexView.export_headings` via `ModelViewSet` (Christer Jensen, Sage Abdullah)
|
||||
* Change spreadsheet export headings to match listing view column headings (Christer Jensen, Sage Abdullah)
|
||||
* Support specifying a `get_object_list` method on `ChooserViewSet` (Matt Westcott)
|
||||
* Add `linked_fields` mechanism on chooser widgets to allow choices to be limited by fields on the calling page (Matt Westcott)
|
||||
* Fix: Ensure that StreamField's `FieldBlock`s correctly set the `required` and `aria-describedby` attributes (Storm Heg)
|
||||
* Fix: Avoid an error when the moderation panel (admin dashboard) contains both snippets and private pages (Matt Westcott)
|
||||
* Fix: When deleting collections, ensure the collection name is correctly shown in the success message (LB (Ben) Johnston)
|
||||
* Fix: Fix numbers, booleans, and `None` from being exported as strings (Christer Jensen)
|
||||
* Fix: Filter out comments on Page editing counts that do not correspond to a valid field / block path on the page such as when a field has been removed (Matt Westcott)
|
||||
* Docs: Document `WAGTAILADMIN_BASE_URL` on "Integrating Wagtail into a Django project" page (Shreshth Srivastava)
|
||||
* Docs: Replace incorrect screenshot for authors listing on tutorial (Shreshth Srivastava)
|
||||
|
@ -50,6 +48,8 @@ Changelog
|
|||
|
||||
* Fix: Avoid use of `ignore_conflicts` when creating extra permissions for snippets, for SQL Server compatibility (Sage Abdullah)
|
||||
* Fix: Ensure sequence on `wagtailsearchpromotions_query` table is correctly set after migrating data (Jake Howard)
|
||||
* Fix: Change spreadsheet export headings to match listing view column headings (Christer Jensen, Sage Abdullah)
|
||||
* Fix: Fix numbers, booleans, and `None` from being exported as strings (Christer Jensen)
|
||||
|
||||
|
||||
5.1.1 (14.08.2023)
|
||||
|
|
|
@ -15,3 +15,5 @@ depth: 1
|
|||
|
||||
* Avoid use of `ignore_conflicts` when creating extra permissions for snippets, for SQL Server compatibility (Sage Abdullah)
|
||||
* Ensure sequence on `wagtailsearchpromotions_query` table is correctly set after migrating data (Jake Howard)
|
||||
* Change spreadsheet export headings to match listing view column headings (Christer Jensen, Sage Abdullah)
|
||||
* Fix numbers, booleans, and `None` from being exported as strings (Christer Jensen)
|
||||
|
|
|
@ -29,7 +29,6 @@ depth: 1
|
|||
* Move `list_filter`, `filterset_class`, `search_fields`, `search_backend_name`, `list_export`, `export_filename`, `list_per_page`, and `ordering` from `SnippetViewSet` to `ModelViewSet` (Sage Abdullah)
|
||||
* Add default header titles to generic `IndexView` and `CreateView` (Sage Abdullah)
|
||||
* Allow overriding `IndexView.export_headings` via `ModelViewSet` (Christer Jensen, Sage Abdullah)
|
||||
* Change spreadsheet export headings to match listing view column headings (Christer Jensen, Sage Abdullah)
|
||||
* Support specifying a `get_object_list` method on `ChooserViewSet` (Matt Westcott)
|
||||
* Add `linked_fields` mechanism on chooser widgets to allow choices to be limited by fields on the calling page (Matt Westcott)
|
||||
|
||||
|
@ -38,7 +37,6 @@ depth: 1
|
|||
* Ensure that StreamField's `FieldBlock`s correctly set the `required` and `aria-describedby` attributes (Storm Heg)
|
||||
* Avoid an error when the moderation panel (admin dashboard) contains both snippets and private pages (Matt Westcott)
|
||||
* When deleting collections, ensure the collection name is correctly shown in the success message (LB (Ben) Johnston)
|
||||
* Fix numbers, booleans, and `None` from being exported as strings (Christer Jensen)
|
||||
* Filter out comments on Page editing counts that do not correspond to a valid field / block path on the page such as when a field has been removed (Matt Westcott)
|
||||
|
||||
### Documentation
|
||||
|
|
Ładowanie…
Reference in New Issue