From 3f5559eda6feee021d2419dff76fe1d6a9bce221 Mon Sep 17 00:00:00 2001 From: dilirity Date: Wed, 9 Oct 2024 11:57:20 +0000 Subject: [PATCH] Sync my jetpack's Boost page with Boost's getting started page (#39130) * Sync my jetpack's Boost page with Boost's getting started page * add changelog * Remove unused prop * Update Boost pricing table to rely on the same data as my jetpack * Add features list component to reduce code repetition * Fix type incompatibility * Remove unused code * add changelog * Reduce localized data * Update premium pricing to rely on my jetpack variables instead of own * Remove unused type * Use data sync for 'my jetpack' data instead of directly localizing * Add test for my jetpack data in Boost * Fix test signature * Update prop name * Simplify tests * Update php tests to be less strict in terms of feature order * Add a check for feature count Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/11254216832 Upstream-Ref: Automattic/jetpack@7ddcd05cc8fae08aeb0561ad025cbedc06f49711 --- .../jetpack-my-jetpack/CHANGELOG.md | 1 + .../src/products/class-boost.php | 97 +++++++++++++++---- jetpack_vendor/i18n-map.php | 2 +- vendor/composer/installed.json | 60 ++++++------ vendor/composer/installed.php | 60 ++++++------ vendor/composer/jetpack_autoload_classmap.php | 60 ++++++------ 6 files changed, 169 insertions(+), 111 deletions(-) diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md index 5121422c..71b94915 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This is an alpha version! The changes listed here are not final. ### Changed +- Update Boost's pricing table to include latest feature list. - Updated package dependencies. ### Fixed diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php b/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php index a9f9b0f5..9a605733 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php @@ -134,7 +134,7 @@ public static function get_tiers() { public static function get_features_by_tier() { return array( array( - 'name' => __( 'Optimize CSS Loading', 'jetpack-my-jetpack' ), + 'name' => __( 'Auto CSS Optimization', 'jetpack-my-jetpack' ), 'info' => array( 'content' => __( 'Move important styling information to the start of the page, which helps pages display your content sooner, so your users don’t have to wait for the entire page to load. Commonly referred to as Critical CSS.', @@ -143,8 +143,8 @@ public static function get_features_by_tier() { ), 'tiers' => array( self::FREE_TIER_SLUG => array( - 'included' => true, - 'description' => __( 'Must be done manually', 'jetpack-my-jetpack' ), + 'included' => false, + 'description' => __( 'Manual', 'jetpack-my-jetpack' ), 'info' => array( 'title' => __( 'Manual Critical CSS regeneration', 'jetpack-my-jetpack' ), 'content' => __( @@ -163,7 +163,7 @@ public static function get_features_by_tier() { ), self::UPGRADED_TIER_SLUG => array( 'included' => true, - 'description' => __( 'Automatically updated', 'jetpack-my-jetpack' ), + 'description' => __( 'Included', 'jetpack-my-jetpack' ), 'info' => array( 'title' => __( 'Automatic Critical CSS regeneration', 'jetpack-my-jetpack' ), 'content' => __( @@ -176,15 +176,51 @@ public static function get_features_by_tier() { ), ), array( - 'name' => __( 'Defer non-essential JavaScript', 'jetpack-my-jetpack' ), + 'name' => __( 'Automatic image size analysis', 'jetpack-my-jetpack' ), 'info' => array( 'content' => __( - 'Run non-essential JavaScript after the page has loaded so that styles and images can load more quickly.', + 'Scan your site for images that aren’t properly sized for the device they’re being viewed on.', + 'jetpack-my-jetpack' + ), + ), + 'tiers' => array( + self::FREE_TIER_SLUG => array( 'included' => false ), + self::UPGRADED_TIER_SLUG => array( 'included' => true ), + ), + ), + array( + 'name' => __( 'Historical performance scores', 'jetpack-my-jetpack' ), + 'info' => array( + 'content' => __( + 'Get access to your historical performance scores and see advanced Core Web Vitals data.', 'jetpack-my-jetpack' ), - 'link' => array( - 'id' => 'jetpack-boost-defer-js', - 'title' => 'web.dev', + ), + 'tiers' => array( + self::FREE_TIER_SLUG => array( 'included' => false ), + self::UPGRADED_TIER_SLUG => array( 'included' => true ), + ), + ), + array( + 'name' => __( 'Dedicated email support', 'jetpack-my-jetpack' ), + 'info' => array( + 'content' => __( + '

Paid customers get dedicated email support from our world-class Happiness Engineers to help with any issue.

+

All other questions are handled by our team as quickly as we are able to go through the WordPress support forum.

', + 'jetpack-my-jetpack' + ), + ), + 'tiers' => array( + self::FREE_TIER_SLUG => array( 'included' => false ), + self::UPGRADED_TIER_SLUG => array( 'included' => true ), + ), + ), + array( + 'name' => __( 'Page Cache', 'jetpack-my-jetpack' ), + 'info' => array( + 'content' => __( + 'Page caching speeds up load times by storing a copy of each web page on the first visit, allowing subsequent visits to be served instantly. This reduces server load and improves user experience by delivering content faster, without waiting for the page to be generated again.', + 'jetpack-my-jetpack' ), ), 'tiers' => array( @@ -193,15 +229,37 @@ public static function get_features_by_tier() { ), ), array( - 'name' => __( 'Lazy image loading', 'jetpack-my-jetpack' ), + 'name' => __( 'Image CDN Quality Settings', 'jetpack-my-jetpack' ), 'info' => array( 'content' => __( - 'Improve page loading speed by only loading images when they are required.', + 'Fine-tune image quality settings to your liking.', 'jetpack-my-jetpack' ), - 'link' => array( - 'id' => 'jetpack-boost-lazy-load', - 'title' => 'web.dev', + ), + 'tiers' => array( + self::FREE_TIER_SLUG => array( 'included' => false ), + self::UPGRADED_TIER_SLUG => array( 'included' => true ), + ), + ), + array( + 'name' => __( 'Image CDN Auto-Resize Lazy Images', 'jetpack-my-jetpack' ), + 'info' => array( + 'content' => __( + 'Optimizes lazy-loaded images by dynamically serving perfectly sized images for each device.', + 'jetpack-my-jetpack' + ), + ), + 'tiers' => array( + self::FREE_TIER_SLUG => array( 'included' => false ), + self::UPGRADED_TIER_SLUG => array( 'included' => true ), + ), + ), + array( + 'name' => __( 'Image CDN', 'jetpack-my-jetpack' ), + 'info' => array( + 'content' => __( + 'Deliver images from Jetpack\'s Content Delivery Network. Automatically resizes your images to an appropriate size, converts them to modern efficient formats like WebP, and serves them from a worldwide network of servers.', + 'jetpack-my-jetpack' ), ), 'tiers' => array( @@ -223,10 +281,10 @@ public static function get_features_by_tier() { ), ), array( - 'name' => __( 'Image CDN', 'jetpack-my-jetpack' ), + 'name' => __( 'Defer non-essential JavaScript', 'jetpack-my-jetpack' ), 'info' => array( 'content' => __( - 'Deliver images from Jetpack\'s Content Delivery Network. Automatically resizes your images to an appropriate size, converts them to modern efficient formats like WebP, and serves them from a worldwide network of servers.', + 'Run non-essential JavaScript after the page has loaded so that styles and images can load more quickly.', 'jetpack-my-jetpack' ), ), @@ -236,16 +294,15 @@ public static function get_features_by_tier() { ), ), array( - 'name' => __( 'Dedicated email support', 'jetpack-my-jetpack' ), + 'name' => __( 'Concatenate JS and CSS', 'jetpack-my-jetpack' ), 'info' => array( 'content' => __( - '

Paid customers get dedicated email support from our world-class Happiness Engineers to help with any issue.

-

All other questions are handled by our team as quickly as we are able to go through the WordPress support forum.

', + 'Boost your website performance by merging and compressing JavaScript and CSS files, reducing site loading time and number of requests.', 'jetpack-my-jetpack' ), ), 'tiers' => array( - self::FREE_TIER_SLUG => array( 'included' => false ), + self::FREE_TIER_SLUG => array( 'included' => true ), self::UPGRADED_TIER_SLUG => array( 'included' => true ), ), ), diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index fbd0b61b..66448a80 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -46,7 +46,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '4.35.12-alpha1728402891', + 'ver' => '4.35.12-alpha1728474109', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 40459394..7da76f1f 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -7,7 +7,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-a8c-mc-stats", - "reference": "91b29ff074061f64ea6a6d3d5381de5f5db56fc4" + "reference": "cf6f504b1c5678242814786e75ce7896a46a9bbe" }, "require": { "php": ">=7.0" @@ -60,7 +60,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "ada1741be421a28e1a253c48e4ee981abdd85de6" + "reference": "98abad2c8d79bc539cb0e987d5772dc9975e27ed" }, "require": { "php": ">=7.0" @@ -125,7 +125,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "7a9e2a6c2057743bf7d784c2b00ffcd9fa96d7fd" + "reference": "fd3cb6112bd8468cdf31465759ef6ba07c21a482" }, "require": { "automattic/jetpack-constants": "^2.0.4", @@ -194,7 +194,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "bb26b391a3e5a6c8dd8864310cc6c1cecd7a88f9" + "reference": "43d898e5c43cf1957dc3d1b1b2ac09abb49519fe" }, "require": { "composer-plugin-api": "^1.1 || ^2.0", @@ -261,7 +261,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "b5351e3b9c857c9468a12b48e336a12b9905c6fe" + "reference": "065c37fc1bbbb129836ee0f9f26093a88743c7e6" }, "require": { "automattic/jetpack-connection": "^5.1.2", @@ -329,7 +329,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "37c649c5c01254692580053b1f77b9f2ab4d9904" + "reference": "1a6b2a8383a513d58f5ec29dc3eff6a8bc1844ba" }, "require": { "automattic/jetpack-boost-core": "^0.2.12", @@ -405,7 +405,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "d86240dcc4b969f3f5ac82ddb077d4ee4c8889e1" + "reference": "b5c89a6c8d448a4ae0e43f155a45808882601885" }, "require": { "composer-plugin-api": "^2.1.0", @@ -465,7 +465,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "8705f3c156970b5ddaf99ad43ee3a83bc4e9df64" + "reference": "f6272747c2469f63c74ac5cb684ba6f1d4d984bc" }, "require": { "php": ">=7.0" @@ -540,7 +540,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "af87b9cdf4caa08c5c4cf62a15829917e3ef8b1c" + "reference": "88b64f5d9b69a333d31abd114cfb98597ac508ee" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.3", @@ -630,7 +630,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "3018042ff98a8dc8ad8e772a4a7ae6d27ef90114" + "reference": "44b34e0c660949367dbf88098d1d1c5536d35932" }, "require": { "php": ">=7.0" @@ -684,7 +684,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "c06f67e9297f93f2322fce31c2a7f31dc40d27e1" + "reference": "80b903396c731f7174694f4be30750e62e9ca334" }, "require": { "php": ">=7.0" @@ -737,7 +737,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "a69a39b779fa1f6b89d6422e4f659655133e4db8" + "reference": "b1ca007b6804942c7b5440f49118b8217200a37b" }, "require": { "automattic/jetpack-connection": "^5.1.2", @@ -812,7 +812,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "57e5efb8a74d57bc078f04b4133a407991273716" + "reference": "d5ac594336740dc136af04c6cbd1fb5bfe7b0198" }, "require": { "php": ">=7.0" @@ -870,7 +870,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "6a4bc369593a5c9028b5f5457bd1ebdba64bb37c" + "reference": "bd1a22ea8f8037684c465dd94012021f9f959892" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.3", @@ -945,7 +945,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "affcf1423670b580bfab8629f92ef911638ec377" + "reference": "d3cc2104d596ff5145578e21c3ad348222015e88" }, "require": { "automattic/jetpack-connection": "^5.1.2", @@ -1007,7 +1007,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "77b20b6e7342459b21058595a9f0a03dc94b71a4" + "reference": "82a11136f0b88915d9129fb164139a9ccd8127b1" }, "require": { "php": ">=7.0" @@ -1055,12 +1055,12 @@ }, { "name": "automattic/jetpack-my-jetpack", - "version": "4.35.12-alpha.1728402891", - "version_normalized": "4.35.12.0-alpha1728402891", + "version": "4.35.12-alpha.1728474109", + "version_normalized": "4.35.12.0-alpha1728474109", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "8771b194ac8ddcba32ea3dc45a784d28ed09953c" + "reference": "d9ad26419e5a6b23acaac58ee7828496e8d31c2f" }, "require": { "automattic/jetpack-admin-ui": "^0.4.5", @@ -1162,7 +1162,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "61a539562ce51a45b140b4f12da1ba04e0a30235" + "reference": "d36f2efe6c17463a7b984fe762634e78b8cd6bda" }, "require": { "php": ">=7.0" @@ -1223,7 +1223,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "0a802fe47a0ae4a7d0fc68ced147ff07d7fa6018" + "reference": "841a975b3d05c436c768145880edb2ac955425d8" }, "require": { "automattic/jetpack-connection": "^5.1.2", @@ -1291,7 +1291,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "ffcc430cc5221be16fc079d47f82833b32037fe9" + "reference": "2846cc667c7af96dd275e48cba54e96486fb4459" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.3", @@ -1347,7 +1347,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "0353dc553abb1c2f32f296fa09842a0fb55f9286" + "reference": "aca8ecace0755b83c018a942cebc75b2a66f87bb" }, "require": { "php": ">=7.0" @@ -1417,7 +1417,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "424df4a956a91ec60a45aacdbdf68ab0823ed33c" + "reference": "2baa5a9fe3f82e95afabb229e4ac778b7e2c9dc7" }, "require": { "automattic/jetpack-connection": "^5.1.2", @@ -1492,7 +1492,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "bea8fb38115f94b15284945c83b7ea591aa0be2c" + "reference": "246b200f4b885d59ef85b9ae80208c78a40718ff" }, "require": { "automattic/jetpack-status": "^4.0.2", @@ -1547,7 +1547,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "ff5084e46034b31367b4131bc6bb870b9813f28c" + "reference": "0aacfc892791e43274bc4b663dc4eb667b63484a" }, "require": { "php": ">=7.0" @@ -1601,7 +1601,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-search", - "reference": "cf83f0cd1fd88abf2988fbcb4588604502d6edc6" + "reference": "8464c8d5b6e8f3312366242db9d2b086cff0efee" }, "require": { "automattic/jetpack-assets": "^2.3.9", @@ -1689,7 +1689,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "a53345ac2958940260bd5aa3a12aa79e35fb5afa" + "reference": "9e29f2dcca975670b8f7866d366dca6d33abc57a" }, "require": { "automattic/jetpack-connection": "^5.1.2", @@ -1756,7 +1756,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "241ea744a1e08c3ecd96a4d48bb98d5b0ce5c5fb" + "reference": "a25b9aa7bd68b63b6061a96f3fa9af4d3f3a3893" }, "require": { "automattic/jetpack-constants": "^2.0.4", @@ -1820,7 +1820,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "8516656e6184390e9dc034d2a993b21a2c80b42a" + "reference": "eacece9977bcccf55bd3b878e35c15f4f2648489" }, "require": { "automattic/jetpack-connection": "^5.1.2", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 61ad8087..92f022c1 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,7 +13,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '2.0.3', 'version' => '2.0.3.0', - 'reference' => '91b29ff074061f64ea6a6d3d5381de5f5db56fc4', + 'reference' => 'cf6f504b1c5678242814786e75ce7896a46a9bbe', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), @@ -22,7 +22,7 @@ 'automattic/jetpack-admin-ui' => array( 'pretty_version' => '0.4.5', 'version' => '0.4.5.0', - 'reference' => 'ada1741be421a28e1a253c48e4ee981abdd85de6', + 'reference' => '98abad2c8d79bc539cb0e987d5772dc9975e27ed', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '2.3.9', 'version' => '2.3.9.0', - 'reference' => '7a9e2a6c2057743bf7d784c2b00ffcd9fa96d7fd', + 'reference' => 'fd3cb6112bd8468cdf31465759ef6ba07c21a482', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '3.1.1-alpha.1728331053', 'version' => '3.1.1.0-alpha1728331053', - 'reference' => 'bb26b391a3e5a6c8dd8864310cc6c1cecd7a88f9', + 'reference' => '43d898e5c43cf1957dc3d1b1b2ac09abb49519fe', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.2.12', 'version' => '0.2.12.0', - 'reference' => 'b5351e3b9c857c9468a12b48e336a12b9905c6fe', + 'reference' => '065c37fc1bbbb129836ee0f9f26093a88743c7e6', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-core', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-boost-speed-score' => array( 'pretty_version' => '0.3.12', 'version' => '0.3.12.0', - 'reference' => '37c649c5c01254692580053b1f77b9f2ab4d9904', + 'reference' => '1a6b2a8383a513d58f5ec29dc3eff6a8bc1844ba', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-speed-score', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '2.0.3', 'version' => '2.0.3.0', - 'reference' => 'd86240dcc4b969f3f5ac82ddb077d4ee4c8889e1', + 'reference' => 'b5c89a6c8d448a4ae0e43f155a45808882601885', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => '8705f3c156970b5ddaf99ad43ee3a83bc4e9df64', + 'reference' => 'f6272747c2469f63c74ac5cb684ba6f1d4d984bc', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-connection' => array( 'pretty_version' => '5.1.2', 'version' => '5.1.2.0', - 'reference' => 'af87b9cdf4caa08c5c4cf62a15829917e3ef8b1c', + 'reference' => '88b64f5d9b69a333d31abd114cfb98597ac508ee', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => '3018042ff98a8dc8ad8e772a4a7ae6d27ef90114', + 'reference' => '44b34e0c660949367dbf88098d1d1c5536d35932', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '2.1.5', 'version' => '2.1.5.0', - 'reference' => 'c06f67e9297f93f2322fce31c2a7f31dc40d27e1', + 'reference' => '80b903396c731f7174694f4be30750e62e9ca334', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-explat' => array( 'pretty_version' => '0.1.11-alpha.1728400476', 'version' => '0.1.11.0-alpha1728400476', - 'reference' => 'a69a39b779fa1f6b89d6422e4f659655133e4db8', + 'reference' => 'b1ca007b6804942c7b5440f49118b8217200a37b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.3.0', 'version' => '0.3.0.0', - 'reference' => '57e5efb8a74d57bc078f04b4133a407991273716', + 'reference' => 'd5ac594336740dc136af04c6cbd1fb5bfe7b0198', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '3.1.24', 'version' => '3.1.24.0', - 'reference' => '6a4bc369593a5c9028b5f5457bd1ebdba64bb37c', + 'reference' => 'bd1a22ea8f8037684c465dd94012021f9f959892', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '2.0.10', 'version' => '2.0.10.0', - 'reference' => 'affcf1423670b580bfab8629f92ef911638ec377', + 'reference' => 'd3cc2104d596ff5145578e21c3ad348222015e88', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -148,16 +148,16 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => '77b20b6e7342459b21058595a9f0a03dc94b71a4', + 'reference' => '82a11136f0b88915d9129fb164139a9ccd8127b1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => '4.35.12-alpha.1728402891', - 'version' => '4.35.12.0-alpha1728402891', - 'reference' => '8771b194ac8ddcba32ea3dc45a784d28ed09953c', + 'pretty_version' => '4.35.12-alpha.1728474109', + 'version' => '4.35.12.0-alpha1728474109', + 'reference' => 'd9ad26419e5a6b23acaac58ee7828496e8d31c2f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.3.2', 'version' => '0.3.2.0', - 'reference' => '61a539562ce51a45b140b4f12da1ba04e0a30235', + 'reference' => 'd36f2efe6c17463a7b984fe762634e78b8cd6bda', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.4.11', 'version' => '0.4.11.0', - 'reference' => '0a802fe47a0ae4a7d0fc68ced147ff07d7fa6018', + 'reference' => '841a975b3d05c436c768145880edb2ac955425d8', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.4.3', 'version' => '0.4.3.0', - 'reference' => 'ffcc430cc5221be16fc079d47f82833b32037fe9', + 'reference' => '2846cc667c7af96dd275e48cba54e96486fb4459', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-protect-models' => array( 'pretty_version' => '0.3.0', 'version' => '0.3.0.0', - 'reference' => '0353dc553abb1c2f32f296fa09842a0fb55f9286', + 'reference' => 'aca8ecace0755b83c018a942cebc75b2a66f87bb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-models', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-protect-status' => array( 'pretty_version' => '0.2.0', 'version' => '0.2.0.0', - 'reference' => '424df4a956a91ec60a45aacdbdf68ab0823ed33c', + 'reference' => '2baa5a9fe3f82e95afabb229e4ac778b7e2c9dc7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => 'bea8fb38115f94b15284945c83b7ea591aa0be2c', + 'reference' => '246b200f4b885d59ef85b9ae80208c78a40718ff', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -220,7 +220,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '2.0.3', 'version' => '2.0.3.0', - 'reference' => 'ff5084e46034b31367b4131bc6bb870b9813f28c', + 'reference' => '0aacfc892791e43274bc4b663dc4eb667b63484a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -229,7 +229,7 @@ 'automattic/jetpack-search' => array( 'pretty_version' => '0.45.7', 'version' => '0.45.7.0', - 'reference' => 'cf83f0cd1fd88abf2988fbcb4588604502d6edc6', + 'reference' => '8464c8d5b6e8f3312366242db9d2b086cff0efee', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search', 'aliases' => array(), @@ -247,7 +247,7 @@ 'automattic/jetpack-stats' => array( 'pretty_version' => '0.13.3', 'version' => '0.13.3.0', - 'reference' => 'a53345ac2958940260bd5aa3a12aa79e35fb5afa', + 'reference' => '9e29f2dcca975670b8f7866d366dca6d33abc57a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats', 'aliases' => array(), @@ -256,7 +256,7 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '4.0.2', 'version' => '4.0.2.0', - 'reference' => '241ea744a1e08c3ecd96a4d48bb98d5b0ce5c5fb', + 'reference' => 'a25b9aa7bd68b63b6061a96f3fa9af4d3f3a3893', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -265,7 +265,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '3.14.0-alpha.1728373566', 'version' => '3.14.0.0-alpha1728373566', - 'reference' => '8516656e6184390e9dc034d2a993b21a2c80b42a', + 'reference' => 'eacece9977bcccf55bd3b878e35c15f4f2648489', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync', 'aliases' => array(), diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index 9d09026e..4433dc78 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -339,123 +339,123 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Activitylog' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-activitylog.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Jetpack_Manage' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-jetpack-manage.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Creator' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-creator.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Product_Data' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-product-data.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Recommendations_Evaluation' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-recommendations-evaluation.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '4.35.12.0-alpha1728402891', + 'version' => '4.35.12.0-alpha1728474109', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array(