From 3ddecddfbe307d79cd60cc9bd36d5b1b3fc279d4 Mon Sep 17 00:00:00 2001 From: zerolab Date: Thu, 13 Jul 2023 19:41:13 +0100 Subject: [PATCH] Add release notes for #10657 --- CHANGELOG.txt | 1 + docs/releases/5.1.md | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 3f75cbd4c32a..613a32abd10f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -23,6 +23,7 @@ Changelog * Add support for `--template` option to `wagtail start` (Thibaud Colas) * Change to always cache renditions (Jake Howard) * Update link/document rich text tooltips for consistency with the inline toolbar (Albina Starykova) + * Add support for AVIF images (Aman Pandey) * Fix: Prevent choosers from failing when initial value is an unrecognised ID, e.g. when moving a page from a location where `parent_page_types` would disallow it (Dan Braghis) * Fix: Move comment notifications toggle to the comments side panel (Sage Abdullah) * Fix: Remove comment button on InlinePanel fields (Sage Abdullah) diff --git a/docs/releases/5.1.md b/docs/releases/5.1.md index a165644e81a1..45d920f5908b 100644 --- a/docs/releases/5.1.md +++ b/docs/releases/5.1.md @@ -36,13 +36,19 @@ The `boost` option on `SearchField`, to increase the ranking of search results t ### Extend Stimulus adoption -As part of tackling Wagtail’s technical debt and improving [CSP compatibility]([Title](https://github.com/wagtail/wagtail/issues/1288)), we have continued extending our usage of Stimulus, based on the plans laid out in [RFC 78: Adopt Stimulus](https://github.com/wagtail/rfcs/pull/78). +As part of tackling Wagtail’s technical debt and improving [CSP compatibility](https://github.com/wagtail/wagtail/issues/1288), we have continued extending our usage of Stimulus, based on the plans laid out in [RFC 78: Adopt Stimulus](https://github.com/wagtail/rfcs/pull/78). * Migrate Tagit initialisation to a Stimulus Controller (LB (Ben) Johnston) * Migrate legacy dropdown implementation to a Stimulus controller (Thibaud Colas) * Migrate header search behaviour to `w-swap`, a Stimulus controller (LB (Ben) Johnston) * Replace Bootstrap tooltips with a new `w-tooltip` Stimulus controller (LB (Ben) Johnston) +### AVIF image support + +Images can now be uploaded and rendered in [AVIF](https://en.wikipedia.org/wiki/AVIF) format; see [image file format](image_file_formats), +[output image format](output_image_format) and [image quality](image_quality) for further details. +This feature was developed by Aman Pandey with input from Dan Braghis, Thibaud Colas and Chris Adams. + ### Other features * Mark calls to `md5` as not being used for secure purposes, to avoid flagging on FIPS-mode systems (Sean Kelly)