Skip to content

Commit 9c1d36e

Browse files
committed
Bump since tags
1 parent 6bef55c commit 9c1d36e

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function perflab_render_settings_page(): void {
7070
/**
7171
* Gets dismissed admin pointer IDs.
7272
*
73-
* @since n.e.x.t
73+
* @since 4.0.0
7474
*
7575
* @return non-empty-string[] Dismissed admin pointer IDs.
7676
*/
@@ -86,7 +86,7 @@ function perflab_get_dismissed_admin_pointer_ids(): array {
8686
/**
8787
* Gets the admin pointers.
8888
*
89-
* @since n.e.x.t
89+
* @since 4.0.0
9090
*
9191
* @return array<non-empty-string, array{ content: string, plugin: non-empty-string, dismiss_if_installed: bool }> Keys are the admin pointer IDs.
9292
*/

plugins/performance-lab/includes/site-health/audit-enqueued-assets/helper.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* Audit blocking assets on the front page.
1717
*
18-
* @since n.e.x.t
18+
* @since 4.0.0
1919
*
2020
* @return array{
2121
* response: WP_Error|array{
@@ -138,7 +138,7 @@ function perflab_aea_audit_blocking_assets(): array {
138138
/**
139139
* Callback for enqueued_blocking_assets test.
140140
*
141-
* @since n.e.x.t
141+
* @since 4.0.0
142142
*
143143
* @return array{
144144
* label: string,
@@ -197,7 +197,7 @@ function perflab_aea_enqueued_blocking_assets_test(): array {
197197
/**
198198
* Callback for enqueued_blocking_assets test via AJAX.
199199
*
200-
* @since n.e.x.t
200+
* @since 4.0.0
201201
*/
202202
function perflab_aea_enqueued_ajax_blocking_assets_test(): void {
203203
check_ajax_referer( 'health-check-site-status' );
@@ -212,7 +212,7 @@ function perflab_aea_enqueued_ajax_blocking_assets_test(): void {
212212
/**
213213
* Prepares the blocking scripts audit result.
214214
*
215-
* @since n.e.x.t
215+
* @since 4.0.0
216216
*
217217
* @phpstan-param array{
218218
* scripts: array<array{ src: string, size: int|null, error: WP_Error|null }>,
@@ -305,7 +305,7 @@ static function ( $carry, $asset ): int {
305305
/**
306306
* Prepares the blocking styles audit result.
307307
*
308-
* @since n.e.x.t
308+
* @since 4.0.0
309309
*
310310
* @phpstan-param array{
311311
* scripts: array<array{ src: string, size: int|null, error: WP_Error|null }>,
@@ -398,7 +398,7 @@ static function ( $carry, $asset ): int {
398398
/**
399399
* Handles the failure of retrieving the home page to analyze blocking assets.
400400
*
401-
* @since n.e.x.t
401+
* @since 4.0.0
402402
*
403403
* @phpstan-param WP_Error|array{
404404
* headers: WpOrg\Requests\Utility\CaseInsensitiveDictionary,
@@ -477,7 +477,7 @@ function perflab_aea_blocking_assets_retrieval_failure( $response ): ?array {
477477
/**
478478
* Gets the size of the asset in bytes.
479479
*
480-
* @since n.e.x.t
480+
* @since 4.0.0
481481
*
482482
* @param string $resource_url URL of the resource.
483483
* @return int|WP_Error Size of the asset in bytes or WP_Error if the request fails.
@@ -518,7 +518,7 @@ function perflab_aea_get_asset_size( string $resource_url ) {
518518
/**
519519
* Gets headers for HTTP Basic authorization headers.
520520
*
521-
* @since n.e.x.t
521+
* @since 4.0.0
522522
*
523523
* @return array{ Authorization?: non-empty-string } Headers with copied Basic auth headers.
524524
*/
@@ -535,7 +535,7 @@ function perflab_get_http_basic_authorization_headers(): array {
535535
/**
536536
* Generates a table of blocking assets.
537537
*
538-
* @since n.e.x.t
538+
* @since 4.0.0
539539
*
540540
* @phpstan-param array{
541541
* scripts: array<array{ src: string, size: int|null, error: WP_Error|null }>,

plugins/performance-lab/load.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ function perflab_get_standalone_plugin_version_constants(): array {
158158
*
159159
* @since 1.8.0
160160
* @since 2.1.0 No longer attempts to use two of the drop-ins together.
161-
* @since n.e.x.t No longer places the drop-in on new sites by default, unless the `PERFLAB_PLACE_OBJECT_CACHE_DROPIN` constant is set to true.
161+
* @since 4.0.0 No longer places the drop-in on new sites by default, unless the `PERFLAB_PLACE_OBJECT_CACHE_DROPIN` constant is set to true.
162162
*
163163
* @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass.
164164
*/

plugins/performance-lab/tests/data/class-audit-assets-mock-assets.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22
/**
33
* @package performance-lab
4-
* @since n.e.x.t
4+
* @since 4.0.0
55
*/
66

77
/**
88
* Class Audit_Assets_Mock_Assets mocks assets for testing.
99
*
10-
* @since n.e.x.t
10+
* @since 4.0.0
1111
*/
1212
class Audit_Assets_Mock_Assets {
1313

plugins/speculation-rules/hooks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* Determines whether Speculative Loading is enabled.
1717
*
18-
* @since n.e.x.t
18+
* @since 1.6.0
1919
*
2020
* @return bool Whether enabled.
2121
*/

plugins/speculation-rules/settings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function plsr_get_eagerness_labels(): array {
4444
/**
4545
* Returns the available options for the Speculative Loading authentication and their labels.
4646
*
47-
* @since n.e.x.t
47+
* @since 1.6.0
4848
*
4949
* @return array{ logged_out: string, logged_out_and_admins: string, any: string } Associative array of `$authentication => $label` pairs.
5050
*/
@@ -59,7 +59,7 @@ function plsr_get_authentication_labels(): array {
5959
/**
6060
* Returns translated description strings for settings fields.
6161
*
62-
* @since n.e.x.t
62+
* @since 1.6.0
6363
* @access private
6464
*
6565
* @param 'mode'|'eagerness'|'authentication' $field The field name to get description for.

plugins/webp-uploads/hooks.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ function webp_uploads_render_generator(): void {
753753
* This function targets blocks like Cover and Group that may use background images,
754754
* converting them to modern image formats when appropriate.
755755
*
756-
* @since n.e.x.t
756+
* @since 2.6.0
757757
*
758758
* @phpstan-param array{
759759
* blockName: string|null,
@@ -908,7 +908,7 @@ function webp_uploads_enable_additional_mime_type_support_for_all_sizes( array $
908908
* GD cannot convert palette-based PNG to WebP/AVIF formats, causing conversion failures.
909909
* This function detects and converts palette PNG to truecolor during upload.
910910
*
911-
* @since n.e.x.t
911+
* @since 2.6.0
912912
*
913913
* @param array<string, mixed>|mixed $file The uploaded file data.
914914
* @return array<string, mixed> The modified file data.

0 commit comments

Comments
 (0)