From a12cf30bfd15ab91474afe218fe3e4b5aaac3434 Mon Sep 17 00:00:00 2001 From: anomiex Date: Mon, 9 Dec 2024 16:18:20 +0000 Subject: [PATCH] packages: Fix some JS lints ahead of the eslint 9 upgrade (#40497) To make the eslint 9 upgrade PR smaller, let's fix some of the lints that it'll complain about ahead of time. Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/12239487817 Upstream-Ref: Automattic/jetpack@48167f7918197ccd9c92a2898c52df75cf4aa42c --- composer.json | 4 +- .../jetpack-my-jetpack/CHANGELOG.md | 5 ++ .../src/class-initializer.php | 2 +- .../jetpack-plugin-deactivation/CHANGELOG.md | 5 ++ .../src/class-deactivation-handler.php | 2 +- jetpack_vendor/i18n-map.php | 4 +- vendor/composer/installed.json | 68 +++++++++---------- vendor/composer/installed.php | 68 +++++++++---------- vendor/composer/jetpack_autoload_classmap.php | 66 +++++++++--------- 9 files changed, 117 insertions(+), 107 deletions(-) diff --git a/composer.json b/composer.json index 32b520767..b6a4e6f39 100644 --- a/composer.json +++ b/composer.json @@ -24,8 +24,8 @@ "automattic/jetpack-connection": "^6.2.0-alpha", "automattic/jetpack-device-detection": "^3.0.0", "automattic/jetpack-image-cdn": "^0.7.1", - "automattic/jetpack-my-jetpack": "^5.1.1", - "automattic/jetpack-plugin-deactivation": "^0.3.0", + "automattic/jetpack-my-jetpack": "^5.1.2-alpha", + "automattic/jetpack-plugin-deactivation": "^0.3.1-alpha", "automattic/jetpack-schema": "^0.2.0", "automattic/jetpack-status": "^5.0.1", "automattic/jetpack-sync": "^4.1.0-alpha", diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md index c45430115..b56ec9863 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md @@ -5,6 +5,10 @@ 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). +## [5.1.2-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + ## [5.1.1] - 2024-12-04 ### Changed - Updated package dependencies. [#40363] @@ -1856,6 +1860,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created package +[5.1.2-alpha]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.1.1...5.1.2-alpha [5.1.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.1.0...5.1.1 [5.1.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.0.4...5.1.0 [5.0.4]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.0.3...5.0.4 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 5139af566..3322b3a3d 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php @@ -42,7 +42,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '5.1.1'; + const PACKAGE_VERSION = '5.1.2-alpha'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/jetpack_vendor/automattic/jetpack-plugin-deactivation/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-plugin-deactivation/CHANGELOG.md index 804e6aaf8..392305498 100644 --- a/jetpack_vendor/automattic/jetpack-plugin-deactivation/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-plugin-deactivation/CHANGELOG.md @@ -5,6 +5,10 @@ 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.3.1-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + ## [0.3.0] - 2024-11-28 ### Removed - General: Update minimum PHP version to 7.2. [#40147] @@ -63,6 +67,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added package to intercept plugin deactivation [#27081] +[0.3.1-alpha]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.3.0...v0.3.1-alpha [0.3.0]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.2.4...v0.3.0 [0.2.4]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.2.3...v0.2.4 [0.2.3]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.2.2...v0.2.3 diff --git a/jetpack_vendor/automattic/jetpack-plugin-deactivation/src/class-deactivation-handler.php b/jetpack_vendor/automattic/jetpack-plugin-deactivation/src/class-deactivation-handler.php index 1ec6f8a2a..38c7e18d7 100644 --- a/jetpack_vendor/automattic/jetpack-plugin-deactivation/src/class-deactivation-handler.php +++ b/jetpack_vendor/automattic/jetpack-plugin-deactivation/src/class-deactivation-handler.php @@ -21,7 +21,7 @@ class Deactivation_Handler { * * @var string */ - const PACKAGE_VERSION = '0.3.0'; + const PACKAGE_VERSION = '0.3.1-alpha'; /** * Slug of the plugin to intercept deactivation for. diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 099dfa687..9a9c5aa78 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -50,7 +50,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '5.1.1', + 'ver' => '5.1.2-alpha1733760228', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', @@ -58,7 +58,7 @@ ), 'jetpack-plugin-deactivation' => array( 'path' => 'jetpack_vendor/automattic/jetpack-plugin-deactivation', - 'ver' => '0.3.0', + 'ver' => '0.3.1-alpha1733760228', ), 'jetpack-plugins-installer' => array( 'path' => 'jetpack_vendor/automattic/jetpack-plugins-installer', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 0c7ad44b6..5426c2e8f 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": "2d0aa5bff87d13652d3bc58e1ef386a618f448a7" + "reference": "c5960420685c208868330c69602dfb916de297c2" }, "require": { "php": ">=7.2" @@ -63,7 +63,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "4d84fc95f6e86ef52bfc5dae005c35ef439ef4d9" + "reference": "dbda2d610ae55fc26544cd9c132922456cfbdefd" }, "require": { "php": ">=7.2" @@ -131,7 +131,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "13c18adce684690990329bd5a2099af2819c0179" + "reference": "150d4da652fe80665821240d51ad69630195cdfa" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -203,7 +203,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "1e19a3f3549132d9ed0dce8fb00125f5b1865277" + "reference": "bb47af060871fa586a81341365a5e345ed69467c" }, "require": { "composer-plugin-api": "^2.2", @@ -274,7 +274,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "ec05c4301a55252d40b1f23440f7b006c4c1167b" + "reference": "a672743e1f80ec4ba56bfaf1c1bf0fe4f499a3a9" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -345,7 +345,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "25aca116171e21432ae048129dc960b59ea8ca2f" + "reference": "9fa41e2a0ba334188581334eeee4d264a035ca1d" }, "require": { "automattic/jetpack-boost-core": "^0.3.2", @@ -424,7 +424,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "8f7ac2cf07bc71fd313ea967dfbfcbcbfa092d51" + "reference": "fe62f9ea9a72eebe50c52f96dbc831cb74c6cd02" }, "require": { "composer-plugin-api": "^2.2", @@ -487,7 +487,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "b272d3c4564f424f7767ff67375cd780f1a7a393" + "reference": "e169150876c550e64cc6b01a2ed980a9f0d1dcf8" }, "require": { "php": ">=7.2" @@ -562,7 +562,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "b74914f90efa3e2b2dfe37f8c23d23b9961d174f" + "reference": "a5763e5fd8b13b2a07c87b58d817d36b3adc4a4e" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -655,7 +655,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "83bc0a68dc5c4a05aac9c6be97a229411a248fd2" + "reference": "cb18d6df43dd3045eaaf99a27e9b1bbd57535c89" }, "require": { "php": ">=7.2" @@ -712,7 +712,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "b14bffc944186a8de9c38a9ad84bfda283f115e2" + "reference": "e3da977cae9872c4aeee8c6587e958ec12aa1617" }, "require": { "php": ">=7.2" @@ -768,7 +768,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "4f043e032dbad319715d52a6aaf99ed00834429f" + "reference": "945653f7ce29af21a88349258be2549900fe24b5" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -846,7 +846,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-image-cdn", - "reference": "51b2bcad364d71ca8b1a7bedaf550491e38e358d" + "reference": "262e3544494ee35f2102e77555d9ce0a7df0a044" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -915,7 +915,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "7acc4175717423dfb7f618b55c0edda985b8dfae" + "reference": "2314fecd50c7bec2cf6fbb403cc4ef1dc0cd3ca9" }, "require": { "php": ">=7.2" @@ -976,7 +976,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "fec4c146497a6080bfe8d2cc44555a196f50ba81" + "reference": "0f65987eeccdbc601a6ccdcd29859e2326df7c3b" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -1054,7 +1054,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "b3f9fad1679c2be578e848191fe51f0541ee438b" + "reference": "a097fa1686e792c9044db43b421065d7267e170b" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -1119,7 +1119,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "fe94c0778d707768525b348bb1da05b0a629f2aa" + "reference": "806d354b61492f4d75794590208b6c930214ad2a" }, "require": { "php": ">=7.2" @@ -1170,12 +1170,12 @@ }, { "name": "automattic/jetpack-my-jetpack", - "version": "5.1.1", - "version_normalized": "5.1.1.0", + "version": "5.1.2-alpha.1733760228", + "version_normalized": "5.1.2.0-alpha1733760228", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "4ba002ac7949ef9feee4e90680e8faa000d7ec46" + "reference": "0927842c9ce47e8cb72e24fff1584ed565896311" }, "require": { "automattic/jetpack-admin-ui": "^0.5.1", @@ -1280,7 +1280,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "0ee0959268e325eec0e06af1b0a4dfd064c8ecfb" + "reference": "254db46d2ef6b9c4ae1d0358f73449a0dc5be34d" }, "require": { "php": ">=7.2" @@ -1344,7 +1344,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "b864f755b740f53a526847f7936a066e732ab15e" + "reference": "f7fed79cb93656dfd0342601d9627ee76cce969b" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -1410,12 +1410,12 @@ }, { "name": "automattic/jetpack-plugin-deactivation", - "version": "0.3.0", - "version_normalized": "0.3.0.0", + "version": "0.3.1-alpha.1733760228", + "version_normalized": "0.3.1.0-alpha1733760228", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugin-deactivation", - "reference": "8546e1899c27e917e47be26af18dd65db126a409" + "reference": "3aad7bdf5f9d17944f869cf000e3ee21a2177c15" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -1486,7 +1486,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "4edf97eb2f0e9d52f1df226b95f9e2ca2466809b" + "reference": "5a0ad6bc8837dd62dd9227a9e3753d6f107f1651" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -1545,7 +1545,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "65f85efea5e788c723c61ad9892880231fd68c10" + "reference": "eb83a177614377985dc7a57d1ae94c274bf6bd9f" }, "require": { "php": ">=7.2" @@ -1618,7 +1618,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "6515be05c9df9a94071ddb11c0eb443f1aa1c49e" + "reference": "5aca73bb99f4a80025bd7fe96b4c31f3878b8506" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -1696,7 +1696,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "ed895f303230b14a286661562aa51f81c6f71bac" + "reference": "b895f34faafc428d11d86bf35edfc4be227552d1" }, "require": { "automattic/jetpack-status": "^5.0.1", @@ -1754,7 +1754,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "0045046951529fa4cc5752ae39a21050f212cc13" + "reference": "17d90bc8f4251b8d53033c8faacf21aafa8299d4" }, "require": { "php": ">=7.2" @@ -1811,7 +1811,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-schema", - "reference": "8c5bfdb0276f9dad69e51c8d30c317f1f3e2e637" + "reference": "86784737766d52e2083d84d0c4b614d465484fb3" }, "require": { "php": ">=7.2" @@ -1884,7 +1884,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "c8784ef7778f890ec8b4f180d38f4292968f6265" + "reference": "f7cd14227614966f3d1dfa16f4abee0c11bd2233" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -1951,7 +1951,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "b335617253166ddb8201a1d8dd25c84b344bea81" + "reference": "8ab9015cf3a31fb07dfca68443dbd5e4c2bfab57" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -2032,7 +2032,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-wp-js-data-sync", - "reference": "ef37d7c1b0deecac04e9e25270c12c9a9e128edf" + "reference": "a1db11fb0dc4005e03b4bb71fb0478a499529457" }, "require": { "automattic/jetpack-schema": "^0.2.0", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 319e05062..ef9413d08 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,7 +13,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '2d0aa5bff87d13652d3bc58e1ef386a618f448a7', + 'reference' => 'c5960420685c208868330c69602dfb916de297c2', '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.5.1', 'version' => '0.5.1.0', - 'reference' => '4d84fc95f6e86ef52bfc5dae005c35ef439ef4d9', + 'reference' => 'dbda2d610ae55fc26544cd9c132922456cfbdefd', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '4.0.1', 'version' => '4.0.1.0', - 'reference' => '13c18adce684690990329bd5a2099af2819c0179', + 'reference' => '150d4da652fe80665821240d51ad69630195cdfa', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '5.0.0', 'version' => '5.0.0.0', - 'reference' => '1e19a3f3549132d9ed0dce8fb00125f5b1865277', + 'reference' => 'bb47af060871fa586a81341365a5e345ed69467c', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.3.2', 'version' => '0.3.2.0', - 'reference' => 'ec05c4301a55252d40b1f23440f7b006c4c1167b', + 'reference' => 'a672743e1f80ec4ba56bfaf1c1bf0fe4f499a3a9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-core', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-boost-speed-score' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => '25aca116171e21432ae048129dc960b59ea8ca2f', + 'reference' => '9fa41e2a0ba334188581334eeee4d264a035ca1d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-speed-score', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => '8f7ac2cf07bc71fd313ea967dfbfcbcbfa092d51', + 'reference' => 'fe62f9ea9a72eebe50c52f96dbc831cb74c6cd02', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'b272d3c4564f424f7767ff67375cd780f1a7a393', + 'reference' => 'e169150876c550e64cc6b01a2ed980a9f0d1dcf8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-connection' => array( 'pretty_version' => '6.2.0-alpha.1733749108', 'version' => '6.2.0.0-alpha1733749108', - 'reference' => 'b74914f90efa3e2b2dfe37f8c23d23b9961d174f', + 'reference' => 'a5763e5fd8b13b2a07c87b58d817d36b3adc4a4e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => '83bc0a68dc5c4a05aac9c6be97a229411a248fd2', + 'reference' => 'cb18d6df43dd3045eaaf99a27e9b1bbd57535c89', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'b14bffc944186a8de9c38a9ad84bfda283f115e2', + 'reference' => 'e3da977cae9872c4aeee8c6587e958ec12aa1617', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-explat' => array( 'pretty_version' => '0.2.2', 'version' => '0.2.2.0', - 'reference' => '4f043e032dbad319715d52a6aaf99ed00834429f', + 'reference' => '945653f7ce29af21a88349258be2549900fe24b5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-image-cdn' => array( 'pretty_version' => '0.7.1', 'version' => '0.7.1.0', - 'reference' => '51b2bcad364d71ca8b1a7bedaf550491e38e358d', + 'reference' => '262e3544494ee35f2102e77555d9ce0a7df0a044', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-image-cdn', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => '7acc4175717423dfb7f618b55c0edda985b8dfae', + 'reference' => '2314fecd50c7bec2cf6fbb403cc4ef1dc0cd3ca9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '4.0.2', 'version' => '4.0.2.0', - 'reference' => 'fec4c146497a6080bfe8d2cc44555a196f50ba81', + 'reference' => '0f65987eeccdbc601a6ccdcd29859e2326df7c3b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '3.0.2', 'version' => '3.0.2.0', - 'reference' => 'b3f9fad1679c2be578e848191fe51f0541ee438b', + 'reference' => 'a097fa1686e792c9044db43b421065d7267e170b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -166,16 +166,16 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'fe94c0778d707768525b348bb1da05b0a629f2aa', + 'reference' => '806d354b61492f4d75794590208b6c930214ad2a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => '5.1.1', - 'version' => '5.1.1.0', - 'reference' => '4ba002ac7949ef9feee4e90680e8faa000d7ec46', + 'pretty_version' => '5.1.2-alpha.1733760228', + 'version' => '5.1.2.0-alpha1733760228', + 'reference' => '0927842c9ce47e8cb72e24fff1584ed565896311', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => '0ee0959268e325eec0e06af1b0a4dfd064c8ecfb', + 'reference' => '254db46d2ef6b9c4ae1d0358f73449a0dc5be34d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -193,16 +193,16 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.5.1', 'version' => '0.5.1.0', - 'reference' => 'b864f755b740f53a526847f7936a066e732ab15e', + 'reference' => 'f7fed79cb93656dfd0342601d9627ee76cce969b', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-plugin-deactivation' => array( - 'pretty_version' => '0.3.0', - 'version' => '0.3.0.0', - 'reference' => '8546e1899c27e917e47be26af18dd65db126a409', + 'pretty_version' => '0.3.1-alpha.1733760228', + 'version' => '0.3.1.0-alpha1733760228', + 'reference' => '3aad7bdf5f9d17944f869cf000e3ee21a2177c15', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugin-deactivation', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => '4edf97eb2f0e9d52f1df226b95f9e2ca2466809b', + 'reference' => '5a0ad6bc8837dd62dd9227a9e3753d6f107f1651', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -220,7 +220,7 @@ 'automattic/jetpack-protect-models' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => '65f85efea5e788c723c61ad9892880231fd68c10', + 'reference' => 'eb83a177614377985dc7a57d1ae94c274bf6bd9f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-models', 'aliases' => array(), @@ -229,7 +229,7 @@ 'automattic/jetpack-protect-status' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => '6515be05c9df9a94071ddb11c0eb443f1aa1c49e', + 'reference' => '5aca73bb99f4a80025bd7fe96b4c31f3878b8506', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), @@ -238,7 +238,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => 'ed895f303230b14a286661562aa51f81c6f71bac', + 'reference' => 'b895f34faafc428d11d86bf35edfc4be227552d1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -247,7 +247,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => '0045046951529fa4cc5752ae39a21050f212cc13', + 'reference' => '17d90bc8f4251b8d53033c8faacf21aafa8299d4', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -256,7 +256,7 @@ 'automattic/jetpack-schema' => array( 'pretty_version' => '0.2.0', 'version' => '0.2.0.0', - 'reference' => '8c5bfdb0276f9dad69e51c8d30c317f1f3e2e637', + 'reference' => '86784737766d52e2083d84d0c4b614d465484fb3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-schema', 'aliases' => array(), @@ -265,7 +265,7 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '5.0.1', 'version' => '5.0.1.0', - 'reference' => 'c8784ef7778f890ec8b4f180d38f4292968f6265', + 'reference' => 'f7cd14227614966f3d1dfa16f4abee0c11bd2233', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -274,7 +274,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '4.1.0-alpha.1733498965', 'version' => '4.1.0.0-alpha1733498965', - 'reference' => 'b335617253166ddb8201a1d8dd25c84b344bea81', + 'reference' => '8ab9015cf3a31fb07dfca68443dbd5e4c2bfab57', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync', 'aliases' => array(), @@ -283,7 +283,7 @@ 'automattic/jetpack-wp-js-data-sync' => array( 'pretty_version' => '0.6.0', 'version' => '0.6.0.0', - 'reference' => 'ef37d7c1b0deecac04e9e25270c12c9a9e128edf', + 'reference' => 'a1db11fb0dc4005e03b4bb71fb0478a499529457', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-wp-js-data-sync', 'aliases' => array(), diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index 893dd03fc..7407dca9c 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -359,131 +359,131 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Activitylog' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-activitylog.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Jetpack_Manage' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-jetpack-manage.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Complete' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-complete.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Creator' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-creator.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Growth' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-growth.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Product_Data' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-product-data.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Recommendations_Evaluation' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-recommendations-evaluation.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '5.1.1.0', + 'version' => '5.1.2.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( @@ -507,7 +507,7 @@ 'path' => $vendorDir . '/automattic/jetpack-plans/src/class-plans.php' ), 'Automattic\\Jetpack\\Plugin_Deactivation\\Deactivation_Handler' => array( - 'version' => '0.3.0.0', + 'version' => '0.3.1.0-alpha1733760228', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-plugin-deactivation/src/class-deactivation-handler.php' ), 'Automattic\\Jetpack\\Plugins_Installer' => array(