Skip to content

Commit fc0e040

Browse files
authored
Merge pull request #1279 from WordPress/publish/3.2.0
Publish 3.2.0 release
2 parents 625a713 + 4529501 commit fc0e040

File tree

11 files changed

+51
-28
lines changed

11 files changed

+51
-28
lines changed

plugins/performance-lab/includes/admin/load.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ function perflab_get_plugin_settings_url( string $plugin_slug ): ?string {
475475
/**
476476
* Prints the Performance Lab install notice after each feature plugin's row meta.
477477
*
478-
* @since n.e.x.t
478+
* @since 3.2.0
479479
*
480480
* @param string $plugin_file Plugin file.
481481
*/

plugins/performance-lab/includes/server-timing/class-perflab-server-timing.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ public function use_output_buffer(): bool {
234234
* assured that other plugins' output buffer callbacks will run before the Server-Timing one that sends the
235235
* Server-Timing header.
236236
*
237-
* @since n.e.x.t
237+
* @since 3.2.0
238238
*/
239239
public function add_hooks(): void {
240240
if ( $this->use_output_buffer() ) {
@@ -264,7 +264,7 @@ public function on_template_include( $passthrough = null ) {
264264
/**
265265
* Starts output buffering to send the Server-Timing header right before returning the buffer.
266266
*
267-
* @since n.e.x.t
267+
* @since 3.2.0
268268
*/
269269
public function start_output_buffer(): void {
270270
ob_start(

plugins/performance-lab/load.php

+2-3
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 features.
66
* Requires at least: 6.4
77
* Requires PHP: 7.2
8-
* Version: 3.1.0
8+
* Version: 3.2.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', '3.1.0' );
22+
define( 'PERFLAB_VERSION', '3.2.0' );
2323
define( 'PERFLAB_MAIN_FILE', __FILE__ );
2424
define( 'PERFLAB_PLUGIN_DIR_PATH', plugin_dir_path( PERFLAB_MAIN_FILE ) );
2525
define( 'PERFLAB_SCREEN', 'performance-lab' );
@@ -108,7 +108,6 @@ function perflab_get_standalone_plugin_data(): array {
108108
'constant' => 'IMAGE_PRIORITIZER_VERSION',
109109
'experimental' => true,
110110
),
111-
// TODO: Add image loading optimization plugin, dependent of Optimization Detective, once ready for end users.
112111
'performant-translations' => array(
113112
'constant' => 'PERFORMANT_TRANSLATIONS_VERSION',
114113
),

plugins/performance-lab/readme.txt

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributors: wordpressdotorg
44
Requires at least: 6.4
55
Tested up to: 6.5
66
Requires PHP: 7.2
7-
Stable tag: 3.1.0
7+
Stable tag: 3.2.0
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010
Tags: performance, site health, measurement, optimization, diagnostics
@@ -62,6 +62,16 @@ Contributions are always welcome! Learn more about how to get involved in the [C
6262

6363
= 3.2.0 =
6464

65+
**Enhancements**
66+
67+
* Add install note after each PerfLab feature plugin in the plugin list table. ([1265](https://github.com/WordPress/performance/pull/1265))
68+
* Update plugins with new banners and icons. ([1272](https://github.com/WordPress/performance/pull/1272))
69+
70+
**Bug Fixes**
71+
72+
* Fix Server-Timing compatibility with other plugins that do output buffering. ([1260](https://github.com/WordPress/performance/pull/1260))
73+
* Harden autoloaded-options site health test for incorrectly implemented external object cache plugins. ([1238](https://github.com/WordPress/performance/pull/1238))
74+
6575
= 3.1.0 =
6676

6777
**Enhancements**

plugins/speculation-rules/load.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Enables browsers to speculatively prerender or prefetch pages when hovering over links.
66
* Requires at least: 6.4
77
* Requires PHP: 7.2
8-
* Version: 1.3.1-alpha
8+
* Version: 1.3.1
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -65,7 +65,7 @@ static function ( string $global_var_name, string $version, Closure $load ): voi
6565
}
6666
)(
6767
'plsr_pending_plugin_info',
68-
'1.3.1-alpha',
68+
'1.3.1',
6969
static function ( string $version ): void {
7070

7171
// Define the constant.

plugins/speculation-rules/readme.txt

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributors: wordpressdotorg
44
Requires at least: 6.4
55
Tested up to: 6.5
66
Requires PHP: 7.2
7-
Stable tag: 1.3.0
7+
Stable tag: 1.3.1
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010
Tags: performance, javascript, speculation rules, prerender, prefetch
@@ -114,6 +114,12 @@ Contributions are always welcome! Learn more about how to get involved in the [C
114114

115115
== Changelog ==
116116

117+
= 1.3.1 =
118+
119+
**Bug Fixes**
120+
121+
* Check if rel contains nofollow instead of being just nofollow when excluding speculative loading. ([1232](https://github.com/WordPress/performance/pull/1232))
122+
117123
= 1.3.0 =
118124

119125
**Enhancements**

plugins/webp-uploads/helper.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* for example an image/jpeg can be converted into an image/webp.
1717
*
1818
* @since 1.0.0
19-
* @since n.e.x.t Added support for AVIF.
19+
* @since 2.0.0 Added support for AVIF.
2020
*
2121
* @return array<string, array<string>> An array of valid mime types, where the key is the mime type and the value is the extension type.
2222
*/
@@ -334,7 +334,7 @@ function webp_uploads_should_discard_additional_image_file( array $original, arr
334334
*
335335
* Includes special handling for false positives on AVIF support.
336336
*
337-
* @since n.e.x.t
337+
* @since 2.0.0
338338
*
339339
* @param string $mime_type The mime type to check.
340340
* @return bool Whether the server supports a given mime type.
@@ -364,7 +364,7 @@ function webp_uploads_mime_type_supported( string $mime_type ): bool {
364364
/**
365365
* Get the image output format setting from the option. Default is avif.
366366
*
367-
* @since n.e.x.t
367+
* @since 2.0.0
368368
*
369369
* @return string The image output format. One of 'webp' or 'avif'.
370370
*/
@@ -376,7 +376,7 @@ function webp_uploads_get_image_output_format(): string {
376376
/**
377377
* Sanitizes the image format.
378378
*
379-
* @since n.e.x.t
379+
* @since 2.0.0
380380
*
381381
* @param string $image_format The image format to check.
382382
* @return string Supported image format.
@@ -388,7 +388,7 @@ function webp_uploads_sanitize_image_format( string $image_format ): string {
388388
/**
389389
* Checks if the `webp_uploads_use_picture_element` option is enabled.
390390
*
391-
* @since n.e.x.t
391+
* @since 2.0.0
392392
*
393393
* @return bool True if the option is enabled, false otherwise.
394394
*/
@@ -399,7 +399,7 @@ function webp_uploads_is_picture_element_enabled(): bool {
399399
/**
400400
* Checks if the `perflab_generate_webp_and_jpeg` option is enabled.
401401
*
402-
* @since n.e.x.t
402+
* @since 2.0.0
403403
*
404404
* @return bool True if the option is enabled, false otherwise.
405405
*/

plugins/webp-uploads/load.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Converts images to more modern formats such as WebP or AVIF during upload.
66
* Requires at least: 6.4
77
* Requires PHP: 7.2
8-
* Version: 1.1.1
8+
* Version: 2.0.0
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -25,7 +25,7 @@
2525
return;
2626
}
2727

28-
define( 'WEBP_UPLOADS_VERSION', '1.1.1' );
28+
define( 'WEBP_UPLOADS_VERSION', '2.0.0' );
2929
define( 'WEBP_UPLOADS_MAIN_FILE', plugin_basename( __FILE__ ) );
3030

3131
require_once __DIR__ . '/helper.php';

plugins/webp-uploads/picture-element.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
*
55
* @package webp-uploads
66
*
7-
* @since n.e.x.t
7+
* @since 2.0.0
88
*/
99

1010
/**
1111
* Potentially wrap an image tag in a picture element.
1212
*
13-
* @since n.e.x.t
13+
* @since 2.0.0
1414
*
1515
* @param string $image The image tag.
1616
* @param string $context The context for the image tag.
@@ -49,7 +49,7 @@ function webp_uploads_wrap_image_in_picture( string $image, string $context, int
4949
* The mime types will output in the picture element in the order they are provided.
5050
* The original image will be used as the fallback image for browsers that don't support the picture element.
5151
*
52-
* @since n.e.x.t
52+
* @since 2.0.0
5353
* @param string[] $mime_types Mime types than can be used.
5454
* @param int $attachment_id The id of the image being evaluated.
5555
*/

plugins/webp-uploads/readme.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,17 @@ By default, the Modern Image Formats plugin will only generate WebP versions of
6363
== Changelog ==
6464

6565
= 2.0.0 =
66+
67+
**Features**
68+
69+
* Add `picture` element support. ([73](https://github.com/WordPress/performance/pull/73))
6670
* Add AVIF image format support. Add setting for output image format to choose between WebP and AVIF. ([1176](https://github.com/WordPress/performance/pull/1176))
6771

72+
**Enhancements**
73+
74+
* Improve Settings->Media controls for Modern Image Formats. ([1273](https://github.com/WordPress/performance/pull/1273))
75+
* Remove obsolete fallback script now that picture element is supported. ([1269](https://github.com/WordPress/performance/pull/1269))
76+
6877
= 1.1.1 =
6978

7079
**Enhancements**
@@ -114,4 +123,4 @@ By default, the Modern Image Formats plugin will only generate WebP versions of
114123

115124
= 2.0.0 =
116125

117-
This release adds support for AVIF images and enables selecting the the output image format to choose between WebP and AVIF when both are available. AVIF is used as the default when the server supports it.
126+
This release adds support for AVIF images and enables selecting the the output image format to choose between WebP and AVIF when both are available. AVIF is used as the default when the server supports it.

plugins/webp-uploads/settings.php

+5-6
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@
1515
* Registers setting for generating JPEG in addition to the selected modern format for image uploads.
1616
*
1717
* @since 1.0.0
18-
* @since n.e.x.t The setting was made more general to cover outputting JPEG as a secondary type. The "webp" option naming
19-
* was left unchanged for backward compatibility.
20-
* @since n.e.x.t The `perflab_modern_image_format` was added to enable selecting an output format.
21-
* Currently includes AVIF and WebP.
18+
* @since 2.0.0 The setting was made more general to cover outputting JPEG as a secondary type. The "webp" option naming
19+
* was left unchanged for backward compatibility. Also, the `perflab_modern_image_format` was added to
20+
* enable selecting an output format. Currently includes AVIF and WebP.
2221
*/
2322
function webp_uploads_register_media_settings_field(): void {
2423
register_setting(
@@ -112,7 +111,7 @@ function webp_uploads_add_media_settings_fields(): void {
112111
/**
113112
* Renders the settings field for the 'perflab_modern_image_format' setting.
114113
*
115-
* @since n.e.x.t
114+
* @since 2.0.0
116115
*/
117116
function webp_uploads_generate_avif_webp_setting_callback(): void {
118117

@@ -193,7 +192,7 @@ function webp_uploads_generate_webp_jpeg_setting_callback(): void {
193192
/**
194193
* Renders the settings field for the 'webp_uploads_use_picture_element' setting.
195194
*
196-
* @since n.e.x.t
195+
* @since 2.0.0
197196
*/
198197
function webp_uploads_use_picture_element_callback(): void {
199198
// Picture element support requires the JPEG output to be enabled.

0 commit comments

Comments
 (0)