Skip to content

Commit

Permalink
Merge pull request #858 from WordPress/publish/2.7.0
Browse files Browse the repository at this point in the history
Publish 2.7.0
felixarntz authored Oct 16, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 46139e1 + 487ba3c commit 25c64e8
Showing 5 changed files with 16 additions and 9 deletions.
1 change: 0 additions & 1 deletion default-enabled-modules.php
Original file line number Diff line number Diff line change
@@ -2,7 +2,6 @@
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
return array(
'images/dominant-color-images',
'images/fetchpriority',
'images/webp-support',
'images/webp-uploads',
);
4 changes: 2 additions & 2 deletions load.php
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
* Description: Performance plugin from the WordPress Performance Team, which is a collection of standalone performance modules.
* Requires at least: 6.3
* Requires PHP: 7.0
* Version: 2.6.1
* Version: 2.7.0
* Author: WordPress Performance Team
* Author URI: https://make.wordpress.org/performance/
* License: GPLv2 or later
@@ -19,7 +19,7 @@
exit; // Exit if accessed directly.
}

define( 'PERFLAB_VERSION', '2.6.1' );
define( 'PERFLAB_VERSION', '2.7.0' );
define( 'PERFLAB_MAIN_FILE', __FILE__ );
define( 'PERFLAB_PLUGIN_DIR_PATH', plugin_dir_path( PERFLAB_MAIN_FILE ) );
define( 'PERFLAB_MODULES_SETTING', 'perflab_modules_settings' );
2 changes: 0 additions & 2 deletions module-i18n.php
Original file line number Diff line number Diff line change
@@ -3,8 +3,6 @@
$generated_i18n_strings = array(
_x( 'Dominant Color Images', 'module name', 'performance-lab' ),
_x( 'Adds support to store the dominant color of newly uploaded images and create a placeholder background of that color.', 'module description', 'performance-lab' ),
_x( 'Fetchpriority', 'module name', 'performance-lab' ),
_x( 'Adds a fetchpriority hint for the primary content image on the page to load faster.', 'module description', 'performance-lab' ),
_x( 'WebP Support Health Check', 'module name', 'performance-lab' ),
_x( 'Adds a WebP support check in Site Health status.', 'module description', 'performance-lab' ),
_x( 'WebP Uploads', 'module name', 'performance-lab' ),
2 changes: 1 addition & 1 deletion modules/images/webp-uploads/hooks.php
Original file line number Diff line number Diff line change
@@ -746,7 +746,7 @@ function webp_uploads_get_image_sizes_additional_mime_type_support() {
* Updates the quality of WebP image sizes generated by WordPress to 82.
*
* @since 1.7.0
* @since n.e.x.t Bump minimum WP to 6.3 so remove WP 6.1 related checks.
* @since 2.7.0 Bump minimum WP to 6.3 so remove WP 6.1 related checks.
*
* @param int $quality Quality level between 1 (low) and 100 (high).
* @param string $mime_type Image mime type.
16 changes: 13 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@

Contributors: wordpressdotorg
Requires at least: 6.3
Tested up to: 6.3
Tested up to: 6.4
Requires PHP: 7.0
Stable tag: 2.6.1
Stable tag: 2.7.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: performance, images, javascript, site health, measurement, object caching
@@ -18,7 +18,6 @@ The Performance Lab plugin is a collection of modules focused on enhancing perfo
Currently the plugin includes the following performance modules:

* **Dominant Color Images:** Adds support to store the dominant color of newly uploaded images and create a placeholder background of that color.
* **Fetchpriority:** Adds a fetchpriority hint for the primary content image on the page to load faster.
* **WebP Support Health Check:** Adds a WebP support check in Site Health status.
* **WebP Uploads:** Creates WebP versions for new JPEG image uploads if supported by the server.
* **Enqueued Assets Health Check:** Adds a CSS and JS resource check in Site Health status.
@@ -80,6 +79,17 @@ By default, the WebP Uploads module will only generate WebP versions of the imag

== Changelog ==

= 2.7.0 =

**Enhancements**

* Images: Remove Fetchpriority module as the functionality is now available in WordPress core. ([854](https://github.com/WordPress/performance/pull/854))
* Infrastructure: Bump minimum required PHP version to 7.0 and minimum required WP version to 6.3. ([851](https://github.com/WordPress/performance/pull/851))

**Documentation**

* Infrastructure: Publish Dominant Color Images standalone plugin. ([842](https://github.com/WordPress/performance/pull/842))

= 2.6.1 =

**Bug Fixes**

0 comments on commit 25c64e8

Please sign in to comment.