Skip to content

Commit 25c64e8

Browse files
authored
Merge pull request #858 from WordPress/publish/2.7.0
Publish 2.7.0
2 parents 46139e1 + 487ba3c commit 25c64e8

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

default-enabled-modules.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
33
return array(
44
'images/dominant-color-images',
5-
'images/fetchpriority',
65
'images/webp-support',
76
'images/webp-uploads',
87
);

load.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Performance plugin from the WordPress Performance Team, which is a collection of standalone performance modules.
66
* Requires at least: 6.3
77
* Requires PHP: 7.0
8-
* Version: 2.6.1
8+
* Version: 2.7.0
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -19,7 +19,7 @@
1919
exit; // Exit if accessed directly.
2020
}
2121

22-
define( 'PERFLAB_VERSION', '2.6.1' );
22+
define( 'PERFLAB_VERSION', '2.7.0' );
2323
define( 'PERFLAB_MAIN_FILE', __FILE__ );
2424
define( 'PERFLAB_PLUGIN_DIR_PATH', plugin_dir_path( PERFLAB_MAIN_FILE ) );
2525
define( 'PERFLAB_MODULES_SETTING', 'perflab_modules_settings' );

module-i18n.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
$generated_i18n_strings = array(
44
_x( 'Dominant Color Images', 'module name', 'performance-lab' ),
55
_x( 'Adds support to store the dominant color of newly uploaded images and create a placeholder background of that color.', 'module description', 'performance-lab' ),
6-
_x( 'Fetchpriority', 'module name', 'performance-lab' ),
7-
_x( 'Adds a fetchpriority hint for the primary content image on the page to load faster.', 'module description', 'performance-lab' ),
86
_x( 'WebP Support Health Check', 'module name', 'performance-lab' ),
97
_x( 'Adds a WebP support check in Site Health status.', 'module description', 'performance-lab' ),
108
_x( 'WebP Uploads', 'module name', 'performance-lab' ),

modules/images/webp-uploads/hooks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ function webp_uploads_get_image_sizes_additional_mime_type_support() {
746746
* Updates the quality of WebP image sizes generated by WordPress to 82.
747747
*
748748
* @since 1.7.0
749-
* @since n.e.x.t Bump minimum WP to 6.3 so remove WP 6.1 related checks.
749+
* @since 2.7.0 Bump minimum WP to 6.3 so remove WP 6.1 related checks.
750750
*
751751
* @param int $quality Quality level between 1 (low) and 100 (high).
752752
* @param string $mime_type Image mime type.

readme.txt

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Contributors: wordpressdotorg
44
Requires at least: 6.3
5-
Tested up to: 6.3
5+
Tested up to: 6.4
66
Requires PHP: 7.0
7-
Stable tag: 2.6.1
7+
Stable tag: 2.7.0
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010
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
1818
Currently the plugin includes the following performance modules:
1919

2020
* **Dominant Color Images:** Adds support to store the dominant color of newly uploaded images and create a placeholder background of that color.
21-
* **Fetchpriority:** Adds a fetchpriority hint for the primary content image on the page to load faster.
2221
* **WebP Support Health Check:** Adds a WebP support check in Site Health status.
2322
* **WebP Uploads:** Creates WebP versions for new JPEG image uploads if supported by the server.
2423
* **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
8079

8180
== Changelog ==
8281

82+
= 2.7.0 =
83+
84+
**Enhancements**
85+
86+
* Images: Remove Fetchpriority module as the functionality is now available in WordPress core. ([854](https://github.com/WordPress/performance/pull/854))
87+
* 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))
88+
89+
**Documentation**
90+
91+
* Infrastructure: Publish Dominant Color Images standalone plugin. ([842](https://github.com/WordPress/performance/pull/842))
92+
8393
= 2.6.1 =
8494

8595
**Bug Fixes**

0 commit comments

Comments
 (0)