diff --git a/composer.json b/composer.json index 57e34d07..857ebaa4 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "automattic/jetpack-autoloader": "^5.0.0", "automattic/jetpack-composer-plugin": "^4.0.0", "automattic/jetpack-config": "^3.0.0", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-my-jetpack": "^5.2.0", "automattic/jetpack-search": "^0.47.4", "automattic/jetpack-stats": "^0.14.1", diff --git a/jetpack_vendor/automattic/jetpack-boost-core/composer.json b/jetpack_vendor/automattic/jetpack-boost-core/composer.json index 914f7bbc..608191b0 100644 --- a/jetpack_vendor/automattic/jetpack-boost-core/composer.json +++ b/jetpack_vendor/automattic/jetpack-boost-core/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.2.1" + "automattic/jetpack-connection": "^6.2.2-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md index eaaba4aa..08b06383 100644 --- a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-connection/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). +## [6.2.2-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Added +- Added tests to increase code coverage. + ## [6.2.1] - 2024-12-16 ### Changed - Updated package dependencies. [#40564] @@ -1271,6 +1278,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Separate the connection library into its own package. +[6.2.2-alpha]: https://github.com/Automattic/jetpack-connection/compare/v6.2.1...v6.2.2-alpha [6.2.1]: https://github.com/Automattic/jetpack-connection/compare/v6.2.0...v6.2.1 [6.2.0]: https://github.com/Automattic/jetpack-connection/compare/v6.1.1...v6.2.0 [6.1.1]: https://github.com/Automattic/jetpack-connection/compare/v6.1.0...v6.1.1 diff --git a/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php b/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php index 5d56946f..5a9a473b 100644 --- a/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php +++ b/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php @@ -452,8 +452,9 @@ private function internal_verify_xml_rpc_signature() { if ( empty( $token_key ) - || - empty( $version ) || (string) $jetpack_api_version !== $version ) { + || empty( $version ) + || (string) $jetpack_api_version !== $version + ) { return new \WP_Error( 'malformed_token', 'Malformed token in request', compact( 'signature_details', 'error_type' ) ); } diff --git a/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php b/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php index 361d29d6..c39db8b1 100644 --- a/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php +++ b/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '6.2.1'; + const PACKAGE_VERSION = '6.2.2-alpha'; const PACKAGE_SLUG = 'connection'; diff --git a/jetpack_vendor/automattic/jetpack-explat/composer.json b/jetpack_vendor/automattic/jetpack-explat/composer.json index 224caa75..db62913d 100644 --- a/jetpack_vendor/automattic/jetpack-explat/composer.json +++ b/jetpack_vendor/automattic/jetpack-explat/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.2.1" + "automattic/jetpack-connection": "^6.2.2-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-jitm/composer.json b/jetpack_vendor/automattic/jetpack-jitm/composer.json index 27c3e85b..e14dcfe0 100644 --- a/jetpack_vendor/automattic/jetpack-jitm/composer.json +++ b/jetpack_vendor/automattic/jetpack-jitm/composer.json @@ -7,7 +7,7 @@ "php": ">=7.2", "automattic/jetpack-a8c-mc-stats": "^3.0.0", "automattic/jetpack-assets": "^4.0.2", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-device-detection": "^3.0.0", "automattic/jetpack-logo": "^3.0.0", "automattic/jetpack-redirect": "^3.0.1", diff --git a/jetpack_vendor/automattic/jetpack-licensing/composer.json b/jetpack_vendor/automattic/jetpack-licensing/composer.json index fd42dacb..eaa54e5d 100644 --- a/jetpack_vendor/automattic/jetpack-licensing/composer.json +++ b/jetpack_vendor/automattic/jetpack-licensing/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.2.1" + "automattic/jetpack-connection": "^6.2.2-alpha" }, "require-dev": { "automattic/wordbless": "^0.4.2", diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index 0782c343..dd44d932 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -8,7 +8,7 @@ "automattic/jetpack-admin-ui": "^0.5.1", "automattic/jetpack-assets": "^4.0.2", "automattic/jetpack-boost-speed-score": "^0.4.0", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-explat": "^0.2.3", "automattic/jetpack-jitm": "^4.0.3", "automattic/jetpack-licensing": "^3.0.2", diff --git a/jetpack_vendor/automattic/jetpack-protect-status/composer.json b/jetpack_vendor/automattic/jetpack-protect-status/composer.json index fcdd6cc2..71dd2474 100644 --- a/jetpack_vendor/automattic/jetpack-protect-status/composer.json +++ b/jetpack_vendor/automattic/jetpack-protect-status/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-plugins-installer": "^0.5.0", "automattic/jetpack-sync": "^4.2.0", "automattic/jetpack-protect-models": "^0.4.1", diff --git a/jetpack_vendor/automattic/jetpack-search/composer.json b/jetpack_vendor/automattic/jetpack-search/composer.json index 23a8a80b..feb3092b 100644 --- a/jetpack_vendor/automattic/jetpack-search/composer.json +++ b/jetpack_vendor/automattic/jetpack-search/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-assets": "^4.0.2", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-status": "^5.0.1", diff --git a/jetpack_vendor/automattic/jetpack-stats/composer.json b/jetpack_vendor/automattic/jetpack-stats/composer.json index c4357820..07a7d21d 100644 --- a/jetpack_vendor/automattic/jetpack-stats/composer.json +++ b/jetpack_vendor/automattic/jetpack-stats/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-status": "^5.0.1" }, diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json index 2e6aaa7e..8351efdd 100644 --- a/jetpack_vendor/automattic/jetpack-sync/composer.json +++ b/jetpack_vendor/automattic/jetpack-sync/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-password-checker": "^0.4.1", "automattic/jetpack-ip": "^0.4.1", diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 868577b6..b2027bc6 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -26,7 +26,7 @@ ), 'jetpack-connection' => array( 'path' => 'jetpack_vendor/automattic/jetpack-connection', - 'ver' => '6.2.1', + 'ver' => '6.2.2-alpha1735582226', ), 'jetpack-explat' => array( 'path' => 'jetpack_vendor/automattic/jetpack-explat', diff --git a/vendor/automattic/jetpack-plans/composer.json b/vendor/automattic/jetpack-plans/composer.json index 39ca501f..698d47aa 100644 --- a/vendor/automattic/jetpack-plans/composer.json +++ b/vendor/automattic/jetpack-plans/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.2.1" + "automattic/jetpack-connection": "^6.2.2-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 5be66d38..1a041cda 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": "0ba5d11a2e778bc76737ab3b42dc5d3fb14d0006" + "reference": "4ef3eb6b81443475b594c1f35dca2a9dd14691cf" }, "require": { "php": ">=7.2" @@ -63,7 +63,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "121d1b2b99ebc2f2a87d22c1cbd735845a61e3b1" + "reference": "612801ada39cdebc009dd9abbd4a3ff3a6e3f2b1" }, "require": { "php": ">=7.2" @@ -131,7 +131,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "7d6680f935454d141737c94f01d35ab8d6752466" + "reference": "bcb6003372314ee1427fc53dab34d77383ad847f" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -203,7 +203,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "c948336547a429cd3c4210b68151f8436bfd6258" + "reference": "63847f29f838ad3862ca887ddf2ec84a05a69ddb" }, "require": { "composer-plugin-api": "^2.2", @@ -274,10 +274,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "2894f2bc3742d490894d9b17c3132e7d8eac3a2a" + "reference": "c5c355f0f4b9077abd6a6673f6d9179a0de68f91" }, "require": { - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "php": ">=7.2" }, "require-dev": { @@ -345,7 +345,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "9af9fbe10a1ca9fd86c95ce1e6804e2cf1c3e6e9" + "reference": "44e520207349b48142fd247ae6d9f14d6f19877a" }, "require": { "automattic/jetpack-boost-core": "^0.3.3", @@ -424,7 +424,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "3244ba2023ce273074e60ae094f779ad49e5523c" + "reference": "09d460e1f50f29374f400353586d1ba138649c05" }, "require": { "composer-plugin-api": "^2.2", @@ -487,7 +487,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "bd9dbe9d43eb6fd1185a9aad40326b07393fdf92" + "reference": "d6811f4f079d86ce2efdba5a82e45598b7a5c538" }, "require": { "php": ">=7.2" @@ -557,12 +557,12 @@ }, { "name": "automattic/jetpack-connection", - "version": "6.2.1", - "version_normalized": "6.2.1.0", + "version": "6.2.2-alpha.1735582226", + "version_normalized": "6.2.2.0-alpha1735582226", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "9e1f2e6bd5c855b0420f65f9d61914fcb793f802" + "reference": "cbcfae4bdfff6d08472ae5f031036e3b1011e47b" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -655,7 +655,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "f963292a6efdb5777c28097eae60684ff5f89715" + "reference": "f0a385b44d98b8ea54aa3546b815baa0c9740b2d" }, "require": { "php": ">=7.2" @@ -712,7 +712,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "7cef46c2fd0305c2859c96f7b3c992279138e097" + "reference": "406ec1560857af114a486eba47e925c7ff833e24" }, "require": { "php": ">=7.2" @@ -768,10 +768,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "bf9dc53e63f3f13a4f777417528876baa8db9aba" + "reference": "e85d14cb75c89bc5b777c0623cf3210caa696e39" }, "require": { - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "php": ">=7.2" }, "require-dev": { @@ -846,7 +846,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "b3d77a6336e4fa0acc613fd09d188ae1427aea07" + "reference": "2a4b487bf2cd2dc6536832c931643b3905a02302" }, "require": { "php": ">=7.2" @@ -907,12 +907,12 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "265d50f5b3ccf3f456833563c6c2666c677e860b" + "reference": "77dc1aba7cf7e195c213abac9f8b928fb7799c68" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", "automattic/jetpack-assets": "^4.0.2", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-device-detection": "^3.0.0", "automattic/jetpack-logo": "^3.0.0", "automattic/jetpack-redirect": "^3.0.1", @@ -985,10 +985,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "de8a0e50eada98e5e5a4d21ce27f7cd13b16e532" + "reference": "eb5f9f09517173c2131746d3ac8fa5258b1f65c2" }, "require": { - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "php": ">=7.2" }, "require-dev": { @@ -1050,7 +1050,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "38349efb878ecae81fd7c179c26bf6981f9e36dd" + "reference": "4f6b3acd0cf7074db23e4698db6c4263a3e18856" }, "require": { "php": ">=7.2" @@ -1106,13 +1106,13 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "58dc8bcafb7c57a2c9e1535951a8bab472e44ada" + "reference": "63b6ba07cb79a300fe6ff04f6fa7c4dfb63b412a" }, "require": { "automattic/jetpack-admin-ui": "^0.5.1", "automattic/jetpack-assets": "^4.0.2", "automattic/jetpack-boost-speed-score": "^0.4.0", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-explat": "^0.2.3", "automattic/jetpack-jitm": "^4.0.3", @@ -1211,7 +1211,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "9acb93c0c14e4ef6d62ab66685840998282020ee" + "reference": "cab9eaeb63e090635b4168fcf7e421a040d1ffde" }, "require": { "php": ">=7.2" @@ -1275,10 +1275,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "3342e60749f998af497df244df44215b71ea62d8" + "reference": "18580edfb692ebd1500547bc9b5a7807f56ea3b0" }, "require": { - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "php": ">=7.2" }, "require-dev": { @@ -1346,7 +1346,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "1ac976c6111f92121bf270757254780fbdcd944f" + "reference": "b923189c8e20771dd12a4a07445c00bf6f9682c6" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -1405,7 +1405,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "2b205d89738459733ba1c2875303b6fcfc23502b" + "reference": "5ec1310024e616c027a367e2210a835d50938f63" }, "require": { "php": ">=7.2" @@ -1478,10 +1478,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "13950c02ae6cea71150dea24a03d86ab49730014" + "reference": "fc9a60debc4cc6d6b67ff3bb024334d348b34476" }, "require": { - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-plans": "^0.5.1", "automattic/jetpack-plugins-installer": "^0.5.0", "automattic/jetpack-protect-models": "^0.4.1", @@ -1556,7 +1556,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "c01458a71dcc745495239aba32b29b412050ac24" + "reference": "1080dff3fffc4c29fab4c4d68c51cceaa58a6591" }, "require": { "automattic/jetpack-status": "^5.0.1", @@ -1614,7 +1614,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "aa7d5bf2721b69ff5c2134fb0986ab68ea564140" + "reference": "e1c4e7b2e3f02ff1d7088d78ae292e7545d71b54" }, "require": { "php": ">=7.2" @@ -1671,12 +1671,12 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-search", - "reference": "8aea4fd258d35d56bed8e32b3effdc5902b00712" + "reference": "b0b1cc025c40d24ba0f57b851b4751a27452c65b" }, "require": { "automattic/jetpack-assets": "^4.0.2", "automattic/jetpack-config": "^3.0.0", - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-my-jetpack": "^5.2.0", "automattic/jetpack-status": "^5.0.1", @@ -1762,10 +1762,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "7d4c2ae8593be34356b4cf79eaee8756e657f324" + "reference": "b8b7d3472db366863c159034a71ad041c1bce13b" }, "require": { - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-status": "^5.0.1", "php": ">=7.2" @@ -1832,7 +1832,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "3261c851b8242b0de7df5e26e9e135a2a43e9abc" + "reference": "13347ace786a1129dff0bcd5337799e3e7b82d5a" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -1899,10 +1899,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "a4dfdabb8149adf97fa2bcb12031751764c7e4b0" + "reference": "aec4bcec4646b804c05510791c1de2193d66e453" }, "require": { - "automattic/jetpack-connection": "^6.2.1", + "automattic/jetpack-connection": "^6.2.2-alpha", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-ip": "^0.4.1", "automattic/jetpack-password-checker": "^0.4.1", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 85062aa3..c67cabe6 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' => '0ba5d11a2e778bc76737ab3b42dc5d3fb14d0006', + 'reference' => '4ef3eb6b81443475b594c1f35dca2a9dd14691cf', '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' => '121d1b2b99ebc2f2a87d22c1cbd735845a61e3b1', + 'reference' => '612801ada39cdebc009dd9abbd4a3ff3a6e3f2b1', '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.2', 'version' => '4.0.2.0', - 'reference' => '7d6680f935454d141737c94f01d35ab8d6752466', + 'reference' => 'bcb6003372314ee1427fc53dab34d77383ad847f', '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' => 'c948336547a429cd3c4210b68151f8436bfd6258', + 'reference' => '63847f29f838ad3862ca887ddf2ec84a05a69ddb', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.3.3', 'version' => '0.3.3.0', - 'reference' => '2894f2bc3742d490894d9b17c3132e7d8eac3a2a', + 'reference' => 'c5c355f0f4b9077abd6a6673f6d9179a0de68f91', '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.4.0', 'version' => '0.4.0.0', - 'reference' => '9af9fbe10a1ca9fd86c95ce1e6804e2cf1c3e6e9', + 'reference' => '44e520207349b48142fd247ae6d9f14d6f19877a', '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' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => '3244ba2023ce273074e60ae094f779ad49e5523c', + 'reference' => '09d460e1f50f29374f400353586d1ba138649c05', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -76,16 +76,16 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'bd9dbe9d43eb6fd1185a9aad40326b07393fdf92', + 'reference' => 'd6811f4f079d86ce2efdba5a82e45598b7a5c538', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '6.2.1', - 'version' => '6.2.1.0', - 'reference' => '9e1f2e6bd5c855b0420f65f9d61914fcb793f802', + 'pretty_version' => '6.2.2-alpha.1735582226', + 'version' => '6.2.2.0-alpha1735582226', + 'reference' => 'cbcfae4bdfff6d08472ae5f031036e3b1011e47b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => 'f963292a6efdb5777c28097eae60684ff5f89715', + 'reference' => 'f0a385b44d98b8ea54aa3546b815baa0c9740b2d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '7cef46c2fd0305c2859c96f7b3c992279138e097', + 'reference' => '406ec1560857af114a486eba47e925c7ff833e24', '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.2.3', 'version' => '0.2.3.0', - 'reference' => 'bf9dc53e63f3f13a4f777417528876baa8db9aba', + 'reference' => 'e85d14cb75c89bc5b777c0623cf3210caa696e39', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => 'b3d77a6336e4fa0acc613fd09d188ae1427aea07', + 'reference' => '2a4b487bf2cd2dc6536832c931643b3905a02302', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '4.0.3', 'version' => '4.0.3.0', - 'reference' => '265d50f5b3ccf3f456833563c6c2666c677e860b', + 'reference' => '77dc1aba7cf7e195c213abac9f8b928fb7799c68', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '3.0.2', 'version' => '3.0.2.0', - 'reference' => 'de8a0e50eada98e5e5a4d21ce27f7cd13b16e532', + 'reference' => 'eb5f9f09517173c2131746d3ac8fa5258b1f65c2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '38349efb878ecae81fd7c179c26bf6981f9e36dd', + 'reference' => '4f6b3acd0cf7074db23e4698db6c4263a3e18856', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-my-jetpack' => array( 'pretty_version' => '5.2.0', 'version' => '5.2.0.0', - 'reference' => '58dc8bcafb7c57a2c9e1535951a8bab472e44ada', + 'reference' => '63b6ba07cb79a300fe6ff04f6fa7c4dfb63b412a', '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.4.1', 'version' => '0.4.1.0', - 'reference' => '9acb93c0c14e4ef6d62ab66685840998282020ee', + 'reference' => 'cab9eaeb63e090635b4168fcf7e421a040d1ffde', '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.5.1', 'version' => '0.5.1.0', - 'reference' => '3342e60749f998af497df244df44215b71ea62d8', + 'reference' => '18580edfb692ebd1500547bc9b5a7807f56ea3b0', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => '1ac976c6111f92121bf270757254780fbdcd944f', + 'reference' => 'b923189c8e20771dd12a4a07445c00bf6f9682c6', '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.4.1', 'version' => '0.4.1.0', - 'reference' => '2b205d89738459733ba1c2875303b6fcfc23502b', + 'reference' => '5ec1310024e616c027a367e2210a835d50938f63', '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.4.1', 'version' => '0.4.1.0', - 'reference' => '13950c02ae6cea71150dea24a03d86ab49730014', + 'reference' => 'fc9a60debc4cc6d6b67ff3bb024334d348b34476', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => 'c01458a71dcc745495239aba32b29b412050ac24', + 'reference' => '1080dff3fffc4c29fab4c4d68c51cceaa58a6591', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -220,7 +220,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => 'aa7d5bf2721b69ff5c2134fb0986ab68ea564140', + 'reference' => 'e1c4e7b2e3f02ff1d7088d78ae292e7545d71b54', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -229,7 +229,7 @@ 'automattic/jetpack-search' => array( 'pretty_version' => '0.47.4', 'version' => '0.47.4.0', - 'reference' => '8aea4fd258d35d56bed8e32b3effdc5902b00712', + 'reference' => 'b0b1cc025c40d24ba0f57b851b4751a27452c65b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search', 'aliases' => array(), @@ -247,7 +247,7 @@ 'automattic/jetpack-stats' => array( 'pretty_version' => '0.14.1', 'version' => '0.14.1.0', - 'reference' => '7d4c2ae8593be34356b4cf79eaee8756e657f324', + 'reference' => 'b8b7d3472db366863c159034a71ad041c1bce13b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats', 'aliases' => array(), @@ -256,7 +256,7 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '5.0.1', 'version' => '5.0.1.0', - 'reference' => '3261c851b8242b0de7df5e26e9e135a2a43e9abc', + 'reference' => '13347ace786a1129dff0bcd5337799e3e7b82d5a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -265,7 +265,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '4.2.0', 'version' => '4.2.0.0', - 'reference' => 'a4dfdabb8149adf97fa2bcb12031751764c7e4b0', + 'reference' => 'aec4bcec4646b804c05510791c1de2193d66e453', '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 1561f5cb..befe0690 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -127,123 +127,123 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php' ), 'Automattic\\Jetpack\\Connection\\Authorize_Json_Api' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-authorize-json-api.php' ), 'Automattic\\Jetpack\\Connection\\Client' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Assets' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-assets.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Notice' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php' ), 'Automattic\\Jetpack\\Connection\\Error_Handler' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php' ), 'Automattic\\Jetpack\\Connection\\Initial_State' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Connection\\Manager' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php' ), 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php' ), 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php' ), 'Automattic\\Jetpack\\Connection\\Plugin' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php' ), 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php' ), 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php' ), 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php' ), 'Automattic\\Jetpack\\Connection\\SSO' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Force_2FA' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Helpers' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Notices' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-notices.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\User_Admin' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-user-admin.php' ), 'Automattic\\Jetpack\\Connection\\Secrets' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php' ), 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php' ), 'Automattic\\Jetpack\\Connection\\Tokens' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php' ), 'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php' ), 'Automattic\\Jetpack\\Connection\\Urls' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php' ), 'Automattic\\Jetpack\\Connection\\Utils' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php' ), 'Automattic\\Jetpack\\Constants' => array( @@ -283,7 +283,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-files.php' ), 'Automattic\\Jetpack\\Heartbeat' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php' ), 'Automattic\\Jetpack\\IP\\Utils' => array( @@ -291,23 +291,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-ip/src/class-utils.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\Exception' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-identity-crisis.php' ), 'Automattic\\Jetpack\\JITMS\\JITM' => array( @@ -479,11 +479,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner.php' ), 'Automattic\\Jetpack\\Partner_Coupon' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner-coupon.php' ), 'Automattic\\Jetpack\\Password_Checker' => array( @@ -911,11 +911,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php' ), 'Automattic\\Jetpack\\Tracking' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Container' => array( @@ -927,31 +927,31 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php' ), 'Jetpack_IXR_Client' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' ), 'Jetpack_IXR_ClientMulticall' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' ), 'Jetpack_Options' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php' ), 'Jetpack_Signature' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php' ), 'Jetpack_Tracks_Client' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php' ), 'Jetpack_Tracks_Event' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php' ), 'Jetpack_XMLRPC_Server' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php' ), 'Latest_Autoloader_Guard' => array( diff --git a/vendor/composer/jetpack_autoload_filemap.php b/vendor/composer/jetpack_autoload_filemap.php index 8c25700d..082b098e 100644 --- a/vendor/composer/jetpack_autoload_filemap.php +++ b/vendor/composer/jetpack_autoload_filemap.php @@ -11,7 +11,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php' ), '7372b7fb88a9723cf5b76d456eb0b738' => array( - 'version' => '6.2.1.0', + 'version' => '6.2.2.0-alpha1735582226', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/actions.php' ), );