From 9ee244db75e192ab466db5e3799fa69c496b6b8e Mon Sep 17 00:00:00 2001 From: ice9js Date: Mon, 16 Oct 2023 19:06:09 +0000 Subject: [PATCH] Backport chaanges for mu-wpcom-plugin 1.7.1 and jejtpack 12.8-a.1 (#33619) * Changelog edits. * Set version to 12.8-a.2 Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/6537945473 --- composer.json | 8 +- .../jetpack-identity-crisis/CHANGELOG.md | 9 +- .../src/class-identity-crisis.php | 2 +- .../jetpack-my-jetpack/CHANGELOG.md | 9 +- .../jetpack-my-jetpack/composer.json | 2 +- .../src/class-initializer.php | 2 +- .../automattic/jetpack-publicize/CHANGELOG.md | 9 +- .../automattic/jetpack-sync/CHANGELOG.md | 9 +- .../automattic/jetpack-sync/composer.json | 2 +- .../src/class-package-version.php | 2 +- jetpack_vendor/i18n-map.php | 8 +- vendor/composer/installed.json | 68 +++--- vendor/composer/installed.php | 64 +++--- vendor/composer/jetpack_autoload_classmap.php | 206 +++++++++--------- vendor/composer/jetpack_autoload_filemap.php | 2 +- 15 files changed, 195 insertions(+), 207 deletions(-) diff --git a/composer.json b/composer.json index 6ee94889b..c13bf042d 100644 --- a/composer.json +++ b/composer.json @@ -9,11 +9,11 @@ "automattic/jetpack-autoloader": "^2.12.0", "automattic/jetpack-composer-plugin": "^1.1.14", "automattic/jetpack-config": "^1.15.4", - "automattic/jetpack-identity-crisis": "^0.10.7-alpha", - "automattic/jetpack-publicize": "^0.36.3-alpha", + "automattic/jetpack-identity-crisis": "^0.10.7", + "automattic/jetpack-publicize": "^0.36.3", "automattic/jetpack-connection": "^1.58.1", - "automattic/jetpack-my-jetpack": "^3.8.2-alpha", - "automattic/jetpack-sync": "^1.58.0-alpha", + "automattic/jetpack-my-jetpack": "^3.8.2", + "automattic/jetpack-sync": "^1.58.0", "automattic/jetpack-status": "^1.18.5", "automattic/jetpack-plans": "^0.3.4" }, diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md index 212bff306..f639c0a1b 100644 --- a/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md @@ -5,12 +5,9 @@ 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.10.7-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [0.10.7] - 2023-10-16 ### Changed -- Updated package dependencies. +- Updated package dependencies. [#33429] ## [0.10.6] - 2023-10-10 ### Changed @@ -424,7 +421,7 @@ This is an alpha version! The changes listed here are not final. - Updated package dependencies. - Use Connection/Urls for home_url and site_url functions migrated from Sync. -[0.10.7-alpha]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.6...v0.10.7-alpha +[0.10.7]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.6...v0.10.7 [0.10.6]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.5...v0.10.6 [0.10.5]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.4...v0.10.5 [0.10.4]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.3...v0.10.4 diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php b/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php index 5230fc6b3..5a95e30d3 100644 --- a/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php +++ b/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php @@ -27,7 +27,7 @@ class Identity_Crisis { /** * Package Version */ - const PACKAGE_VERSION = '0.10.7-alpha'; + const PACKAGE_VERSION = '0.10.7'; /** * Instance of the object. diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md index ce25eee23..fe715b6d4 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md @@ -5,12 +5,9 @@ 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). -## [3.8.2-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [3.8.2] - 2023-10-16 ### Changed -- Updated package dependencies. +- Updated package dependencies. [#33429, #33584] ## [3.8.1] - 2023-10-10 ### Changed @@ -1060,7 +1057,7 @@ This is an alpha version! The changes listed here are not final. ### Added - Created package -[3.8.2-alpha]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.8.1...3.8.2-alpha +[3.8.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.8.1...3.8.2 [3.8.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.8.0...3.8.1 [3.8.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.7.0...3.8.0 [3.7.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.6.0...3.7.0 diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index 1c7e643d3..ca4bf975f 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -17,7 +17,7 @@ "yoast/phpunit-polyfills": "1.1.0", "automattic/jetpack-changelogger": "^3.3.11", "automattic/wordbless": "@dev", - "automattic/jetpack-videopress": "^0.17.5-alpha" + "automattic/jetpack-videopress": "^0.17.5" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." 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 e22b075ff..b40263c0e 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php @@ -32,7 +32,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '3.8.2-alpha'; + const PACKAGE_VERSION = '3.8.2'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/jetpack_vendor/automattic/jetpack-publicize/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-publicize/CHANGELOG.md index f3ef637f9..8143ce552 100644 --- a/jetpack_vendor/automattic/jetpack-publicize/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-publicize/CHANGELOG.md @@ -5,12 +5,9 @@ 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.36.3-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [0.36.3] - 2023-10-16 ### Changed -- Added type prop to custom media for social posts +- Added type prop to custom media for social posts. [#33504] ## [0.36.2] - 2023-10-10 ### Changed @@ -400,7 +397,7 @@ This is an alpha version! The changes listed here are not final. - Updated package dependencies. - Update package.json metadata. -[0.36.3-alpha]: https://github.com/Automattic/jetpack-publicize/compare/v0.36.2...v0.36.3-alpha +[0.36.3]: https://github.com/Automattic/jetpack-publicize/compare/v0.36.2...v0.36.3 [0.36.2]: https://github.com/Automattic/jetpack-publicize/compare/v0.36.1...v0.36.2 [0.36.1]: https://github.com/Automattic/jetpack-publicize/compare/v0.36.0...v0.36.1 [0.36.0]: https://github.com/Automattic/jetpack-publicize/compare/v0.35.0...v0.36.0 diff --git a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md index 91297af93..6390d051f 100644 --- a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md @@ -5,12 +5,9 @@ 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). -## [1.58.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [1.58.0] - 2023-10-16 ### Changed -- Migrated 'jetpack_sync_before_send*' actions for Sync queue to 'jetpack_sync_before_enqueue' instead +- Migrated 'jetpack_sync_before_send*' actions for Sync queue to 'jetpack_sync_before_enqueue' instead. [#33384] ## [1.57.4] - 2023-10-10 @@ -945,7 +942,7 @@ This is an alpha version! The changes listed here are not final. - Packages: Move sync to a classmapped package -[1.58.0-alpha]: https://github.com/Automattic/jetpack-sync/compare/v1.57.4...v1.58.0-alpha +[1.58.0]: https://github.com/Automattic/jetpack-sync/compare/v1.57.4...v1.58.0 [1.57.4]: https://github.com/Automattic/jetpack-sync/compare/v1.57.3...v1.57.4 [1.57.3]: https://github.com/Automattic/jetpack-sync/compare/v1.57.2...v1.57.3 [1.57.2]: https://github.com/Automattic/jetpack-sync/compare/v1.57.1...v1.57.2 diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json index 457a95175..7508bacec 100644 --- a/jetpack_vendor/automattic/jetpack-sync/composer.json +++ b/jetpack_vendor/automattic/jetpack-sync/composer.json @@ -6,7 +6,7 @@ "require": { "automattic/jetpack-connection": "^1.58.1", "automattic/jetpack-constants": "^1.6.23", - "automattic/jetpack-identity-crisis": "^0.10.7-alpha", + "automattic/jetpack-identity-crisis": "^0.10.7", "automattic/jetpack-password-checker": "^0.2.14", "automattic/jetpack-ip": "^0.1.6", "automattic/jetpack-roles": "^1.4.25", diff --git a/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php b/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php index f767bab01..18f7daad7 100644 --- a/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php +++ b/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '1.58.0-alpha'; + const PACKAGE_VERSION = '1.58.0'; const PACKAGE_SLUG = 'sync'; diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index f4002d647..4a59712ad 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -22,7 +22,7 @@ ), 'jetpack-idc' => array( 'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis', - 'ver' => '0.10.7-alpha1697047949', + 'ver' => '0.10.7', ), 'jetpack-ip' => array( 'path' => 'jetpack_vendor/automattic/jetpack-ip', @@ -38,7 +38,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '3.8.2-alpha1697133599', + 'ver' => '3.8.2', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', @@ -50,11 +50,11 @@ ), 'jetpack-publicize-pkg' => array( 'path' => 'jetpack_vendor/automattic/jetpack-publicize', - 'ver' => '0.36.3-alpha1697193230', + 'ver' => '0.36.3', ), 'jetpack-sync' => array( 'path' => 'jetpack_vendor/automattic/jetpack-sync', - 'ver' => '1.58.0-alpha1697195883', + 'ver' => '1.58.0', ), ), ); diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 7e330c3ef..c5a726215 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": "d0b11874393a66368db5af7bc19e766ae5951650" + "reference": "5785e5dd2df8362e673549734c0bc369a6fb92c5" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -57,7 +57,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "e46a24273d5c4c976a3c45c4930393f4dc3e276a" + "reference": "16c2c405f500d77940e5779bb86c94ea120fd2f7" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -119,7 +119,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "d4f7bdce7671063cc124215e881eab31d6baaeec" + "reference": "3285e8595c01d018ae342579138d426312d8753c" }, "require": { "automattic/jetpack-constants": "^1.6.23" @@ -187,7 +187,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "1b5a65a8722ce84160feee0b272e2819dca94270" + "reference": "24321ee625626ddfe69d706d00e275171c11f768" }, "require": { "composer-plugin-api": "^1.1 || ^2.0" @@ -252,7 +252,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "519fdf1f6974e501ba99eb02d6bd53de115f1b2c" + "reference": "9c85a6c466655c5104cde39393b665f9d86d0672" }, "require": { "composer-plugin-api": "^2.1.0" @@ -311,7 +311,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "3e8cefddaa827d2fec020c5c611b18996866d45d" + "reference": "bf4aa3e4268ec3280b23cc3725456d5e2f9d14ea" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11" @@ -353,7 +353,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "5e064529dc6849a66239635c481ae8c0f51274dc" + "reference": "8e23669882009fe51224d6522ba2fc454a841b44" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22", @@ -431,7 +431,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "383ed80648a99e2f32a292086b701b09a7ab352c" + "reference": "ceea7c65dbfeda26f6a7526c5eb2fbf12d932c46" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -482,7 +482,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "610cc2b0320ad9fc2aeca5890438fa3c5e75bab8" + "reference": "95108b0d42a8cf60cbc27c188e54e7ff13f0a8ed" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -527,12 +527,12 @@ }, { "name": "automattic/jetpack-identity-crisis", - "version": "0.10.7-alpha.1697047949", - "version_normalized": "0.10.7.0-alpha1697047949", + "version": "0.10.7", + "version_normalized": "0.10.7.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-identity-crisis", - "reference": "7811cb91a95e993cfe02c60f230dc8045fd40c02" + "reference": "bdb8d4971f62426daae1e4887bddd4ba4a7f8d2f" }, "require": { "automattic/jetpack-assets": "^1.18.12", @@ -610,7 +610,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "369e846e9cd4349e5d802b9aa236379166dd0a88" + "reference": "46a0ef3b0dfa0f11aaedb836e61376acd0693cb2" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -665,7 +665,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "6f60ebc26618e7b3ed2392cd793cd4246bceddfe" + "reference": "844d8d7811303dba96c56f4366458c2f47098a8d" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22", @@ -740,7 +740,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "acb40f32736ac1b0510e60bc40d6b37cac52e88e" + "reference": "b410382b588029fd267d8df27d53f52fbcffbfb1" }, "require": { "automattic/jetpack-connection": "^1.58.1" @@ -801,7 +801,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "532912bfabf0a154741f606d99cd40b14d1e6289" + "reference": "e72aa8f593b973d606999dff66f4b614c22da2ed" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -846,12 +846,12 @@ }, { "name": "automattic/jetpack-my-jetpack", - "version": "3.8.2-alpha.1697133599", - "version_normalized": "3.8.2.0-alpha1697133599", + "version": "3.8.2", + "version_normalized": "3.8.2.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "373ce538edaa69fcf6f3cdb5deaeb44e3d70a098" + "reference": "272929bab5a222c9ee8c2f6db4c4cbaa2d74099c" }, "require": { "automattic/jetpack-admin-ui": "^0.2.23", @@ -865,7 +865,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", - "automattic/jetpack-videopress": "^0.17.5-alpha", + "automattic/jetpack-videopress": "^0.17.5", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0" }, @@ -941,7 +941,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-partner", - "reference": "fcf57f497652eec78c03ce66641601edda2bd39d" + "reference": "e7e432247db6809f6f8d592d7e18ce9d9f86237b" }, "require": { "automattic/jetpack-connection": "^1.58.1", @@ -1003,7 +1003,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "bcd797b71d73de4366566a678016a433fabad083" + "reference": "91cf902b1bbdcaaa12e0809ebe634bc71ce74d13" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -1061,7 +1061,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "913c2a222ec7e7e4bc8226149e664632fb7db381" + "reference": "606d687e50c25695bb3cc7c2e0cda86aaa6abbf0" }, "require": { "automattic/jetpack-connection": "^1.58.1" @@ -1128,7 +1128,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "f9f15e1262cbf7f748cf3d3e3810dc173ad08efa" + "reference": "dad1faab37743900a8cff408b84e2ab9350a4a9d" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22" @@ -1177,12 +1177,12 @@ }, { "name": "automattic/jetpack-publicize", - "version": "0.36.3-alpha.1697193230", - "version_normalized": "0.36.3.0-alpha1697193230", + "version": "0.36.3", + "version_normalized": "0.36.3.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-publicize", - "reference": "cd2469316f71b77f78f705fdb82d884616b8d4e6" + "reference": "0d798703b70beee869ace8e8a58c88534eb02384" }, "require": { "automattic/jetpack-assets": "^1.18.12", @@ -1261,7 +1261,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "6e3546dc9c1251973ae5c47cb4bd8e1f190c4379" + "reference": "a52cfdd620add897bf9cb2e0ef9add3de6cb507a" }, "require": { "automattic/jetpack-status": "^1.18.5" @@ -1315,7 +1315,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "764b5f1678b6d02869bad249e437bcfbb3453b90" + "reference": "59070b76056f77c17de1e1118fa3e0311f6a62b4" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -1366,7 +1366,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "686f3678d7547e61ed46dbbdbdee424e48693793" + "reference": "b1f2218e913b8c0083bd897d30686a144c60859f" }, "require": { "automattic/jetpack-constants": "^1.6.23" @@ -1416,17 +1416,17 @@ }, { "name": "automattic/jetpack-sync", - "version": "1.58.0-alpha.1697195883", - "version_normalized": "1.58.0.0-alpha1697195883", + "version": "1.58.0", + "version_normalized": "1.58.0.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "77b35e2ed72b063aebe8fe72328ddcb9f24afb7a" + "reference": "db733bc4840418dc226c74b895f2371b18a8df8f" }, "require": { "automattic/jetpack-connection": "^1.58.1", "automattic/jetpack-constants": "^1.6.23", - "automattic/jetpack-identity-crisis": "^0.10.7-alpha", + "automattic/jetpack-identity-crisis": "^0.10.7", "automattic/jetpack-ip": "^0.1.6", "automattic/jetpack-password-checker": "^0.2.14", "automattic/jetpack-roles": "^1.4.25", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index e86a783ff..c46d4a323 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,7 +13,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '1.4.22', 'version' => '1.4.22.0', - 'reference' => 'd0b11874393a66368db5af7bc19e766ae5951650', + 'reference' => '5785e5dd2df8362e673549734c0bc369a6fb92c5', '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.2.23', 'version' => '0.2.23.0', - 'reference' => 'e46a24273d5c4c976a3c45c4930393f4dc3e276a', + 'reference' => '16c2c405f500d77940e5779bb86c94ea120fd2f7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '1.18.12', 'version' => '1.18.12.0', - 'reference' => 'd4f7bdce7671063cc124215e881eab31d6baaeec', + 'reference' => '3285e8595c01d018ae342579138d426312d8753c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '2.12.0', 'version' => '2.12.0.0', - 'reference' => '1b5a65a8722ce84160feee0b272e2819dca94270', + 'reference' => '24321ee625626ddfe69d706d00e275171c11f768', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '1.1.14', 'version' => '1.1.14.0', - 'reference' => '519fdf1f6974e501ba99eb02d6bd53de115f1b2c', + 'reference' => '9c85a6c466655c5104cde39393b665f9d86d0672', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '1.15.4', 'version' => '1.15.4.0', - 'reference' => '3e8cefddaa827d2fec020c5c611b18996866d45d', + 'reference' => 'bf4aa3e4268ec3280b23cc3725456d5e2f9d14ea', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-connection' => array( 'pretty_version' => '1.58.1', 'version' => '1.58.1.0', - 'reference' => '5e064529dc6849a66239635c481ae8c0f51274dc', + 'reference' => '8e23669882009fe51224d6522ba2fc454a841b44', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '1.6.23', 'version' => '1.6.23.0', - 'reference' => '383ed80648a99e2f32a292086b701b09a7ab352c', + 'reference' => 'ceea7c65dbfeda26f6a7526c5eb2fbf12d932c46', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -85,16 +85,16 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '1.4.27', 'version' => '1.4.27.0', - 'reference' => '610cc2b0320ad9fc2aeca5890438fa3c5e75bab8', + 'reference' => '95108b0d42a8cf60cbc27c188e54e7ff13f0a8ed', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-identity-crisis' => array( - 'pretty_version' => '0.10.7-alpha.1697047949', - 'version' => '0.10.7.0-alpha1697047949', - 'reference' => '7811cb91a95e993cfe02c60f230dc8045fd40c02', + 'pretty_version' => '0.10.7', + 'version' => '0.10.7.0', + 'reference' => 'bdb8d4971f62426daae1e4887bddd4ba4a7f8d2f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-identity-crisis', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.1.6', 'version' => '0.1.6.0', - 'reference' => '369e846e9cd4349e5d802b9aa236379166dd0a88', + 'reference' => '46a0ef3b0dfa0f11aaedb836e61376acd0693cb2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '2.5.0', 'version' => '2.5.0.0', - 'reference' => '6f60ebc26618e7b3ed2392cd793cd4246bceddfe', + 'reference' => '844d8d7811303dba96c56f4366458c2f47098a8d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '1.8.4', 'version' => '1.8.4.0', - 'reference' => 'acb40f32736ac1b0510e60bc40d6b37cac52e88e', + 'reference' => 'b410382b588029fd267d8df27d53f52fbcffbfb1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -130,16 +130,16 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '1.6.3', 'version' => '1.6.3.0', - 'reference' => '532912bfabf0a154741f606d99cd40b14d1e6289', + 'reference' => 'e72aa8f593b973d606999dff66f4b614c22da2ed', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => '3.8.2-alpha.1697133599', - 'version' => '3.8.2.0-alpha1697133599', - 'reference' => '373ce538edaa69fcf6f3cdb5deaeb44e3d70a098', + 'pretty_version' => '3.8.2', + 'version' => '3.8.2.0', + 'reference' => '272929bab5a222c9ee8c2f6db4c4cbaa2d74099c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-partner' => array( 'pretty_version' => '1.7.25', 'version' => '1.7.25.0', - 'reference' => 'fcf57f497652eec78c03ce66641601edda2bd39d', + 'reference' => 'e7e432247db6809f6f8d592d7e18ce9d9f86237b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-partner', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.2.14', 'version' => '0.2.14.0', - 'reference' => 'bcd797b71d73de4366566a678016a433fabad083', + 'reference' => '91cf902b1bbdcaaa12e0809ebe634bc71ce74d13', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.3.4', 'version' => '0.3.4.0', - 'reference' => '913c2a222ec7e7e4bc8226149e664632fb7db381', + 'reference' => '606d687e50c25695bb3cc7c2e0cda86aaa6abbf0', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -175,16 +175,16 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.2.5', 'version' => '0.2.5.0', - 'reference' => 'f9f15e1262cbf7f748cf3d3e3810dc173ad08efa', + 'reference' => 'dad1faab37743900a8cff408b84e2ab9350a4a9d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-publicize' => array( - 'pretty_version' => '0.36.3-alpha.1697193230', - 'version' => '0.36.3.0-alpha1697193230', - 'reference' => 'cd2469316f71b77f78f705fdb82d884616b8d4e6', + 'pretty_version' => '0.36.3', + 'version' => '0.36.3.0', + 'reference' => '0d798703b70beee869ace8e8a58c88534eb02384', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-publicize', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '1.7.27', 'version' => '1.7.27.0', - 'reference' => '6e3546dc9c1251973ae5c47cb4bd8e1f190c4379', + 'reference' => 'a52cfdd620add897bf9cb2e0ef9add3de6cb507a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '1.4.25', 'version' => '1.4.25.0', - 'reference' => '764b5f1678b6d02869bad249e437bcfbb3453b90', + 'reference' => '59070b76056f77c17de1e1118fa3e0311f6a62b4', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -220,16 +220,16 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '1.18.5', 'version' => '1.18.5.0', - 'reference' => '686f3678d7547e61ed46dbbdbdee424e48693793', + 'reference' => 'b1f2218e913b8c0083bd897d30686a144c60859f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-sync' => array( - 'pretty_version' => '1.58.0-alpha.1697195883', - 'version' => '1.58.0.0-alpha1697195883', - 'reference' => '77b35e2ed72b063aebe8fe72328ddcb9f24afb7a', + 'pretty_version' => '1.58.0', + 'version' => '1.58.0.0', + 'reference' => 'db733bc4840418dc226c74b895f2371b18a8df8f', '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 5cb19665d..3df956a0f 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -203,23 +203,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-ip/src/class-utils.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\Exception' => array( - 'version' => '0.10.7.0-alpha1697047949', + 'version' => '0.10.7.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '0.10.7.0-alpha1697047949', + 'version' => '0.10.7.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '0.10.7.0-alpha1697047949', + 'version' => '0.10.7.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '0.10.7.0-alpha1697047949', + 'version' => '0.10.7.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '0.10.7.0-alpha1697047949', + 'version' => '0.10.7.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php' ), 'Automattic\\Jetpack\\JITMS\\JITM' => array( @@ -251,107 +251,107 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Product_Data' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-product-data.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '3.8.2.0-alpha1697133599', + 'version' => '3.8.2.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( @@ -379,67 +379,67 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-plugins-installer/src/class-plugins-installer.php' ), 'Automattic\\Jetpack\\Publicize\\Auto_Conversion\\REST_Settings_Controller' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/auto-conversion-settings/class-rest-settings-controller.php' ), 'Automattic\\Jetpack\\Publicize\\Auto_Conversion\\Settings' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/auto-conversion-settings/class-settings.php' ), 'Automattic\\Jetpack\\Publicize\\Connections_Post_Field' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-connections-post-field.php' ), 'Automattic\\Jetpack\\Publicize\\Keyring_Helper' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-keyring-helper.php' ), 'Automattic\\Jetpack\\Publicize\\Publicize' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-publicize.php' ), 'Automattic\\Jetpack\\Publicize\\Publicize_Base' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-publicize-base.php' ), 'Automattic\\Jetpack\\Publicize\\Publicize_Setup' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-publicize-setup.php' ), 'Automattic\\Jetpack\\Publicize\\Publicize_UI' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-publicize-ui.php' ), 'Automattic\\Jetpack\\Publicize\\REST_Controller' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-rest-controller.php' ), 'Automattic\\Jetpack\\Publicize\\Share_Limits' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-share-limits.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\Post_Settings' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-post-settings.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\REST_Settings_Controller' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-rest-settings-controller.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\REST_Token_Controller' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-rest-token-controller.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\Settings' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-settings.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\Setup' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-setup.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\Templates' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-templates.php' ), 'Automattic\\Jetpack\\Redirect' => array( @@ -475,227 +475,227 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php' ), 'Automattic\\Jetpack\\Sync\\Actions' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php' ), 'Automattic\\Jetpack\\Sync\\Codec_Interface' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php' ), 'Automattic\\Jetpack\\Sync\\Data_Settings' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-data-settings.php' ), 'Automattic\\Jetpack\\Sync\\Dedicated_Sender' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php' ), 'Automattic\\Jetpack\\Sync\\Default_Filter_Settings' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-default-filter-settings.php' ), 'Automattic\\Jetpack\\Sync\\Defaults' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php' ), 'Automattic\\Jetpack\\Sync\\Functions' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php' ), 'Automattic\\Jetpack\\Sync\\Health' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-health.php' ), 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php' ), 'Automattic\\Jetpack\\Sync\\Listener' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php' ), 'Automattic\\Jetpack\\Sync\\Lock' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php' ), 'Automattic\\Jetpack\\Sync\\Main' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-main.php' ), 'Automattic\\Jetpack\\Sync\\Modules' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Import' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Module' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Options' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Search' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-search.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Users' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce_HPOS_Orders' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php' ), 'Automattic\\Jetpack\\Sync\\Package_Version' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php' ), 'Automattic\\Jetpack\\Sync\\Queue' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Options' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-options.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Table' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-table.php' ), 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php' ), 'Automattic\\Jetpack\\Sync\\REST_Endpoints' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\Sync\\REST_Sender' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Usermeta' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Users' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Sender' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php' ), 'Automattic\\Jetpack\\Sync\\Server' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-server.php' ), 'Automattic\\Jetpack\\Sync\\Settings' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php' ), 'Automattic\\Jetpack\\Sync\\Simple_Codec' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php' ), 'Automattic\\Jetpack\\Sync\\Users' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Utils' => array( - 'version' => '1.58.0.0-alpha1697195883', + 'version' => '1.58.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( diff --git a/vendor/composer/jetpack_autoload_filemap.php b/vendor/composer/jetpack_autoload_filemap.php index fc865dcee..6a86b559c 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' ), 'e6f7f640a6586216432b53e5c9d1b472' => array( - 'version' => '0.36.3.0-alpha1697193230', + 'version' => '0.36.3.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/utilities.php' ), );