Add changelog entry for 4.0 - bulk actions for snippets #8574

- also add Shohan to contributors list
- resolves #8183
pull/9225/head
LB Johnston 2022-09-19 19:40:46 +10:00
rodzic bf3a054c04
commit 0e036d228f
4 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -170,6 +170,7 @@ Changelog
* Add support for previews, revisions and drafts on snippets (Sage Abdullah)
* Add "Translate" button within pages Actions dropdown when editing pages (Sage Abdullah)
* Add translated labels to the bulk actions tags and collections bulk update fields (Stefan Hammer)
* Add bulk actions support for snippet listings (Shohan Dutta Roy)
* Fix: Typo in `ResumeWorkflowActionFormatter` message (Stefan Hammer)
* Fix: Issue where `ModelAdmin` index listings with export list enabled would show buttons with an incorrect layout (Josh Woodcock)
* Fix: Throw a meaningful error when saving an image to an unrecognised image format (Christian Franke)

Wyświetl plik

@ -625,6 +625,7 @@ Contributors
* Josh Thomas
* Christophe Bastin
* Nicholas Johnson
* Shohan Dutta Roy
Translators

Wyświetl plik

@ -207,6 +207,8 @@ class CustomUserBulkAction(UserBulkAction):
...
```
(wagtailsnippets_custom_bulk_actions)=
## Adding bulk actions to the snippets listing
When creating a custom bulk action class for snippets, subclass from `wagtail.snippets.bulk_actions.snippet_bulk_action.SnippetBulkAction`

Wyświetl plik

@ -195,6 +195,7 @@ There are also many improvements to the documentation both under the hood and in
* Simplify page chooser views by converting to class-based views (Matt Westcott)
* Add "Translate" button within pages Actions dropdown when editing pages (Sage Abdullah)
* Add translated labels to the bulk actions tags and collections bulk update fields (Stefan Hammer)
* Add support for bulk actions, including [](wagtailsnippets_custom_bulk_actions) (Shohan Dutta Roy)
### Bug fixes