|
@@ -47,6 +47,7 @@ The `wagtail start` command now supports an optional `--template` argument that
|
|
|
* Add support for more [advanced Draftail customisation APIs](extending_the_draftail_editor_advanced) (Thibaud Colas)
|
|
|
* Add the ability to export snippets listing via `SnippetViewSet.list_export` (Sage Abdullah)
|
|
|
* Add support for adding [HTML `attrs`](panels_attrs) on `FieldPanel`, `FieldRowPanel`, `MultiFieldPanel`, and others (Aman Pandey, Antoni Martyniuk, LB (Ben) Johnston)
|
|
|
+ * Change to always cache renditions (Jake Howard)
|
|
|
|
|
|
### Bug fixes
|
|
|
|
|
@@ -274,3 +275,10 @@ The global util will be removed in a future release. It is recommended that the
|
|
|
```
|
|
|
|
|
|
Note: The `data-w-tag-options-value` is a JSON object serialised into string. Django's HTML escaping will handle it automatically when you use the `AdminTagWidget`, but if you are manually writing the attributes, be sure to use quotation marks correctly.
|
|
|
+
|
|
|
+
|
|
|
+### Image Renditions are now cached by default
|
|
|
+
|
|
|
+Wagtail will try to use the cache called "renditions". If no such cache exists, it will fall back to using the default cache.
|
|
|
+You can [configure the "renditions" cache](custom_image_renditions_cache) to use a different cache backend or to provide
|
|
|
+additional configuration parameters.
|