diff --git a/composer.json b/composer.json index 16741012..33d05703 100644 --- a/composer.json +++ b/composer.json @@ -9,11 +9,11 @@ "automattic/jetpack-autoloader": "^3.0.2", "automattic/jetpack-composer-plugin": "^2.0.0", "automattic/jetpack-config": "^2.0.0", - "automattic/jetpack-identity-crisis": "^0.16.0-alpha", - "automattic/jetpack-my-jetpack": "^4.9.0-alpha", + "automattic/jetpack-identity-crisis": "^0.16.0", + "automattic/jetpack-my-jetpack": "^4.9.0", "automattic/jetpack-plugins-installer": "^0.3.1", - "automattic/jetpack-sync": "^2.5.0", - "automattic/jetpack-backup": "^3.1.2" + "automattic/jetpack-sync": "^2.5.1", + "automattic/jetpack-backup": "^3.1.3-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", diff --git a/jetpack_vendor/automattic/jetpack-backup/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-backup/CHANGELOG.md index 58572469..74c47ab6 100644 --- a/jetpack_vendor/automattic/jetpack-backup/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-backup/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). +## [3.1.3-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Changed +- Update dependencies. + ## [3.1.2] - 2024-02-05 ### Changed - Updated package dependencies. @@ -550,6 +557,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add API endpoints and Jetpack Backup package for managing Help… +[3.1.3-alpha]: https://github.com/Automattic/jetpack-backup/compare/v3.1.2...v3.1.3-alpha [3.1.2]: https://github.com/Automattic/jetpack-backup/compare/v3.1.1...v3.1.2 [3.1.1]: https://github.com/Automattic/jetpack-backup/compare/v3.1.0...v3.1.1 [3.1.0]: https://github.com/Automattic/jetpack-backup/compare/v3.0.0...v3.1.0 diff --git a/jetpack_vendor/automattic/jetpack-backup/composer.json b/jetpack_vendor/automattic/jetpack-backup/composer.json index 6f59b8a8..637e6897 100644 --- a/jetpack_vendor/automattic/jetpack-backup/composer.json +++ b/jetpack_vendor/automattic/jetpack-backup/composer.json @@ -12,8 +12,8 @@ "automattic/jetpack-composer-plugin": "^2.0.0", "automattic/jetpack-config": "^2.0.0", "automattic/jetpack-connection": "^2.3.0", - "automattic/jetpack-identity-crisis": "^0.16.0-alpha", - "automattic/jetpack-sync": "^2.5.0", + "automattic/jetpack-identity-crisis": "^0.16.0", + "automattic/jetpack-sync": "^2.5.1", "automattic/jetpack-status": "^2.1.0" }, "require-dev": { diff --git a/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php b/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php index a833f17f..397ad815 100644 --- a/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php +++ b/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php @@ -16,7 +16,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.1.2'; + const PACKAGE_VERSION = '3.1.3-alpha'; const PACKAGE_SLUG = 'backup'; diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md index 7f461acf..c9edd398 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.16.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [0.16.0] - 2024-02-07 ### Deprecated -- Removing old and previously deprecated code. +- Removing old and previously deprecated code. [#35048] ## [0.15.1] - 2024-02-05 ### Changed @@ -487,7 +484,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.16.0-alpha]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.15.1...v0.16.0-alpha +[0.16.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.15.1...v0.16.0 [0.15.1]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.15.0...v0.15.1 [0.15.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.14.1...v0.15.0 [0.14.1]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.14.0...v0.14.1 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 19edafa0..cb6894c2 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 @@ -26,7 +26,7 @@ class Identity_Crisis { /** * Package Version */ - const PACKAGE_VERSION = '0.16.0-alpha'; + const PACKAGE_VERSION = '0.16.0'; /** * Persistent WPCOM blog ID that stays in the options after disconnect. diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md index edcddf69..0ba40871 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md @@ -5,16 +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). -## [4.9.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [4.9.0] - 2024-02-07 ### Changed -- Add pricing info for AI and CRM on My Jetpack -- Update the description of some cards to better describe the product on My Jetpack page +- Add pricing info for AI and CRM on My Jetpack [#35457] +- Update the description of some cards to better describe the product on My Jetpack page [#35428] ### Fixed -- Fixes issue on My Jetpack interstitials where some prices are 1 cent off +- Fixes issue on My Jetpack interstitials where some prices are 1 cent off [#35492] ## [4.8.0] - 2024-02-05 ### Added @@ -1238,7 +1235,7 @@ This is an alpha version! The changes listed here are not final. ### Added - Created package -[4.9.0-alpha]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.8.0...4.9.0-alpha +[4.9.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.8.0...4.9.0 [4.8.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.7.0...4.8.0 [4.7.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.6.2...4.7.0 [4.6.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.6.1...4.6.2 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 5876b640..0551b68c 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php @@ -34,7 +34,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.9.0-alpha'; + const PACKAGE_VERSION = '4.9.0'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md index f3104104..1b14e6a1 100644 --- a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.5.1] - 2024-02-07 +### Changed +- Update dependencies. + ## [2.5.0] - 2024-02-05 ### Changed - Jetpack Connection: Add jetpack_package_versions to Sync [#35409] @@ -1035,6 +1039,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Move sync to a classmapped package +[2.5.1]: https://github.com/Automattic/jetpack-sync/compare/v2.5.0...v2.5.1 [2.5.0]: https://github.com/Automattic/jetpack-sync/compare/v2.4.2...v2.5.0 [2.4.2]: https://github.com/Automattic/jetpack-sync/compare/v2.4.1...v2.4.2 [2.4.1]: https://github.com/Automattic/jetpack-sync/compare/v2.4.0...v2.4.1 diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json index 0b06352b..893f3d13 100644 --- a/jetpack_vendor/automattic/jetpack-sync/composer.json +++ b/jetpack_vendor/automattic/jetpack-sync/composer.json @@ -7,7 +7,7 @@ "php": ">=7.0", "automattic/jetpack-connection": "^2.3.0", "automattic/jetpack-constants": "^2.0.0", - "automattic/jetpack-identity-crisis": "^0.16.0-alpha", + "automattic/jetpack-identity-crisis": "^0.16.0", "automattic/jetpack-password-checker": "^0.3.0", "automattic/jetpack-ip": "^0.2.1", "automattic/jetpack-roles": "^2.0.0", 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 bb34c187..58053189 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 = '2.5.0'; + const PACKAGE_VERSION = '2.5.1'; const PACKAGE_SLUG = 'sync'; diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index dfa76f8f..ba870bb8 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -14,7 +14,7 @@ ), 'jetpack-backup-pkg' => array( 'path' => 'jetpack_vendor/automattic/jetpack-backup', - 'ver' => '3.1.2', + 'ver' => '3.1.3-alpha1707336609', ), 'jetpack-config' => array( 'path' => 'jetpack_vendor/automattic/jetpack-config', @@ -26,7 +26,7 @@ ), 'jetpack-idc' => array( 'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis', - 'ver' => '0.16.0-alpha1707233925', + 'ver' => '0.16.0', ), 'jetpack-ip' => array( 'path' => 'jetpack_vendor/automattic/jetpack-ip', @@ -42,7 +42,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '4.9.0-alpha1707322680', + 'ver' => '4.9.0', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', @@ -54,7 +54,7 @@ ), 'jetpack-sync' => array( 'path' => 'jetpack_vendor/automattic/jetpack-sync', - 'ver' => '2.5.0', + 'ver' => '2.5.1', ), ), ); diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 0d6b8216..b461eb8d 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": "3e49a1c75b8c818a4c7aef88142849798fce28ac" + "reference": "76c61eb436cbf3fca653b938d141a06f45d63ebb" }, "require": { "php": ">=7.0" @@ -60,7 +60,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "47d48bdbf32f22463b86327928bc68589cc0815c" + "reference": "2591dbf9d6d25082dc2c8c8ca87bc6a8d4ff5a1c" }, "require": { "php": ">=7.0" @@ -125,7 +125,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "15039a17877b9964c9015d47c5755858ce6c831a" + "reference": "8d2059390c5f56bf47b6d98622ca478537d282a0" }, "require": { "automattic/jetpack-constants": "^2.0.0", @@ -194,7 +194,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "968ee6a0dc0d115fc9d2b0ca0ad78450e91b1ca5" + "reference": "83987efea887bbf7c354ad4d67db93d212d872b3" }, "require": { "composer-plugin-api": "^1.1 || ^2.0", @@ -255,12 +255,12 @@ }, { "name": "automattic/jetpack-backup", - "version": "3.1.2", - "version_normalized": "3.1.2.0", + "version": "3.1.3-alpha.1707336609", + "version_normalized": "3.1.3.0-alpha1707336609", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-backup", - "reference": "3d056b43a8b8412d189106c934b8358c5b3b24bb" + "reference": "af0af85aeeffd74c61560efeb2ae8c0db62a3943" }, "require": { "automattic/jetpack-admin-ui": "^0.3.2", @@ -270,9 +270,9 @@ "automattic/jetpack-composer-plugin": "^2.0.0", "automattic/jetpack-config": "^2.0.0", "automattic/jetpack-connection": "^2.3.0", - "automattic/jetpack-identity-crisis": "^0.16.0-alpha", + "automattic/jetpack-identity-crisis": "^0.16.0", "automattic/jetpack-status": "^2.1.0", - "automattic/jetpack-sync": "^2.5.0", + "automattic/jetpack-sync": "^2.5.1", "php": ">=7.0" }, "require-dev": { @@ -350,7 +350,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-backup-helper-script-manager", - "reference": "338334832ce5ea3199f53909b64c6c0a7305c033" + "reference": "a1c7e272697715ca945b84b1a58daf079978d76d" }, "require": { "php": ">=7.0" @@ -410,7 +410,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "0e3148a5c3eec3345532a143f2ac2e0a7455df8a" + "reference": "95908adf9c985eceacf9bfc736d40a2723c24f1f" }, "require": { "composer-plugin-api": "^2.1.0", @@ -470,7 +470,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "fc82227ebe9bb67540f2d88ea836fa3c63dbcd60" + "reference": "07b688cb87c96fc86c912d99bb451be1f3059aa8" }, "require": { "php": ">=7.0" @@ -515,7 +515,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "de0fef40aba2c412fa21a9f5e90135988c3310fb" + "reference": "526352a8a96463c4575a689b01f6fa736683997f" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.0", @@ -594,7 +594,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "c6cbbb019df8aef1736f7e8879931e3bfe78f54b" + "reference": "0167c4af0ee033ff8bcf114a74f756fedca726f1" }, "require": { "php": ">=7.0" @@ -648,7 +648,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "2b6aa1cba5ef0af4bdab24ffc4f328c587f4b34d" + "reference": "e51da779dfc49db31afcaf8c9472311c3c6f0e36" }, "require": { "php": ">=7.0" @@ -696,12 +696,12 @@ }, { "name": "automattic/jetpack-identity-crisis", - "version": "0.16.0-alpha.1707233925", - "version_normalized": "0.16.0.0-alpha1707233925", + "version": "0.16.0", + "version_normalized": "0.16.0.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-identity-crisis", - "reference": "f052227c9299479dd9b8cd47dd3110581d6e95aa" + "reference": "41ecd07cd55557b9c380efeb204ec5b2f766eb32" }, "require": { "automattic/jetpack-assets": "^2.1.0", @@ -780,7 +780,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "f138ddb5e4e3bd8c91456c39e3031fc316ff909d" + "reference": "42b58a919f7ab1967956d7c97f37d1892b6328a5" }, "require": { "php": ">=7.0" @@ -838,7 +838,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "bd95ce8cb734020cf931a7616f9b78ae8e13d960" + "reference": "ed1ff67dbb44cffea8cc9215843f0414ff88f01f" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.0", @@ -913,7 +913,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "2512d5c247b8ead94038b98933d85da664e78daa" + "reference": "b34b1e03196ff4bcc1ea30f96517ee0c37e73115" }, "require": { "automattic/jetpack-connection": "^2.3.0", @@ -975,7 +975,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "e80acac415d26699312e39d938fe8c0bc27be144" + "reference": "3c0cd65337ddc76089251e68fcf9455634c79361" }, "require": { "php": ">=7.0" @@ -1023,12 +1023,12 @@ }, { "name": "automattic/jetpack-my-jetpack", - "version": "4.9.0-alpha.1707322680", - "version_normalized": "4.9.0.0-alpha1707322680", + "version": "4.9.0", + "version_normalized": "4.9.0.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "537a44c5e150c784b73f32837f0afa8ef482a5e3" + "reference": "66c5947ad5b38fee7ace37fdaae2c6fb18da1bcb" }, "require": { "automattic/jetpack-admin-ui": "^0.3.2", @@ -1120,7 +1120,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "b171736a696fb64098981d8cd3a2aedafbed2042" + "reference": "b75992811d6c880ac8cc91f2dfe6ff0be9bcc598" }, "require": { "php": ">=7.0" @@ -1181,7 +1181,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "6c801cf6e105910446e99d40a264e31b71783ebf" + "reference": "135601871f809491ff12a2ef27724b0661c36449" }, "require": { "automattic/jetpack-connection": "^2.3.0", @@ -1249,7 +1249,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "8072f7c54a2d59573d95812b50f5642f44cbd163" + "reference": "9f1a217e31353f7dc29a770ed09d2efeea2dcea7" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.0", @@ -1304,7 +1304,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "33b14d7fb6fc287ccedb0c56d9aaf5aed6df8c9e" + "reference": "7ea491217b2ee07d9758dce394fa468769dc34d7" }, "require": { "automattic/jetpack-status": "^2.1.0", @@ -1359,7 +1359,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "2cd5b052e2f2a944a1e920b0815e331a8b69cc57" + "reference": "6af560e4617ea166e74470b758f01b715057e297" }, "require": { "php": ">=7.0" @@ -1413,7 +1413,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "ef94aad75044020dbb02f10ecb56f2a9caf8af0a" + "reference": "30698280a7b1e50348c32f0eca5a4229a7007eee" }, "require": { "automattic/jetpack-constants": "^2.0.0", @@ -1464,17 +1464,17 @@ }, { "name": "automattic/jetpack-sync", - "version": "2.5.0", - "version_normalized": "2.5.0.0", + "version": "2.5.1", + "version_normalized": "2.5.1.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "c7269e8ab98de6c8587a96adc7a8dc4f1b4b04dc" + "reference": "9fee84345265f971861e0a59c9e2befcaa639a9c" }, "require": { "automattic/jetpack-connection": "^2.3.0", "automattic/jetpack-constants": "^2.0.0", - "automattic/jetpack-identity-crisis": "^0.16.0-alpha", + "automattic/jetpack-identity-crisis": "^0.16.0", "automattic/jetpack-ip": "^0.2.1", "automattic/jetpack-password-checker": "^0.3.0", "automattic/jetpack-roles": "^2.0.0", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 6d997240..9cb92e4c 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.0', 'version' => '2.0.0.0', - 'reference' => '3e49a1c75b8c818a4c7aef88142849798fce28ac', + 'reference' => '76c61eb436cbf3fca653b938d141a06f45d63ebb', '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.3.2', 'version' => '0.3.2.0', - 'reference' => '47d48bdbf32f22463b86327928bc68589cc0815c', + 'reference' => '2591dbf9d6d25082dc2c8c8ca87bc6a8d4ff5a1c', '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.1.0', 'version' => '2.1.0.0', - 'reference' => '15039a17877b9964c9015d47c5755858ce6c831a', + 'reference' => '8d2059390c5f56bf47b6d98622ca478537d282a0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,16 +40,16 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '3.0.2', 'version' => '3.0.2.0', - 'reference' => '968ee6a0dc0d115fc9d2b0ca0ad78450e91b1ca5', + 'reference' => '83987efea887bbf7c354ad4d67db93d212d872b3', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-backup' => array( - 'pretty_version' => '3.1.2', - 'version' => '3.1.2.0', - 'reference' => '3d056b43a8b8412d189106c934b8358c5b3b24bb', + 'pretty_version' => '3.1.3-alpha.1707336609', + 'version' => '3.1.3.0-alpha1707336609', + 'reference' => 'af0af85aeeffd74c61560efeb2ae8c0db62a3943', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-backup', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-backup-helper-script-manager' => array( 'pretty_version' => '0.2.0', 'version' => '0.2.0.0', - 'reference' => '338334832ce5ea3199f53909b64c6c0a7305c033', + 'reference' => 'a1c7e272697715ca945b84b1a58daf079978d76d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-backup-helper-script-manager', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => '0e3148a5c3eec3345532a143f2ac2e0a7455df8a', + 'reference' => '95908adf9c985eceacf9bfc736d40a2723c24f1f', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => 'fc82227ebe9bb67540f2d88ea836fa3c63dbcd60', + 'reference' => '07b688cb87c96fc86c912d99bb451be1f3059aa8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-connection' => array( 'pretty_version' => '2.3.0', 'version' => '2.3.0.0', - 'reference' => 'de0fef40aba2c412fa21a9f5e90135988c3310fb', + 'reference' => '526352a8a96463c4575a689b01f6fa736683997f', '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.0', 'version' => '2.0.0.0', - 'reference' => 'c6cbbb019df8aef1736f7e8879931e3bfe78f54b', + 'reference' => '0167c4af0ee033ff8bcf114a74f756fedca726f1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -103,16 +103,16 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '2.0.1', 'version' => '2.0.1.0', - 'reference' => '2b6aa1cba5ef0af4bdab24ffc4f328c587f4b34d', + 'reference' => 'e51da779dfc49db31afcaf8c9472311c3c6f0e36', '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.16.0-alpha.1707233925', - 'version' => '0.16.0.0-alpha1707233925', - 'reference' => 'f052227c9299479dd9b8cd47dd3110581d6e95aa', + 'pretty_version' => '0.16.0', + 'version' => '0.16.0.0', + 'reference' => '41ecd07cd55557b9c380efeb204ec5b2f766eb32', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-identity-crisis', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.2.1', 'version' => '0.2.1.0', - 'reference' => 'f138ddb5e4e3bd8c91456c39e3031fc316ff909d', + 'reference' => '42b58a919f7ab1967956d7c97f37d1892b6328a5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '3.0.3', 'version' => '3.0.3.0', - 'reference' => 'bd95ce8cb734020cf931a7616f9b78ae8e13d960', + 'reference' => 'ed1ff67dbb44cffea8cc9215843f0414ff88f01f', '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.1', 'version' => '2.0.1.0', - 'reference' => '2512d5c247b8ead94038b98933d85da664e78daa', + 'reference' => 'b34b1e03196ff4bcc1ea30f96517ee0c37e73115', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -148,16 +148,16 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => 'e80acac415d26699312e39d938fe8c0bc27be144', + 'reference' => '3c0cd65337ddc76089251e68fcf9455634c79361', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => '4.9.0-alpha.1707322680', - 'version' => '4.9.0.0-alpha1707322680', - 'reference' => '537a44c5e150c784b73f32837f0afa8ef482a5e3', + 'pretty_version' => '4.9.0', + 'version' => '4.9.0.0', + 'reference' => '66c5947ad5b38fee7ace37fdaae2c6fb18da1bcb', '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.0', 'version' => '0.3.0.0', - 'reference' => 'b171736a696fb64098981d8cd3a2aedafbed2042', + 'reference' => 'b75992811d6c880ac8cc91f2dfe6ff0be9bcc598', '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.1', 'version' => '0.4.1.0', - 'reference' => '6c801cf6e105910446e99d40a264e31b71783ebf', + 'reference' => '135601871f809491ff12a2ef27724b0661c36449', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.3.1', 'version' => '0.3.1.0', - 'reference' => '8072f7c54a2d59573d95812b50f5642f44cbd163', + 'reference' => '9f1a217e31353f7dc29a770ed09d2efeea2dcea7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => '33b14d7fb6fc287ccedb0c56d9aaf5aed6df8c9e', + 'reference' => '7ea491217b2ee07d9758dce394fa468769dc34d7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => '2cd5b052e2f2a944a1e920b0815e331a8b69cc57', + 'reference' => '6af560e4617ea166e74470b758f01b715057e297', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -211,16 +211,16 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '2.1.0', 'version' => '2.1.0.0', - 'reference' => 'ef94aad75044020dbb02f10ecb56f2a9caf8af0a', + 'reference' => '30698280a7b1e50348c32f0eca5a4229a7007eee', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-sync' => array( - 'pretty_version' => '2.5.0', - 'version' => '2.5.0.0', - 'reference' => 'c7269e8ab98de6c8587a96adc7a8dc4f1b4b04dc', + 'pretty_version' => '2.5.1', + 'version' => '2.5.1.0', + 'reference' => '9fee84345265f971861e0a59c9e2befcaa639a9c', '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 f0d633a8..a2e1c3a1 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -71,23 +71,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup-helper-script-manager/src/class-helper-script-manager-impl.php' ), 'Automattic\\Jetpack\\Backup\\V0001\\Initial_State' => array( - 'version' => '3.1.2.0', + 'version' => '3.1.3.0-alpha1707336609', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Backup\\V0001\\Jetpack_Backup' => array( - 'version' => '3.1.2.0', + 'version' => '3.1.3.0-alpha1707336609', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-jetpack-backup.php' ), 'Automattic\\Jetpack\\Backup\\V0001\\Jetpack_Backup_Upgrades' => array( - 'version' => '3.1.2.0', + 'version' => '3.1.3.0-alpha1707336609', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-jetpack-backup-upgrades.php' ), 'Automattic\\Jetpack\\Backup\\V0001\\Package_Version' => array( - 'version' => '3.1.2.0', + 'version' => '3.1.3.0-alpha1707336609', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php' ), 'Automattic\\Jetpack\\Backup\\V0001\\REST_Controller' => array( - 'version' => '3.1.2.0', + 'version' => '3.1.3.0-alpha1707336609', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-rest-controller.php' ), 'Automattic\\Jetpack\\Backup\\V0001\\Throw_On_Errors' => array( @@ -235,23 +235,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-ip/src/class-utils.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\Exception' => array( - 'version' => '0.16.0.0-alpha1707233925', + 'version' => '0.16.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '0.16.0.0-alpha1707233925', + 'version' => '0.16.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '0.16.0.0-alpha1707233925', + 'version' => '0.16.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '0.16.0.0-alpha1707233925', + 'version' => '0.16.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '0.16.0.0-alpha1707233925', + 'version' => '0.16.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php' ), 'Automattic\\Jetpack\\JITMS\\JITM' => array( @@ -291,119 +291,119 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Activitylog' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-activitylog.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Jetpack_Manage' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-jetpack-manage.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Creator' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-creator.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Product_Data' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-product-data.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '4.9.0.0-alpha1707322680', + 'version' => '4.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( @@ -455,227 +455,227 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php' ), 'Automattic\\Jetpack\\Sync\\Actions' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php' ), 'Automattic\\Jetpack\\Sync\\Codec_Interface' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php' ), 'Automattic\\Jetpack\\Sync\\Data_Settings' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-data-settings.php' ), 'Automattic\\Jetpack\\Sync\\Dedicated_Sender' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php' ), 'Automattic\\Jetpack\\Sync\\Default_Filter_Settings' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-default-filter-settings.php' ), 'Automattic\\Jetpack\\Sync\\Defaults' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php' ), 'Automattic\\Jetpack\\Sync\\Functions' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php' ), 'Automattic\\Jetpack\\Sync\\Health' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-health.php' ), 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php' ), 'Automattic\\Jetpack\\Sync\\Listener' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php' ), 'Automattic\\Jetpack\\Sync\\Lock' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php' ), 'Automattic\\Jetpack\\Sync\\Main' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-main.php' ), 'Automattic\\Jetpack\\Sync\\Modules' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Import' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Module' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Options' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Search' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-search.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Users' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce_HPOS_Orders' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php' ), 'Automattic\\Jetpack\\Sync\\Package_Version' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php' ), 'Automattic\\Jetpack\\Sync\\Queue' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Options' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.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' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-table.php' ), 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php' ), 'Automattic\\Jetpack\\Sync\\REST_Endpoints' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\Sync\\REST_Sender' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Usermeta' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Users' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Sender' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php' ), 'Automattic\\Jetpack\\Sync\\Server' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-server.php' ), 'Automattic\\Jetpack\\Sync\\Settings' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php' ), 'Automattic\\Jetpack\\Sync\\Simple_Codec' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php' ), 'Automattic\\Jetpack\\Sync\\Users' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Utils' => array( - 'version' => '2.5.0.0', + 'version' => '2.5.1.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 5d9d1bee..81b21245 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' ), 'd4eb94df91a729802d18373ee8cdc79f' => array( - 'version' => '3.1.2.0', + 'version' => '3.1.3.0-alpha1707336609', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/actions.php' ), );