From 4ca66113d1d75177cd05e52eecbed2d10a303c65 Mon Sep 17 00:00:00 2001 From: nateweller Date: Mon, 16 Sep 2024 17:05:51 +0000 Subject: [PATCH] Protect: Add fixer status to initial state (#39125) Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10888364310 Upstream-Ref: Automattic/jetpack@bf5df64f21e527e95fa484d90ed0f970367ed1de --- .../jetpack-my-jetpack/composer.json | 2 +- .../jetpack-protect-models/CHANGELOG.md | 8 +++ .../jetpack-protect-models/composer.json | 2 +- .../src/class-protect-models.php | 2 +- .../src/class-status-model.php | 7 ++ .../jetpack-protect-status/CHANGELOG.md | 8 +++ .../jetpack-protect-status/composer.json | 4 +- .../src/class-scan-status.php | 4 ++ .../src/class-status.php | 2 +- jetpack_vendor/i18n-map.php | 4 +- vendor/composer/installed.json | 72 +++++++++---------- vendor/composer/installed.php | 64 ++++++++--------- vendor/composer/jetpack_autoload_classmap.php | 20 +++--- 13 files changed, 113 insertions(+), 86 deletions(-) diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index 2314a45b..e865893b 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -18,7 +18,7 @@ "automattic/jetpack-plans": "^0.4.10", "automattic/jetpack-status": "^4.0.1", "automattic/jetpack-sync": "^3.13.0", - "automattic/jetpack-protect-status": "^0.1.5" + "automattic/jetpack-protect-status": "^0.2.0-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-protect-models/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-protect-models/CHANGELOG.md index b40f798b..7d171dd6 100644 --- a/jetpack_vendor/automattic/jetpack-protect-models/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-protect-models/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.3.0-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Changed +- Adds a fixable_threats status property + ## [0.2.1] - 2024-08-26 ### Changed - Updated package dependencies. [#39004] @@ -17,5 +24,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial version. [#37864] +[0.3.0-alpha]: https://github.com/Automattic/jetpack-protect-models/compare/v0.2.1...v0.3.0-alpha [0.2.1]: https://github.com/Automattic/jetpack-protect-models/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/Automattic/jetpack-protect-models/compare/v0.1.0...v0.2.0 diff --git a/jetpack_vendor/automattic/jetpack-protect-models/composer.json b/jetpack_vendor/automattic/jetpack-protect-models/composer.json index b30bde7e..df258430 100644 --- a/jetpack_vendor/automattic/jetpack-protect-models/composer.json +++ b/jetpack_vendor/automattic/jetpack-protect-models/composer.json @@ -33,7 +33,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.2.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" diff --git a/jetpack_vendor/automattic/jetpack-protect-models/src/class-protect-models.php b/jetpack_vendor/automattic/jetpack-protect-models/src/class-protect-models.php index a479f90a..d958bcf5 100644 --- a/jetpack_vendor/automattic/jetpack-protect-models/src/class-protect-models.php +++ b/jetpack_vendor/automattic/jetpack-protect-models/src/class-protect-models.php @@ -12,5 +12,5 @@ */ class Protect_Models { - const PACKAGE_VERSION = '0.2.1'; + const PACKAGE_VERSION = '0.3.0-alpha'; } diff --git a/jetpack_vendor/automattic/jetpack-protect-models/src/class-status-model.php b/jetpack_vendor/automattic/jetpack-protect-models/src/class-status-model.php index ae41025e..73bec9dd 100644 --- a/jetpack_vendor/automattic/jetpack-protect-models/src/class-status-model.php +++ b/jetpack_vendor/automattic/jetpack-protect-models/src/class-status-model.php @@ -53,6 +53,13 @@ class Status_Model { */ public $status; + /** + * List of fixable threat IDs. + * + * @var string[] + */ + public $fixable_threat_ids = array(); + /** * WordPress core status. * diff --git a/jetpack_vendor/automattic/jetpack-protect-status/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-protect-status/CHANGELOG.md index 277db26f..cbc200d7 100644 --- a/jetpack_vendor/automattic/jetpack-protect-status/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-protect-status/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.0-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Changed +- Adds a fixable_threats status property + ## [0.1.5] - 2024-09-05 ### Changed - Update dependencies. @@ -32,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated package dependencies. [#37894] +[0.2.0-alpha]: https://github.com/Automattic/jetpack-protect-status/compare/v0.1.5...v0.2.0-alpha [0.1.5]: https://github.com/Automattic/jetpack-protect-status/compare/v0.1.4...v0.1.5 [0.1.4]: https://github.com/Automattic/jetpack-protect-status/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/Automattic/jetpack-protect-status/compare/v0.1.2...v0.1.3 diff --git a/jetpack_vendor/automattic/jetpack-protect-status/composer.json b/jetpack_vendor/automattic/jetpack-protect-status/composer.json index 5d86c27d..9272590b 100644 --- a/jetpack_vendor/automattic/jetpack-protect-status/composer.json +++ b/jetpack_vendor/automattic/jetpack-protect-status/composer.json @@ -8,7 +8,7 @@ "automattic/jetpack-connection": "^4.0.4-alpha", "automattic/jetpack-plugins-installer": "^0.4.3", "automattic/jetpack-sync": "^3.13.0", - "automattic/jetpack-protect-models": "^0.2.1", + "automattic/jetpack-protect-models": "^0.3.0-alpha", "automattic/jetpack-plans": "^0.4.10" }, "require-dev": { @@ -43,7 +43,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.1.x-dev" + "dev-trunk": "0.2.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" diff --git a/jetpack_vendor/automattic/jetpack-protect-status/src/class-scan-status.php b/jetpack_vendor/automattic/jetpack-protect-status/src/class-scan-status.php index d0f3d58e..0ed447f3 100644 --- a/jetpack_vendor/automattic/jetpack-protect-status/src/class-scan-status.php +++ b/jetpack_vendor/automattic/jetpack-protect-status/src/class-scan-status.php @@ -169,6 +169,10 @@ private static function normalize_api_data( $scan_data ) { if ( isset( $scan_data->threats ) && is_array( $scan_data->threats ) ) { foreach ( $scan_data->threats as $threat ) { + if ( isset( $threat->fixable ) && $threat->fixable ) { + $status->fixable_threat_ids[] = $threat->id; + } + if ( isset( $threat->extension->type ) ) { if ( 'plugin' === $threat->extension->type ) { // add the extension if it does not yet exist in the status diff --git a/jetpack_vendor/automattic/jetpack-protect-status/src/class-status.php b/jetpack_vendor/automattic/jetpack-protect-status/src/class-status.php index 184f546c..a51e7d0b 100644 --- a/jetpack_vendor/automattic/jetpack-protect-status/src/class-status.php +++ b/jetpack_vendor/automattic/jetpack-protect-status/src/class-status.php @@ -15,7 +15,7 @@ */ class Status { - const PACKAGE_VERSION = '0.1.5'; + const PACKAGE_VERSION = '0.2.0-alpha'; /** * Name of the option where status is stored * diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index c091ea9b..60dcc055 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -58,11 +58,11 @@ ), 'jetpack-protect-models' => array( 'path' => 'jetpack_vendor/automattic/jetpack-protect-models', - 'ver' => '0.2.1', + 'ver' => '0.3.0-alpha1726505426', ), 'jetpack-protect-status' => array( 'path' => 'jetpack_vendor/automattic/jetpack-protect-status', - 'ver' => '0.1.5', + 'ver' => '0.2.0-alpha1726505426', ), 'jetpack-search-pkg' => array( 'path' => 'jetpack_vendor/automattic/jetpack-search', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index c6b29f04..fde58273 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": "9664ac738bbf1619dba223014fae0cddec8ce118" + "reference": "9e85d074b8c1c546ba80735026232153903da1a9" }, "require": { "php": ">=7.0" @@ -60,7 +60,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "e403c9e48ab19c6c6abd899dfbecb4341be2a416" + "reference": "27ea3de1e4bdc3791914c54b516ca32bec2ec48d" }, "require": { "php": ">=7.0" @@ -125,7 +125,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "306946bf7188ba9f4716604c715bd63d496a8460" + "reference": "c474caf76b08da55847400ce3395d629b6747a7b" }, "require": { "automattic/jetpack-constants": "^2.0.4", @@ -194,7 +194,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "25eac94934b0030c1f5f330bf2bd4f71777d9e95" + "reference": "e20867285eaed1477e339f620f922fa6ab2eca5f" }, "require": { "composer-plugin-api": "^1.1 || ^2.0", @@ -261,7 +261,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "f0d3b1aef44ee13e67562f3a35df5ec965f101b0" + "reference": "7954da86b10b6f276f9be2875c266d7e4d82f1c4" }, "require": { "automattic/jetpack-connection": "^4.0.4-alpha", @@ -329,7 +329,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "d1a8403376cfa7633fc61e183580744b82b2bd0c" + "reference": "0d5bf2d414d0d73bc7af0d3c622e03497dc087a2" }, "require": { "automattic/jetpack-boost-core": "^0.2.11", @@ -405,7 +405,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "e0ba08c35fce28bab43ec5fbfbe1eab4028f4f06" + "reference": "9bd516338f0e98518e875e98b3f5671dd1600673" }, "require": { "composer-plugin-api": "^2.1.0", @@ -465,7 +465,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "c3a4bbf80fb88f70161686ac2d5205b7fca59091" + "reference": "6edce8918d9ed702240d9a5ac27a2f26030d89a1" }, "require": { "php": ">=7.0" @@ -540,7 +540,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "dce3d068431e225134e1c40bdb86df54de97bdde" + "reference": "ad7887e1959d80bfc4879f42acff7ff19e18262a" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.2", @@ -630,7 +630,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "c578cfacad0518c330acd6d8213ff3aa9152f078" + "reference": "6dc1ab18d1f03b7c39909909894062918e45cced" }, "require": { "php": ">=7.0" @@ -684,7 +684,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "85bad61cd2730d8404abae590d1221fba7953193" + "reference": "8f045554094319652caf7c4cbee965456896dca1" }, "require": { "php": ">=7.0" @@ -737,7 +737,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "a71b5ec07e9da35f823168177ab22c0258496ef3" + "reference": "49870806cc72ec6ac6cb0c321af7bceb1d8df312" }, "require": { "automattic/jetpack-connection": "^4.0.4-alpha", @@ -812,7 +812,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "93df90c0b19ba6c861c6747053e09845a0e4dc91" + "reference": "5d386a3ab6438970d11f9eb4e9d2fd3cfd8bbf84" }, "require": { "php": ">=7.0" @@ -870,7 +870,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "743b4bdc14568c2d0f8d7b9978a9b52285934225" + "reference": "34e1870f2f6ad9096931add800b75e6a8792c057" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.2", @@ -945,7 +945,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "393b0bb9edc7a8d15a76bcadd7b82b79d23a5b8c" + "reference": "3dfc57fb1d9704567d605bf98ceab0b8d3612e62" }, "require": { "automattic/jetpack-connection": "^4.0.4-alpha", @@ -1007,7 +1007,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "ecd50978095d700db0c3938552661f97e87a55ab" + "reference": "65c8ca620a2ae5dc2eb119bd2c4c73bee22a83bb" }, "require": { "php": ">=7.0" @@ -1060,7 +1060,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "4644607e0a4c4b4e86ebac054dba6f42c74b82b3" + "reference": "0b4081920c272f34126c34cc559bb09c51f25e96" }, "require": { "automattic/jetpack-admin-ui": "^0.4.5", @@ -1073,7 +1073,7 @@ "automattic/jetpack-licensing": "^2.0.9", "automattic/jetpack-plans": "^0.4.10", "automattic/jetpack-plugins-installer": "^0.4.3", - "automattic/jetpack-protect-status": "^0.1.5", + "automattic/jetpack-protect-status": "^0.2.0-alpha", "automattic/jetpack-redirect": "^2.0.4", "automattic/jetpack-status": "^4.0.1", "automattic/jetpack-sync": "^3.13.0", @@ -1162,7 +1162,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "1d003f6de97051146ce2a211858de2467359b5bc" + "reference": "7e7c600242f422af2248565ff0ebe1bf2d6ddd02" }, "require": { "php": ">=7.0" @@ -1223,7 +1223,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "53904ceff5291169a293c95e425a34538033729a" + "reference": "cebf697eb381deee758256fb067d673ffa40c0fe" }, "require": { "automattic/jetpack-connection": "^4.0.4-alpha", @@ -1291,7 +1291,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "416e6e299c54e9edcf457a1996526fe718eeab4f" + "reference": "0920f6b660fa4540e1fa63fee3c261075b9b2200" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.2", @@ -1342,12 +1342,12 @@ }, { "name": "automattic/jetpack-protect-models", - "version": "0.2.1", - "version_normalized": "0.2.1.0", + "version": "0.3.0-alpha.1726505426", + "version_normalized": "0.3.0.0-alpha1726505426", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "ef6cedaf49784246ebfb9fd85c48b7196d878288" + "reference": "e42b96053286b06c08ff7123adcf7d395ea246e2" }, "require": { "php": ">=7.0" @@ -1364,7 +1364,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.2.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" @@ -1412,18 +1412,18 @@ }, { "name": "automattic/jetpack-protect-status", - "version": "0.1.5", - "version_normalized": "0.1.5.0", + "version": "0.2.0-alpha.1726505426", + "version_normalized": "0.2.0.0-alpha1726505426", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "97bccf90d7899c8f64d6de06e8b5c8606454ac66" + "reference": "a85967ff5b121fcbf3f60f52ea626210582d2278" }, "require": { "automattic/jetpack-connection": "^4.0.4-alpha", "automattic/jetpack-plans": "^0.4.10", "automattic/jetpack-plugins-installer": "^0.4.3", - "automattic/jetpack-protect-models": "^0.2.1", + "automattic/jetpack-protect-models": "^0.3.0-alpha", "automattic/jetpack-sync": "^3.13.0", "php": ">=7.0" }, @@ -1439,7 +1439,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.1.x-dev" + "dev-trunk": "0.2.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" @@ -1492,7 +1492,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "c234ea82220546638041f7a51250a5261f26efd5" + "reference": "20bc4d0becaf95b5ee0b3b36c01e1aeae76e8b10" }, "require": { "automattic/jetpack-status": "^4.0.1", @@ -1547,7 +1547,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "9f337846fe4a641b2f22d3b0944f069590e7413e" + "reference": "badccc333695ae46f30d941e14d7b0d7c4c7ea7f" }, "require": { "php": ">=7.0" @@ -1601,7 +1601,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-search", - "reference": "2f575f8a8ef1d10a313a93e20842b684575b87b7" + "reference": "03575a8d5819dd080fd5a267244c3d816a0ef950" }, "require": { "automattic/jetpack-assets": "^2.3.8", @@ -1689,7 +1689,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "0ac00af8896454ff01999927aa7dfcbc5508ca48" + "reference": "bead8a59a8e3ed596dd9fe91ab62420d642c14d3" }, "require": { "automattic/jetpack-connection": "^4.0.4-alpha", @@ -1756,7 +1756,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "41a855fb5a3812e395502d1ffebd050031b993e8" + "reference": "7f2311e382038a3fcefcfe6b867527a8c9eda087" }, "require": { "automattic/jetpack-constants": "^2.0.4", @@ -1820,7 +1820,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "00dd75e9d9240851c3c984d515a4930409c13b2c" + "reference": "f8a471d01443b6fdb7abf817d39162cd7e4fa4b6" }, "require": { "automattic/jetpack-connection": "^4.0.4-alpha", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 6b82848e..d59bebac 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,7 +13,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '2.0.2', 'version' => '2.0.2.0', - 'reference' => '9664ac738bbf1619dba223014fae0cddec8ce118', + 'reference' => '9e85d074b8c1c546ba80735026232153903da1a9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), @@ -22,7 +22,7 @@ 'automattic/jetpack-admin-ui' => array( 'pretty_version' => '0.4.5', 'version' => '0.4.5.0', - 'reference' => 'e403c9e48ab19c6c6abd899dfbecb4341be2a416', + 'reference' => '27ea3de1e4bdc3791914c54b516ca32bec2ec48d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '2.3.8', 'version' => '2.3.8.0', - 'reference' => '306946bf7188ba9f4716604c715bd63d496a8460', + 'reference' => 'c474caf76b08da55847400ce3395d629b6747a7b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '3.1.0', 'version' => '3.1.0.0', - 'reference' => '25eac94934b0030c1f5f330bf2bd4f71777d9e95', + 'reference' => 'e20867285eaed1477e339f620f922fa6ab2eca5f', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.2.11', 'version' => '0.2.11.0', - 'reference' => 'f0d3b1aef44ee13e67562f3a35df5ec965f101b0', + 'reference' => '7954da86b10b6f276f9be2875c266d7e4d82f1c4', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-core', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-boost-speed-score' => array( 'pretty_version' => '0.3.12', 'version' => '0.3.12.0', - 'reference' => 'd1a8403376cfa7633fc61e183580744b82b2bd0c', + 'reference' => '0d5bf2d414d0d73bc7af0d3c622e03497dc087a2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-speed-score', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '2.0.3', 'version' => '2.0.3.0', - 'reference' => 'e0ba08c35fce28bab43ec5fbfbe1eab4028f4f06', + 'reference' => '9bd516338f0e98518e875e98b3f5671dd1600673', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => 'c3a4bbf80fb88f70161686ac2d5205b7fca59091', + 'reference' => '6edce8918d9ed702240d9a5ac27a2f26030d89a1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-connection' => array( 'pretty_version' => '4.0.4-alpha.1726500970', 'version' => '4.0.4.0-alpha1726500970', - 'reference' => 'dce3d068431e225134e1c40bdb86df54de97bdde', + 'reference' => 'ad7887e1959d80bfc4879f42acff7ff19e18262a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => 'c578cfacad0518c330acd6d8213ff3aa9152f078', + 'reference' => '6dc1ab18d1f03b7c39909909894062918e45cced', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '2.1.5', 'version' => '2.1.5.0', - 'reference' => '85bad61cd2730d8404abae590d1221fba7953193', + 'reference' => '8f045554094319652caf7c4cbee965456896dca1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-explat' => array( 'pretty_version' => '0.1.8', 'version' => '0.1.8.0', - 'reference' => 'a71b5ec07e9da35f823168177ab22c0258496ef3', + 'reference' => '49870806cc72ec6ac6cb0c321af7bceb1d8df312', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.2.3', 'version' => '0.2.3.0', - 'reference' => '93df90c0b19ba6c861c6747053e09845a0e4dc91', + 'reference' => '5d386a3ab6438970d11f9eb4e9d2fd3cfd8bbf84', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '3.1.22', 'version' => '3.1.22.0', - 'reference' => '743b4bdc14568c2d0f8d7b9978a9b52285934225', + 'reference' => '34e1870f2f6ad9096931add800b75e6a8792c057', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '2.0.9', 'version' => '2.0.9.0', - 'reference' => '393b0bb9edc7a8d15a76bcadd7b82b79d23a5b8c', + 'reference' => '3dfc57fb1d9704567d605bf98ceab0b8d3612e62', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => 'ecd50978095d700db0c3938552661f97e87a55ab', + 'reference' => '65c8ca620a2ae5dc2eb119bd2c4c73bee22a83bb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-my-jetpack' => array( 'pretty_version' => '4.35.7-alpha.1726503793', 'version' => '4.35.7.0-alpha1726503793', - 'reference' => '4644607e0a4c4b4e86ebac054dba6f42c74b82b3', + 'reference' => '0b4081920c272f34126c34cc559bb09c51f25e96', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.3.2', 'version' => '0.3.2.0', - 'reference' => '1d003f6de97051146ce2a211858de2467359b5bc', + 'reference' => '7e7c600242f422af2248565ff0ebe1bf2d6ddd02', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.4.10', 'version' => '0.4.10.0', - 'reference' => '53904ceff5291169a293c95e425a34538033729a', + 'reference' => 'cebf697eb381deee758256fb067d673ffa40c0fe', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -184,25 +184,25 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.4.3', 'version' => '0.4.3.0', - 'reference' => '416e6e299c54e9edcf457a1996526fe718eeab4f', + 'reference' => '0920f6b660fa4540e1fa63fee3c261075b9b2200', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-protect-models' => array( - 'pretty_version' => '0.2.1', - 'version' => '0.2.1.0', - 'reference' => 'ef6cedaf49784246ebfb9fd85c48b7196d878288', + 'pretty_version' => '0.3.0-alpha.1726505426', + 'version' => '0.3.0.0-alpha1726505426', + 'reference' => 'e42b96053286b06c08ff7123adcf7d395ea246e2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-models', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-protect-status' => array( - 'pretty_version' => '0.1.5', - 'version' => '0.1.5.0', - 'reference' => '97bccf90d7899c8f64d6de06e8b5c8606454ac66', + 'pretty_version' => '0.2.0-alpha.1726505426', + 'version' => '0.2.0.0-alpha1726505426', + 'reference' => 'a85967ff5b121fcbf3f60f52ea626210582d2278', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => 'c234ea82220546638041f7a51250a5261f26efd5', + 'reference' => '20bc4d0becaf95b5ee0b3b36c01e1aeae76e8b10', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -220,7 +220,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '2.0.3', 'version' => '2.0.3.0', - 'reference' => '9f337846fe4a641b2f22d3b0944f069590e7413e', + 'reference' => 'badccc333695ae46f30d941e14d7b0d7c4c7ea7f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -229,7 +229,7 @@ 'automattic/jetpack-search' => array( 'pretty_version' => '0.45.5-alpha.1726500970', 'version' => '0.45.5.0-alpha1726500970', - 'reference' => '2f575f8a8ef1d10a313a93e20842b684575b87b7', + 'reference' => '03575a8d5819dd080fd5a267244c3d816a0ef950', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search', 'aliases' => array(), @@ -247,7 +247,7 @@ 'automattic/jetpack-stats' => array( 'pretty_version' => '0.13.2', 'version' => '0.13.2.0', - 'reference' => '0ac00af8896454ff01999927aa7dfcbc5508ca48', + 'reference' => 'bead8a59a8e3ed596dd9fe91ab62420d642c14d3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats', 'aliases' => array(), @@ -256,7 +256,7 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '4.0.1', 'version' => '4.0.1.0', - 'reference' => '41a855fb5a3812e395502d1ffebd050031b993e8', + 'reference' => '7f2311e382038a3fcefcfe6b867527a8c9eda087', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -265,7 +265,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '3.13.0', 'version' => '3.13.0.0', - 'reference' => '00dd75e9d9240851c3c984d515a4930409c13b2c', + 'reference' => 'f8a471d01443b6fdb7abf817d39162cd7e4fa4b6', '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 2241c260..b81c7915 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -483,43 +483,43 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-plugins-installer/src/class-plugins-installer.php' ), 'Automattic\\Jetpack\\Protect_Models' => array( - 'version' => '0.2.1.0', + 'version' => '0.3.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-models/src/class-protect-models.php' ), 'Automattic\\Jetpack\\Protect_Models\\Extension_Model' => array( - 'version' => '0.2.1.0', + 'version' => '0.3.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-models/src/class-extension-model.php' ), 'Automattic\\Jetpack\\Protect_Models\\History_Model' => array( - 'version' => '0.2.1.0', + 'version' => '0.3.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-models/src/class-history-model.php' ), 'Automattic\\Jetpack\\Protect_Models\\Status_Model' => array( - 'version' => '0.2.1.0', + 'version' => '0.3.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-models/src/class-status-model.php' ), 'Automattic\\Jetpack\\Protect_Models\\Threat_Model' => array( - 'version' => '0.2.1.0', + 'version' => '0.3.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-models/src/class-threat-model.php' ), 'Automattic\\Jetpack\\Protect_Status\\Plan' => array( - 'version' => '0.1.5.0', + 'version' => '0.2.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-status/src/class-plan.php' ), 'Automattic\\Jetpack\\Protect_Status\\Protect_Status' => array( - 'version' => '0.1.5.0', + 'version' => '0.2.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-status/src/class-protect-status.php' ), 'Automattic\\Jetpack\\Protect_Status\\REST_Controller' => array( - 'version' => '0.1.5.0', + 'version' => '0.2.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-status/src/class-rest-controller.php' ), 'Automattic\\Jetpack\\Protect_Status\\Scan_Status' => array( - 'version' => '0.1.5.0', + 'version' => '0.2.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-status/src/class-scan-status.php' ), 'Automattic\\Jetpack\\Protect_Status\\Status' => array( - 'version' => '0.1.5.0', + 'version' => '0.2.0.0-alpha1726505426', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-protect-status/src/class-status.php' ), 'Automattic\\Jetpack\\Redirect' => array(