You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_x( 'Adds support to store dominant color for an image and create a placeholder background with that color.', 'module description', 'performance-lab' ),
Tags: performance, images, javascript, site health, measurement, object caching
@@ -17,8 +17,8 @@ The Performance Lab plugin is a collection of modules focused on enhancing perfo
17
17
18
18
Currently the plugin includes the following performance modules:
19
19
20
-
* **WebP Uploads:** Creates WebP versions for new JPEG image uploads if supported by the server.
21
20
* **Dominant Color:** Adds support to store dominant color for an image and create a placeholder background with that color.
21
+
* **WebP Uploads:** Creates WebP versions for new JPEG image uploads if supported by the server.
22
22
* **Audit Full Page Cache:** Adds a check for full page cache in Site Health status.
23
23
* **WebP Support:** Adds a WebP support check in Site Health status.
24
24
* **Audit Autoloaded Options:** Adds a check for autoloaded options in Site Health status.
@@ -68,6 +68,31 @@ Contributions welcome! There are several ways to contribute:
68
68
69
69
== Changelog ==
70
70
71
+
= 1.3.0 =
72
+
73
+
**Enhancements**
74
+
75
+
* Images: Add replacing of images only in frontend context. ([424](https://github.com/WordPress/performance/pull/424))
76
+
* Images: Allow control for which image sizes to generate additional MIME type versions. ([415](https://github.com/WordPress/performance/pull/415))
77
+
* Images: Discard WebP image if it is larger than corresponding JPEG image. ([418](https://github.com/WordPress/performance/pull/418))
78
+
* Images: Optimize computing dominant color and transparency for images by combining the two functions. ([381](https://github.com/WordPress/performance/pull/381))
79
+
* Images: Provide fallback JPEG images in frontend when WebP is not supported by the browser. ([360](https://github.com/WordPress/performance/pull/360))
80
+
* Images: Rely on `wp_get_image_editor()` methods argument to check whether it supports dominant color methods. ([404](https://github.com/WordPress/performance/pull/404))
81
+
* Images: Remove experimental label from Dominant Color module and turn on by default for new installs. ([425](https://github.com/WordPress/performance/pull/425))
82
+
* Site Health: Remove `perflab_aea_get_resource_file_size()` in favor of `wp_filesize()`. ([380](https://github.com/WordPress/performance/pull/380))
83
+
* Site Health: Update documentation link for autoloaded options. ([408](https://github.com/WordPress/performance/pull/408))
84
+
* Infrastructure: Implement mechanism to not load module if core version is available. ([390](https://github.com/WordPress/performance/pull/390))
85
+
86
+
**Bug Fixes**
87
+
88
+
* Images: Ensure incorrect usage of `webp_uploads_upload_image_mime_transforms` filter is treated correctly. ([393](https://github.com/WordPress/performance/pull/393))
89
+
* Images: Fix PHP notice and bug in logic for when `webp_uploads_prefer_smaller_image_file` filter is set to `true`. ([397](https://github.com/WordPress/performance/pull/397))
90
+
* Images: Fix an infinite loop in the WebP fallback mechanism. ([433](https://github.com/WordPress/performance/pull/433))
91
+
* Images: Fix dominant color upload process to not override potential third-party editors. ([401](https://github.com/WordPress/performance/pull/401))
0 commit comments