From 77ae30ac61e76ac79876a16ead7be628381a2552 Mon Sep 17 00:00:00 2001 From: Yuri Salimovskiy Date: Tue, 13 May 2025 16:47:03 +0300 Subject: [PATCH 1/4] Added support for AVIF images in File Manager; #4506 --- docs/fieldtypes/file.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/fieldtypes/file.md b/docs/fieldtypes/file.md index be32a47ca..14d150d1d 100755 --- a/docs/fieldtypes/file.md +++ b/docs/fieldtypes/file.md @@ -272,6 +272,20 @@ Convert the image to WEBP format. Additionally all the `:resize` manipulations c | master_dim | `auto`/`width`/`height` | `auto`| Master dimension when only width of height is specified | +### `:avif` + + {news_image:avif} + +Convert the image to AVIF format. Additionally all the `:resize` manipulations can be applied + +| Parameter | Values | Default | Description | +| --------- | ------- | ---------- | -------------------------------------- | +| width | `Number` | | Width to crop to, px | +| height | `Number` | | Height to crop to, px | +| quality | `0`-`100`| `75`| Image quality, % | +| maintain_ratio | `y` / `n` | `y`| Keep image ratio (yes/no) | +| master_dim | `auto`/`width`/`height` | `auto`| Master dimension when only width of height is specified | + ### `:resize_crop` {news_image:resize_crop resize:width="300" crop:width="100"} From 5314709f4557ee5daea57fced24ad07b9bffb32a Mon Sep 17 00:00:00 2001 From: Yuri Salimovskiy Date: Sat, 23 Aug 2025 18:19:39 +0300 Subject: [PATCH 2/4] Added title label and instruction tags to channel form --- docs/channels/channel-form/overview.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/channels/channel-form/overview.md b/docs/channels/channel-form/overview.md index 587f57e9c..a5760167c 100755 --- a/docs/channels/channel-form/overview.md +++ b/docs/channels/channel-form/overview.md @@ -265,10 +265,14 @@ If you have chosen [inline error handling](#error_handling), you can display the Display a custom field's label. +You may also use `{label:title}` to display the label for the title field as defined in Channel settings. + ### `{instructions:my_field_name}` Display a custom field's instructions. +You may also use `{instructions:title}` to display the instructions for the title field as defined in Channel settings. + ### `{selected_option:my_field_name}` In an edit form, display the selected option for the specified custom field. From 0d5b7d1edc990251b3812c740a44e984c36d3380 Mon Sep 17 00:00:00 2001 From: robinsowell Date: Thu, 28 Aug 2025 13:50:28 -0400 Subject: [PATCH 3/4] Docs for backspace param See pr in expressionengine https://github.com/ExpressionEngine/ExpressionEngine/pull/4954 --- docs/comment/entries.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/comment/entries.md b/docs/comment/entries.md index 59a4c6794..be2340ee5 100755 --- a/docs/comment/entries.md +++ b/docs/comment/entries.md @@ -32,6 +32,12 @@ NOTE: **Important:** The Comment Entries tag should **not** be nested inside of author_id="5" +### `backspace=` + +The `backspace=` parameter will remove characters, including spaces and line breaks, from the last iteration of the tag pair: + + backspace="7" + ### `channel=` channel="which" From 11151a82b8c4ff425129bbed6617c0836ffe438b Mon Sep 17 00:00:00 2001 From: Tom Jaeger Date: Mon, 15 Sep 2025 11:39:58 -0400 Subject: [PATCH 4/4] updated changelog for 7.5.16 --- docs/installation/changelog.md | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index 410d16414..dc14e48d8 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -8,6 +8,46 @@ --> # ExpressionEngine v7 Change Log +## Version 7.5.16 +(Release: September 15th, 2025) +
+
+ +
+
+ + +**Bug Fixes** �� + +- Resolved [#4921](https://github.com/ExpressionEngine/ExpressionEngine/issues/4921) where saving File model from CLI was producing an error [#4949](https://github.com/ExpressionEngine/ExpressionEngine/pull/4949) +- Resolved [#4918](https://github.com/ExpressionEngine/ExpressionEngine/issues/4918) where some queries were duplicated when using Member field inside of a Grid [#4948](https://github.com/ExpressionEngine/ExpressionEngine/pull/4948) +- Resolved issue where the file info was not cached [#4870](https://github.com/ExpressionEngine/ExpressionEngine/pull/4870) +- Resolved [#3718](https://github.com/ExpressionEngine/ExpressionEngine/issues/3718) where the ability to edit entries from Relationship field was misbehaving sometimes [#4828](https://github.com/ExpressionEngine/ExpressionEngine/pull/4828) + +**Enhancements** ✨ + +- Added title label and instruction tags to Channel Form [#4906](https://github.com/ExpressionEngine/ExpressionEngine/pull/4906) +- Added support for AVIF images in File Manager [#4837](https://github.com/ExpressionEngine/ExpressionEngine/pull/4837) +- Made "View Page" link in Structure open in a new tab [#4383](https://github.com/ExpressionEngine/ExpressionEngine/pull/4383) +- Changed template no-access language [#4956](https://github.com/ExpressionEngine/ExpressionEngine/pull/4956) +- Added the `backspace` parameter to `{exp:channel:entries}` tag [#4954](https://github.com/ExpressionEngine/ExpressionEngine/pull/4954) +- Allowed Upload Destination adapter to be overridden in config [#4946](https://github.com/ExpressionEngine/ExpressionEngine/pull/4946) +- Added new CLI commands and JSON output options [#4969](https://github.com/ExpressionEngine/ExpressionEngine/pull/4969) +- Added additional HTTP status codes [#4976](https://github.com/ExpressionEngine/ExpressionEngine/pull/4976), including 422 [#4975](https://github.com/ExpressionEngine/ExpressionEngine/pull/4975) + +**Developers** 💻 + +- Added extension hooks for the Updater service [#4951](https://github.com/ExpressionEngine/ExpressionEngine/pull/4951) +- Added tests for Structure module [#4957](https://github.com/ExpressionEngine/ExpressionEngine/pull/4957) + ## Version 7.5.15 (Release: August 20th, 2025)