From cacb66f7beec8e874d71bb23df70f5499cea01af Mon Sep 17 00:00:00 2001 From: kraftbj Date: Thu, 14 Sep 2023 11:30:20 +0000 Subject: [PATCH] Admin UI: update sort order for individual plugins (#32958) Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/6184610655 --- CHANGELOG.md | 1 + composer.json | 2 +- .../automattic/jetpack-admin-ui/CHANGELOG.md | 8 +++ .../jetpack-admin-ui/src/class-admin-menu.php | 12 +++- .../jetpack-connection/composer.json | 2 +- .../jetpack-my-jetpack/CHANGELOG.md | 1 + .../jetpack-my-jetpack/composer.json | 2 +- .../src/class-initializer.php | 2 +- jetpack_vendor/i18n-map.php | 4 +- src/class-jetpack-starter-plugin.php | 3 +- vendor/composer/installed.json | 56 +++++++++---------- vendor/composer/installed.php | 52 ++++++++--------- vendor/composer/jetpack_autoload_classmap.php | 52 ++++++++--------- 13 files changed, 106 insertions(+), 91 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1a0771b8..9e7c478be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ This is an alpha version! The changes listed here are not final. - General: indicate full compatibility with the latest version of WordPress, 6.3. - General: remove WP 6.1 backwards compatibility checks - General: update WordPress version requirements to WordPress 6.2. +- Updated Jetpack submenu sort order so individual features are alpha-sorted. - Use the new method to render Connection initial state. ## 0.3.0 - 2023-07-06 diff --git a/composer.json b/composer.json index 0e9463645..fc48ac5c9 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "automattic/jetpack-assets": "^1.18.10", - "automattic/jetpack-admin-ui": "^0.2.22", + "automattic/jetpack-admin-ui": "^0.2.23-alpha", "automattic/jetpack-autoloader": "^2.11.22", "automattic/jetpack-composer-plugin": "^1.1.13", "automattic/jetpack-config": "^1.15.3", diff --git a/jetpack_vendor/automattic/jetpack-admin-ui/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-admin-ui/CHANGELOG.md index 7b6f264a7..d187c40fd 100644 --- a/jetpack_vendor/automattic/jetpack-admin-ui/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-admin-ui/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.23-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Changed +- Updated Jetpack submenu sort order so individual features are alpha-sorted. + ## [0.2.22] - 2023-09-11 ### Fixed - Akismet: update naming to common form [#32908] @@ -116,6 +123,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Fixing menu visibility issues. +[0.2.23-alpha]: https://github.com/Automattic/jetpack-admin-ui/compare/0.2.22...0.2.23-alpha [0.2.22]: https://github.com/Automattic/jetpack-admin-ui/compare/0.2.21...0.2.22 [0.2.21]: https://github.com/Automattic/jetpack-admin-ui/compare/0.2.20...0.2.21 [0.2.20]: https://github.com/Automattic/jetpack-admin-ui/compare/0.2.19...0.2.20 diff --git a/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php b/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php index b4992eacf..a783e6564 100644 --- a/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php +++ b/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php @@ -13,7 +13,7 @@ */ class Admin_Menu { - const PACKAGE_VERSION = '0.2.22'; + const PACKAGE_VERSION = '0.2.23-alpha'; /** * Whether this class has been initialized @@ -104,7 +104,13 @@ public static function admin_menu_hook_callback() { function ( $a, $b ) { $position_a = empty( $a['position'] ) ? 0 : $a['position']; $position_b = empty( $b['position'] ) ? 0 : $b['position']; - return $position_a - $position_b; + $result = $position_a - $position_b; + + if ( 0 === $result ) { + $result = strcmp( $a['menu_title'], $b['menu_title'] ); + } + + return $result; } ); @@ -150,7 +156,7 @@ function ( $a, $b ) { * and only include lowercase alphanumeric, dashes, and underscores characters * to be compatible with sanitize_key(). * @param callable $function The function to be called to output the content for this page. - * @param int $position The position in the menu order this item should appear. + * @param int $position The position in the menu order this item should appear. Leave empty typically. * * @return string The resulting page's hook_suffix */ diff --git a/jetpack_vendor/automattic/jetpack-connection/composer.json b/jetpack_vendor/automattic/jetpack-connection/composer.json index 07add3cef..b53dc904e 100644 --- a/jetpack_vendor/automattic/jetpack-connection/composer.json +++ b/jetpack_vendor/automattic/jetpack-connection/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.21", - "automattic/jetpack-admin-ui": "^0.2.22", + "automattic/jetpack-admin-ui": "^0.2.23-alpha", "automattic/jetpack-constants": "^1.6.23", "automattic/jetpack-roles": "^1.4.24", "automattic/jetpack-status": "^1.18.3", diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md index 56b8af3bb..eb8a1f57f 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md @@ -11,6 +11,7 @@ This is an alpha version! The changes listed here are not final. ### Changed - Added support for upgradable products. Updated the Stats card to handle upgradeable products. +- Updated Jetpack submenu sort order so individual features are alpha-sorted. ## [3.4.5] - 2023-09-13 ### Changed diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index c15be6ad9..db72a4663 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -4,7 +4,7 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-admin-ui": "^0.2.22", + "automattic/jetpack-admin-ui": "^0.2.23-alpha", "automattic/jetpack-assets": "^1.18.10", "automattic/jetpack-connection": "^1.57.4", "automattic/jetpack-jitm": "^2.3.18", diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php index f4160ce95..5e272a456 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php @@ -67,7 +67,7 @@ public static function init() { 'edit_posts', 'my-jetpack', array( __CLASS__, 'admin_page' ), - 0 + -1 ); add_action( 'load-' . $page_suffix, array( __CLASS__, 'admin_init' ) ); diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 475255fe4..9634fe3e2 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -6,7 +6,7 @@ 'packages' => array( 'jetpack-admin-ui' => array( 'path' => 'jetpack_vendor/automattic/jetpack-admin-ui', - 'ver' => '0.2.22', + 'ver' => '0.2.23-alpha1694689876', ), 'jetpack-assets' => array( 'path' => 'jetpack_vendor/automattic/jetpack-assets', @@ -38,7 +38,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '3.5.0-alpha1694663900', + 'ver' => '3.5.0-alpha1694689876', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', diff --git a/src/class-jetpack-starter-plugin.php b/src/class-jetpack-starter-plugin.php index f5cd548b5..3d0065457 100644 --- a/src/class-jetpack-starter-plugin.php +++ b/src/class-jetpack-starter-plugin.php @@ -34,8 +34,7 @@ public function __construct() { _x( 'Starter Plugin', 'The Jetpack Starter Plugin product name, without the Jetpack prefix', 'jetpack-starter-plugin' ), 'manage_options', 'jetpack-starter-plugin', - array( $this, 'plugin_settings_page' ), - 99 + array( $this, 'plugin_settings_page' ) ); add_action( 'load-' . $page_suffix, array( $this, 'admin_init' ) ); diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 7b278a6c7..5f9f3674a 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": "4c1f1ee3642f4b187dcc74e30deaf7914f135179" + "reference": "8772525e79d99591e97eb7fc89f3294c39cdbaf0" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.8", @@ -52,12 +52,12 @@ }, { "name": "automattic/jetpack-admin-ui", - "version": "0.2.22", - "version_normalized": "0.2.22.0", + "version": "0.2.23-alpha.1694689876", + "version_normalized": "0.2.23.0-alpha1694689876", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "d63ddadd8e401321c8d93619d760492ffe05e02b" + "reference": "f4e8e08c85bde4a90b0feb3376dab0a9d10d0833" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.8", @@ -119,7 +119,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "bb4c531fd0ceb0a5dc02178bc4fda85b6b215787" + "reference": "d4b92d822438e25d309f72e02520d9b6d2134e08" }, "require": { "automattic/jetpack-constants": "^1.6.23" @@ -187,7 +187,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "1b29919f28b71bbbfb3715ce50d5fed77471fd96" + "reference": "0e7e90acc7a9f3fa2e1e1d6424ffc968b85cb182" }, "require": { "composer-plugin-api": "^1.1 || ^2.0" @@ -249,7 +249,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "d607ed164456fde59643d866dfe073f0e459b591" + "reference": "414dfd00a13334ecdf76d6562dd48af035411e48" }, "require": { "composer-plugin-api": "^2.1.0" @@ -308,7 +308,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "0fc38ccb33c7c1500e5c2fe63e64e037055fd208" + "reference": "1e21579c38b37ff70cd4c07fca4b01fefdd79d61" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.8" @@ -350,11 +350,11 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "7e2cdb93e20422c5b61b168e349445de329e1bb6" + "reference": "7ea2d20ac911fd81403e1cff58862889155d7255" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.21", - "automattic/jetpack-admin-ui": "^0.2.22", + "automattic/jetpack-admin-ui": "^0.2.23-alpha", "automattic/jetpack-constants": "^1.6.23", "automattic/jetpack-redirect": "^1.7.26", "automattic/jetpack-roles": "^1.4.24", @@ -428,7 +428,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "505378c3e5fa58d9d8386af2136e1e5539d59fbb" + "reference": "d158a4bcee5dfe9f55df008b3522b5d5b27977a9" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.8", @@ -479,7 +479,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "923c4877e8d308dfae55f4034930b29d4c392f0e" + "reference": "e2b0e966224c5d6115cf1a4b442cba9e0614356b" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.8", @@ -529,7 +529,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-identity-crisis", - "reference": "7044022021174d1525568592a1c476e982d1ea78" + "reference": "37856281a56ef5937d7673c1c5a6b770eafaac8d" }, "require": { "automattic/jetpack-assets": "^1.18.10", @@ -607,7 +607,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "9a59b6c7151252a168b0a805fc9aec168d874632" + "reference": "9f18ed63bd97d92a851e69d6276430a1dedca0da" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.8", @@ -662,7 +662,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "51da63f33201f233ee3fd99fa6542cc55afddf79" + "reference": "f31b0d2016a34d3bc941b0e22f9d7be3b35bcd87" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.21", @@ -737,7 +737,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "cd313b4992ccc986ca672ba016b80bebd3df9b56" + "reference": "1274b06ec33c30c38473b463050b8b92b521e10a" }, "require": { "automattic/jetpack-connection": "^1.57.4" @@ -798,7 +798,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "5df59a6535091a275752d5ad2b25294e057f306a" + "reference": "a20eeec419a9787930b6197a7e5fa77059b9b6c2" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.8", @@ -843,15 +843,15 @@ }, { "name": "automattic/jetpack-my-jetpack", - "version": "3.5.0-alpha.1694663900", - "version_normalized": "3.5.0.0-alpha1694663900", + "version": "3.5.0-alpha.1694689876", + "version_normalized": "3.5.0.0-alpha1694689876", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "8bbe8c9ab5fc360cdab376bd435242d4d3d291b6" + "reference": "47fff4692288fea9904917ea396435a284fa4b43" }, "require": { - "automattic/jetpack-admin-ui": "^0.2.22", + "automattic/jetpack-admin-ui": "^0.2.23-alpha", "automattic/jetpack-assets": "^1.18.10", "automattic/jetpack-connection": "^1.57.4", "automattic/jetpack-constants": "^1.6.23", @@ -938,7 +938,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-partner", - "reference": "8449317b54b79e898f599d2692616cd6351f7ab3" + "reference": "74dacdfea4307810cd92bdd16c13ae2a70822605" }, "require": { "automattic/jetpack-connection": "^1.57.4", @@ -1000,7 +1000,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "ebb8cbe12e497dc4a8b7e8243de10d66526de1c3" + "reference": "6e99d78ddfda865d52b36152e747da7543094c53" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.8", @@ -1058,7 +1058,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "099990f24a7096a68ee7f8ffebf06d827ac2fa7b" + "reference": "4e3f52d5fafde2fee6882a86d79d3656d1755e1a" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.21" @@ -1112,7 +1112,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "e750f9d2b86327caf67b255a65a2c37509baf46e" + "reference": "2e09ad56bee5044d2560bfc7d9044377f22eaab8" }, "require": { "automattic/jetpack-status": "^1.18.3" @@ -1166,7 +1166,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "0f5056c960dbc4b7ce5c1be27d327df6c1609e1a" + "reference": "e5d13027e05908d7d0423e9f7cf6200baf0bc122" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.8", @@ -1217,7 +1217,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "032115a7558626411ff23742c91a9c62d3fc8e98" + "reference": "0edc299aed267c197a464e96a4df27c2f8191c05" }, "require": { "automattic/jetpack-constants": "^1.6.23" @@ -1272,7 +1272,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "2ada669597d1b98fdb3cb3b6d124ba7d3dfc25e2" + "reference": "4daba16c4ab521207851c987d57591ec36c7f101" }, "require": { "automattic/jetpack-connection": "^1.57.4", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 217b059f7..0c40b700d 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,16 +13,16 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '1.4.21', 'version' => '1.4.21.0', - 'reference' => '4c1f1ee3642f4b187dcc74e30deaf7914f135179', + 'reference' => '8772525e79d99591e97eb7fc89f3294c39cdbaf0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-admin-ui' => array( - 'pretty_version' => '0.2.22', - 'version' => '0.2.22.0', - 'reference' => 'd63ddadd8e401321c8d93619d760492ffe05e02b', + 'pretty_version' => '0.2.23-alpha.1694689876', + 'version' => '0.2.23.0-alpha1694689876', + 'reference' => 'f4e8e08c85bde4a90b0feb3376dab0a9d10d0833', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '1.18.10', 'version' => '1.18.10.0', - 'reference' => 'bb4c531fd0ceb0a5dc02178bc4fda85b6b215787', + 'reference' => 'd4b92d822438e25d309f72e02520d9b6d2134e08', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '2.11.22', 'version' => '2.11.22.0', - 'reference' => '1b29919f28b71bbbfb3715ce50d5fed77471fd96', + 'reference' => '0e7e90acc7a9f3fa2e1e1d6424ffc968b85cb182', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '1.1.13', 'version' => '1.1.13.0', - 'reference' => 'd607ed164456fde59643d866dfe073f0e459b591', + 'reference' => '414dfd00a13334ecdf76d6562dd48af035411e48', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '1.15.3', 'version' => '1.15.3.0', - 'reference' => '0fc38ccb33c7c1500e5c2fe63e64e037055fd208', + 'reference' => '1e21579c38b37ff70cd4c07fca4b01fefdd79d61', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-connection' => array( 'pretty_version' => '1.57.4', 'version' => '1.57.4.0', - 'reference' => '7e2cdb93e20422c5b61b168e349445de329e1bb6', + 'reference' => '7ea2d20ac911fd81403e1cff58862889155d7255', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '1.6.23', 'version' => '1.6.23.0', - 'reference' => '505378c3e5fa58d9d8386af2136e1e5539d59fbb', + 'reference' => 'd158a4bcee5dfe9f55df008b3522b5d5b27977a9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '1.4.27', 'version' => '1.4.27.0', - 'reference' => '923c4877e8d308dfae55f4034930b29d4c392f0e', + 'reference' => 'e2b0e966224c5d6115cf1a4b442cba9e0614356b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-identity-crisis' => array( 'pretty_version' => '0.10.5-alpha.1694542587', 'version' => '0.10.5.0-alpha1694542587', - 'reference' => '7044022021174d1525568592a1c476e982d1ea78', + 'reference' => '37856281a56ef5937d7673c1c5a6b770eafaac8d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-identity-crisis', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.1.5', 'version' => '0.1.5.0', - 'reference' => '9a59b6c7151252a168b0a805fc9aec168d874632', + 'reference' => '9f18ed63bd97d92a851e69d6276430a1dedca0da', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '2.3.18', 'version' => '2.3.18.0', - 'reference' => '51da63f33201f233ee3fd99fa6542cc55afddf79', + 'reference' => 'f31b0d2016a34d3bc941b0e22f9d7be3b35bcd87', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '1.8.3', 'version' => '1.8.3.0', - 'reference' => 'cd313b4992ccc986ca672ba016b80bebd3df9b56', + 'reference' => '1274b06ec33c30c38473b463050b8b92b521e10a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -130,16 +130,16 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '1.6.2', 'version' => '1.6.2.0', - 'reference' => '5df59a6535091a275752d5ad2b25294e057f306a', + 'reference' => 'a20eeec419a9787930b6197a7e5fa77059b9b6c2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => '3.5.0-alpha.1694663900', - 'version' => '3.5.0.0-alpha1694663900', - 'reference' => '8bbe8c9ab5fc360cdab376bd435242d4d3d291b6', + 'pretty_version' => '3.5.0-alpha.1694689876', + 'version' => '3.5.0.0-alpha1694689876', + 'reference' => '47fff4692288fea9904917ea396435a284fa4b43', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-partner' => array( 'pretty_version' => '1.7.24', 'version' => '1.7.24.0', - 'reference' => '8449317b54b79e898f599d2692616cd6351f7ab3', + 'reference' => '74dacdfea4307810cd92bdd16c13ae2a70822605', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-partner', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.2.14', 'version' => '0.2.14.0', - 'reference' => 'ebb8cbe12e497dc4a8b7e8243de10d66526de1c3', + 'reference' => '6e99d78ddfda865d52b36152e747da7543094c53', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.2.5', 'version' => '0.2.5.0', - 'reference' => '099990f24a7096a68ee7f8ffebf06d827ac2fa7b', + 'reference' => '4e3f52d5fafde2fee6882a86d79d3656d1755e1a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '1.7.26', 'version' => '1.7.26.0', - 'reference' => 'e750f9d2b86327caf67b255a65a2c37509baf46e', + 'reference' => '2e09ad56bee5044d2560bfc7d9044377f22eaab8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '1.4.24', 'version' => '1.4.24.0', - 'reference' => '0f5056c960dbc4b7ce5c1be27d327df6c1609e1a', + 'reference' => 'e5d13027e05908d7d0423e9f7cf6200baf0bc122', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '1.18.3', 'version' => '1.18.3.0', - 'reference' => '032115a7558626411ff23742c91a9c62d3fc8e98', + 'reference' => '0edc299aed267c197a464e96a4df27c2f8191c05', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '1.57.0-alpha.1694442082', 'version' => '1.57.0.0-alpha1694442082', - 'reference' => '2ada669597d1b98fdb3cb3b6d124ba7d3dfc25e2', + 'reference' => '4daba16c4ab521207851c987d57591ec36c7f101', '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 f4943cc8e..83b96231a 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -23,7 +23,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-a8c-mc-stats/src/class-a8c-mc-stats.php' ), 'Automattic\\Jetpack\\Admin_UI\\Admin_Menu' => array( - 'version' => '0.2.22.0', + 'version' => '0.2.23.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php' ), 'Automattic\\Jetpack\\Assets' => array( @@ -247,103 +247,103 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '3.5.0.0-alpha1694663900', + 'version' => '3.5.0.0-alpha1694689876', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array(