From f416ff637a672b7cb8b64d79072046ba049ff372 Mon Sep 17 00:00:00 2001 From: tbradsha Date: Mon, 18 Nov 2024 18:08:52 +0000 Subject: [PATCH] Changelog and readme.txt edits. (#40231) Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/11898176231 Upstream-Ref: Automattic/jetpack@838e1c608c08690921b048f336b0c796f0121107 --- composer.json | 8 +- .../jetpack-boost-core/composer.json | 2 +- .../jetpack-connection/CHANGELOG.md | 12 +- .../src/class-package-version.php | 2 +- .../automattic/jetpack-explat/CHANGELOG.md | 3 +- .../automattic/jetpack-explat/composer.json | 2 +- .../automattic/jetpack-jitm/composer.json | 2 +- .../jetpack-licensing/composer.json | 2 +- .../jetpack-my-jetpack/CHANGELOG.md | 14 +- .../jetpack-my-jetpack/composer.json | 2 +- .../src/class-initializer.php | 2 +- .../jetpack-protect-status/composer.json | 2 +- .../automattic/jetpack-search/CHANGELOG.md | 34 +-- .../automattic/jetpack-search/composer.json | 4 +- .../jetpack-search/src/class-package.php | 2 +- .../automattic/jetpack-stats/CHANGELOG.md | 9 +- .../automattic/jetpack-stats/composer.json | 2 +- .../src/class-package-version.php | 2 +- .../automattic/jetpack-sync/composer.json | 4 +- jetpack_vendor/i18n-map.php | 8 +- vendor/automattic/jetpack-plans/composer.json | 2 +- vendor/composer/installed.json | 96 ++++---- vendor/composer/installed.php | 72 +++--- vendor/composer/jetpack_autoload_classmap.php | 212 +++++++++--------- vendor/composer/jetpack_autoload_filemap.php | 2 +- 25 files changed, 240 insertions(+), 262 deletions(-) diff --git a/composer.json b/composer.json index 45a4cf5e..8bf416a7 100644 --- a/composer.json +++ b/composer.json @@ -7,10 +7,10 @@ "automattic/jetpack-autoloader": "^5.0.0-alpha", "automattic/jetpack-composer-plugin": "^3.0.0", "automattic/jetpack-config": "^3.0.0", - "automattic/jetpack-connection": "^6.0.1-alpha", - "automattic/jetpack-my-jetpack": "^5.0.0", - "automattic/jetpack-search": "^0.47.0-alpha", - "automattic/jetpack-stats": "^0.14.0-alpha", + "automattic/jetpack-connection": "^6.0.1", + "automattic/jetpack-my-jetpack": "^5.0.1", + "automattic/jetpack-search": "^0.47.0", + "automattic/jetpack-stats": "^0.14.0", "automattic/jetpack-status": "^5.0.1-alpha", "automattic/jetpack-sync": "^4.0.0" }, diff --git a/jetpack_vendor/automattic/jetpack-boost-core/composer.json b/jetpack_vendor/automattic/jetpack-boost-core/composer.json index f7d08682..5721ff01 100644 --- a/jetpack_vendor/automattic/jetpack-boost-core/composer.json +++ b/jetpack_vendor/automattic/jetpack-boost-core/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.0.1-alpha" + "automattic/jetpack-connection": "^6.0.1" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md index 85475fbe..8b07a443 100644 --- a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-connection/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). -## [6.0.1-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [6.0.1] - 2024-11-18 ### Fixed -- Work around a WP user caching bug (https://core.trac.wordpress.org/ticket/62003). +- Work around a WP user caching bug (https://core.trac.wordpress.org/ticket/62003). [#40188] ## [6.0.0] - 2024-11-14 ### Removed @@ -18,8 +15,7 @@ This is an alpha version! The changes listed here are not final. ## [5.1.7] - 2024-11-11 ### Changed -- Updated package dependencies. [#39999] -- Updated package dependencies. [#40060] +- Updated package dependencies. [#39999] [#40060] ## [5.1.6] - 2024-11-04 ### Added @@ -1254,7 +1250,7 @@ This is an alpha version! The changes listed here are not final. - Separate the connection library into its own package. -[6.0.1-alpha]: https://github.com/Automattic/jetpack-connection/compare/v6.0.0...v6.0.1-alpha +[6.0.1]: https://github.com/Automattic/jetpack-connection/compare/v6.0.0...v6.0.1 [6.0.0]: https://github.com/Automattic/jetpack-connection/compare/v5.1.7...v6.0.0 [5.1.7]: https://github.com/Automattic/jetpack-connection/compare/v5.1.6...v5.1.7 [5.1.6]: https://github.com/Automattic/jetpack-connection/compare/v5.1.5...v5.1.6 diff --git a/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php b/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php index 100faa96..d2cdd3c1 100644 --- a/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php +++ b/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '6.0.1-alpha'; + const PACKAGE_VERSION = '6.0.1'; const PACKAGE_SLUG = 'connection'; diff --git a/jetpack_vendor/automattic/jetpack-explat/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-explat/CHANGELOG.md index 3ca24cb0..37771bed 100644 --- a/jetpack_vendor/automattic/jetpack-explat/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-explat/CHANGELOG.md @@ -27,8 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.11] - 2024-10-10 ### Changed -- Updated package dependencies. [#39649] -- Updated package dependencies. [#39707] +- Updated package dependencies. [#39649] [#39707] ## [0.1.10] - 2024-10-07 ### Changed diff --git a/jetpack_vendor/automattic/jetpack-explat/composer.json b/jetpack_vendor/automattic/jetpack-explat/composer.json index b7ca3ada..040e34c8 100644 --- a/jetpack_vendor/automattic/jetpack-explat/composer.json +++ b/jetpack_vendor/automattic/jetpack-explat/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.0.1-alpha" + "automattic/jetpack-connection": "^6.0.1" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-jitm/composer.json b/jetpack_vendor/automattic/jetpack-jitm/composer.json index 571d4b3b..1d8951c8 100644 --- a/jetpack_vendor/automattic/jetpack-jitm/composer.json +++ b/jetpack_vendor/automattic/jetpack-jitm/composer.json @@ -7,7 +7,7 @@ "php": ">=7.2", "automattic/jetpack-a8c-mc-stats": "^3.0.0", "automattic/jetpack-assets": "^4.0.0-alpha", - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-device-detection": "^3.0.0", "automattic/jetpack-logo": "^3.0.0", "automattic/jetpack-redirect": "^3.0.0", diff --git a/jetpack_vendor/automattic/jetpack-licensing/composer.json b/jetpack_vendor/automattic/jetpack-licensing/composer.json index c903b0ed..a2d61690 100644 --- a/jetpack_vendor/automattic/jetpack-licensing/composer.json +++ b/jetpack_vendor/automattic/jetpack-licensing/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.0.1-alpha" + "automattic/jetpack-connection": "^6.0.1" }, "require-dev": { "automattic/wordbless": "@dev", diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md index 8f97f3a1..7890f025 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.0.1] - 2024-11-18 +### Changed +- Update dependencies. [#38910] + ## [5.0.0] - 2024-11-14 ### Removed - General: Update minimum PHP version to 7.2. [#40147] @@ -47,8 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [4.35.12] - 2024-10-10 ### Changed - Update Boost's pricing table to include latest feature list. [#39130] -- Updated package dependencies. [#39669] -- Updated package dependencies. [#39707] +- Updated package dependencies. [#39669] [#39707] ### Fixed - Fixed My Jetpack recommendations VideoPress product card not showing Purchase and Learn more buttons. [#39612] @@ -811,8 +814,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [3.4.3] - 2023-09-04 ### Changed -- Updated package dependencies. [#32803] -- Updated package dependencies. [#32804] +- Updated package dependencies. [#32803] [#32804] ## [3.4.2] - 2023-08-23 ### Changed @@ -868,8 +870,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - My Jetpack: changed Stats features wording [#32046] -- Updated package dependencies. [#31999] -- Updated package dependencies. [#32040] +- Updated package dependencies. [#31999] [#32040] ### Fixed - Make Jetpack logo in footer smaller [#31627] @@ -1811,6 +1812,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created package +[5.0.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.0.0...5.0.1 [5.0.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.37.0...5.0.0 [4.37.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.36.0...4.37.0 [4.36.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.35.16...4.36.0 diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index 51206ba6..c222182f 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -8,7 +8,7 @@ "automattic/jetpack-admin-ui": "^0.5.0", "automattic/jetpack-assets": "^4.0.0-alpha", "automattic/jetpack-boost-speed-score": "^0.4.0", - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-explat": "^0.2.0", "automattic/jetpack-jitm": "^4.0.0", "automattic/jetpack-licensing": "^3.0.0", 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 209c9070..216c8256 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php @@ -42,7 +42,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '5.0.0'; + const PACKAGE_VERSION = '5.0.1'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/jetpack_vendor/automattic/jetpack-protect-status/composer.json b/jetpack_vendor/automattic/jetpack-protect-status/composer.json index ca62555b..5db52515 100644 --- a/jetpack_vendor/automattic/jetpack-protect-status/composer.json +++ b/jetpack_vendor/automattic/jetpack-protect-status/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-plugins-installer": "^0.5.0", "automattic/jetpack-sync": "^4.0.0", "automattic/jetpack-protect-models": "^0.4.0", diff --git a/jetpack_vendor/automattic/jetpack-search/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-search/CHANGELOG.md index 83c21a41..3712d824 100644 --- a/jetpack_vendor/automattic/jetpack-search/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-search/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.47.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [0.47.0] - 2024-11-18 ### Removed -- General: Update minimum PHP version to 7.2. +- General: Update minimum PHP version to 7.2. [#40147] ## [0.46.0] - 2024-11-11 ### Added @@ -46,10 +43,7 @@ This is an alpha version! The changes listed here are not final. ## [0.45.7] - 2024-10-07 ### Changed -- Updated package dependencies. [#39592] -- Updated package dependencies. [#39594] -- Updated package dependencies. [#39595] -- Updated package dependencies. [#39639] +- Updated package dependencies. [#39592] [#39594] [#39595] [#39639] ## [0.45.6] - 2024-09-30 ### Changed @@ -216,8 +210,7 @@ This is an alpha version! The changes listed here are not final. ## [0.43.0] - 2024-02-05 ### Changed -- Updated package dependencies. [#35384] -- Updated package dependencies. [#35385] +- Updated package dependencies. [#35384] [#35385] - Use blog ID instead of site slug in checkout links. [#35000] ## [0.42.1] - 2024-01-29 @@ -311,8 +304,7 @@ This is an alpha version! The changes listed here are not final. ## [0.38.6] - 2023-09-04 ### Changed -- Updated package dependencies. [#32803] -- Updated package dependencies. [#32804] +- Updated package dependencies. [#32803] [#32804] ## [0.38.5] - 2023-08-28 ### Changed @@ -328,8 +320,7 @@ This is an alpha version! The changes listed here are not final. ## [0.38.2] - 2023-07-25 ### Changed -- Updated package dependencies. [#31923] -- Updated package dependencies. [#32040] +- Updated package dependencies. [#31923] [#32040] - Update props passed to JetpackFooter [#31627] ## [0.38.1] - 2023-07-17 @@ -719,9 +710,7 @@ This is an alpha version! The changes listed here are not final. ### Changed - Instant search: updates overlay focus elements for design consistency [#25260] -- Updated package dependencies. [#25144] -- Updated package dependencies. [#25147] -- Updated package dependencies. [#25158] +- Updated package dependencies. [#25144] [#25147] [#25158] ### Fixed - Instant Search: Fix keyboard handling of sort options. [#25163] @@ -834,12 +823,7 @@ This is an alpha version! The changes listed here are not final. ### Changed - Search: refactored Settings to expose the settings array for sync [#24167] -- Updated package dependencies. [#24189] -- Updated package dependencies. [#24204] -- Updated package dependencies. [#24302] -- Updated package dependencies [#24276] -- Updated package dependencies [#24296] -- Updated package dependencies [#24301] +- Updated package dependencies. [#24189] [#24204] [#24302] [#24276] [#24296] [#24301] ### Fixed - Search: Fix left padding for upsell page [#24285] @@ -1099,7 +1083,7 @@ This is an alpha version! The changes listed here are not final. - Updated package dependencies. - Update PHPUnit configs to include just what needs coverage rather than include everything then try to exclude stuff that doesn't. -[0.47.0-alpha]: https://github.com/Automattic/jetpack-search/compare/v0.46.0...v0.47.0-alpha +[0.47.0]: https://github.com/Automattic/jetpack-search/compare/v0.46.0...v0.47.0 [0.46.0]: https://github.com/Automattic/jetpack-search/compare/v0.45.12...v0.46.0 [0.45.12]: https://github.com/Automattic/jetpack-search/compare/v0.45.11...v0.45.12 [0.45.11]: https://github.com/Automattic/jetpack-search/compare/v0.45.10...v0.45.11 diff --git a/jetpack_vendor/automattic/jetpack-search/composer.json b/jetpack_vendor/automattic/jetpack-search/composer.json index f963e5ee..e1aa6bc3 100644 --- a/jetpack_vendor/automattic/jetpack-search/composer.json +++ b/jetpack_vendor/automattic/jetpack-search/composer.json @@ -5,12 +5,12 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-assets": "^4.0.0-alpha", "automattic/jetpack-constants": "^3.0.0", "automattic/jetpack-status": "^5.0.1-alpha", "automattic/jetpack-config": "^3.0.0", - "automattic/jetpack-my-jetpack": "^5.0.0", + "automattic/jetpack-my-jetpack": "^5.0.1", "automattic/jetpack-sync": "^4.0.0" }, "require-dev": { diff --git a/jetpack_vendor/automattic/jetpack-search/src/class-package.php b/jetpack_vendor/automattic/jetpack-search/src/class-package.php index 3bdc8a8a..46763116 100644 --- a/jetpack_vendor/automattic/jetpack-search/src/class-package.php +++ b/jetpack_vendor/automattic/jetpack-search/src/class-package.php @@ -11,7 +11,7 @@ * Search package general information */ class Package { - const VERSION = '0.47.0-alpha'; + const VERSION = '0.47.0'; const SLUG = 'search'; /** diff --git a/jetpack_vendor/automattic/jetpack-stats/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-stats/CHANGELOG.md index 450d9aeb..4cfe84ba 100644 --- a/jetpack_vendor/automattic/jetpack-stats/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-stats/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.14.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [0.14.0] - 2024-11-18 ### Removed -- General: Update minimum PHP version to 7.2. +- General: Update minimum PHP version to 7.2. [#40147] ## [0.13.5] - 2024-11-04 ### Added @@ -201,7 +198,7 @@ This is an alpha version! The changes listed here are not final. ### Fixed - Fixing static method which was called without self reference. [#26640] -[0.14.0-alpha]: https://github.com/Automattic/jetpack-stats/compare/v0.13.5...v0.14.0-alpha +[0.14.0]: https://github.com/Automattic/jetpack-stats/compare/v0.13.5...v0.14.0 [0.13.5]: https://github.com/Automattic/jetpack-stats/compare/v0.13.4...v0.13.5 [0.13.4]: https://github.com/Automattic/jetpack-stats/compare/v0.13.3...v0.13.4 [0.13.3]: https://github.com/Automattic/jetpack-stats/compare/v0.13.2...v0.13.3 diff --git a/jetpack_vendor/automattic/jetpack-stats/composer.json b/jetpack_vendor/automattic/jetpack-stats/composer.json index f04d9369..732559de 100644 --- a/jetpack_vendor/automattic/jetpack-stats/composer.json +++ b/jetpack_vendor/automattic/jetpack-stats/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-constants": "^3.0.0", "automattic/jetpack-status": "^5.0.1-alpha" }, diff --git a/jetpack_vendor/automattic/jetpack-stats/src/class-package-version.php b/jetpack_vendor/automattic/jetpack-stats/src/class-package-version.php index 59004df3..df51fe76 100644 --- a/jetpack_vendor/automattic/jetpack-stats/src/class-package-version.php +++ b/jetpack_vendor/automattic/jetpack-stats/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '0.14.0-alpha'; + const PACKAGE_VERSION = '0.14.0'; const PACKAGE_SLUG = 'stats'; diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json index 1f5045a4..92288597 100644 --- a/jetpack_vendor/automattic/jetpack-sync/composer.json +++ b/jetpack_vendor/automattic/jetpack-sync/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-constants": "^3.0.0", "automattic/jetpack-password-checker": "^0.4.0", "automattic/jetpack-ip": "^0.4.0", @@ -16,7 +16,7 @@ "automattic/jetpack-changelogger": "^5.1.0-alpha", "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-search": "@dev", - "automattic/jetpack-waf": "@dev", + "automattic/jetpack-waf": "^0.23.0", "automattic/wordbless": "@dev" }, "suggest": { diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index e1330567..a8eaf6ad 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -26,7 +26,7 @@ ), 'jetpack-connection' => array( 'path' => 'jetpack_vendor/automattic/jetpack-connection', - 'ver' => '6.0.1-alpha1731686094', + 'ver' => '6.0.1', ), 'jetpack-explat' => array( 'path' => 'jetpack_vendor/automattic/jetpack-explat', @@ -46,7 +46,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '5.0.0', + 'ver' => '5.0.1', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', @@ -66,11 +66,11 @@ ), 'jetpack-search-pkg' => array( 'path' => 'jetpack_vendor/automattic/jetpack-search', - 'ver' => '0.47.0-alpha1731605603', + 'ver' => '0.47.0', ), 'jetpack-stats' => array( 'path' => 'jetpack_vendor/automattic/jetpack-stats', - 'ver' => '0.14.0-alpha1731518828', + 'ver' => '0.14.0', ), 'jetpack-sync' => array( 'path' => 'jetpack_vendor/automattic/jetpack-sync', diff --git a/vendor/automattic/jetpack-plans/composer.json b/vendor/automattic/jetpack-plans/composer.json index c6201c91..b9d98a8d 100644 --- a/vendor/automattic/jetpack-plans/composer.json +++ b/vendor/automattic/jetpack-plans/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.0.1-alpha" + "automattic/jetpack-connection": "^6.0.1" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index dea7d3f2..e696fcf9 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": "e7229c93214e15cfbf2d204b01f9ac9009bbfc15" + "reference": "a2d41665728ac127aa093400bd61e86e89cbffb7" }, "require": { "php": ">=7.2" @@ -63,7 +63,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "89ef8fdd7826a715da98837b2c6cbc9819209e18" + "reference": "7162a42d673ee87f3d8a94747fe36200ce9aacff" }, "require": { "php": ">=7.2" @@ -131,7 +131,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "68442d85370b51354ab337871a879cd17f69d1f2" + "reference": "88e35b024f911ff8cea754164b3d1e55bee9fd8b" }, "require": { "automattic/jetpack-constants": "^3.0.0", @@ -203,7 +203,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "f9cff0dd9b2005e889d392482509785cb7423448" + "reference": "eb6ad154cc4d1a3117eb01180a4ef3b5167ab5f8" }, "require": { "composer-plugin-api": "^1.1 || ^2.0", @@ -274,10 +274,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "499cefa0240493fa1f0ef28c0129fcfa6e6de917" + "reference": "e0aeef185c05a73ecf8da68aa9d6f3feec7cec37" }, "require": { - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "php": ">=7.2" }, "require-dev": { @@ -345,7 +345,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "0eaa2557a11c05f891b45827c7dd18642ecddadc" + "reference": "a67c1bfc10b08014c0c071aafb93bbf34313934c" }, "require": { "automattic/jetpack-boost-core": "^0.3.0", @@ -424,7 +424,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "da824d8d07695380c6bb5b19eba587420b1fb23f" + "reference": "1d0a23a74ce59ddbc7f8a01508aa43a187ae3bdf" }, "require": { "composer-plugin-api": "^2.1.0", @@ -487,7 +487,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "cd4d7320e8592b4e54d01d43640c3f91ea06acfa" + "reference": "0af3f12a424bd932d1680a1ec6bf249ed0191511" }, "require": { "php": ">=7.2" @@ -557,12 +557,12 @@ }, { "name": "automattic/jetpack-connection", - "version": "6.0.1-alpha.1731686094", - "version_normalized": "6.0.1.0-alpha1731686094", + "version": "6.0.1", + "version_normalized": "6.0.1.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "8eff9896e89134303f9f18414b881f2fc24f9d71" + "reference": "e680183aa77f36eae97dd97a3f3316d5f4305926" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -655,7 +655,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "9c7be5380b9d413253d2d6a977fd105a215ee2d0" + "reference": "eb06e9305346b3992d54f2996d65b31d46d367b6" }, "require": { "php": ">=7.2" @@ -712,7 +712,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "8fb2f395b0ee1242bfdaa710e0b8a6369e3d8199" + "reference": "e047d7ae2f32a05822378a6a05bdde70383ae12e" }, "require": { "php": ">=7.2" @@ -768,10 +768,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "4cf3a63d535ef390aaa372756427ebd5d1a7b5ad" + "reference": "cca1c60d3042a6cba98ead3a8decfa3ab5800e6a" }, "require": { - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "php": ">=7.2" }, "require-dev": { @@ -846,7 +846,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "9c2ecaa836acabdffaacf271fe0aea58f9e44f46" + "reference": "e6ba617d56318a3936f4e6729310f1f5b6fbfee6" }, "require": { "php": ">=7.2" @@ -907,12 +907,12 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "8ccbfa8011fd0d34fc2e0ff027f141429bb76a26" + "reference": "863b44758e513fa61a109216938d5b70c9fab1f0" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", "automattic/jetpack-assets": "^4.0.0-alpha", - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-device-detection": "^3.0.0", "automattic/jetpack-logo": "^3.0.0", "automattic/jetpack-redirect": "^3.0.0", @@ -985,10 +985,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "a3c9563266476bd9aecec4589a4a452de8f4a6f8" + "reference": "d8690d6888341584de8f9e57897db1bdd9129cd8" }, "require": { - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "php": ">=7.2" }, "require-dev": { @@ -1050,7 +1050,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "00209f7f571d2e16d66364ef9941b407b3192850" + "reference": "de88bf7cc3b9faa1bab8ab5cde718d780a639f60" }, "require": { "php": ">=7.2" @@ -1101,18 +1101,18 @@ }, { "name": "automattic/jetpack-my-jetpack", - "version": "5.0.0", - "version_normalized": "5.0.0.0", + "version": "5.0.1", + "version_normalized": "5.0.1.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "132cbf04348da83fa66c989ddfb63f0bbd743b16" + "reference": "5040dec8d8056ffed387c4211593dfa454596a1a" }, "require": { "automattic/jetpack-admin-ui": "^0.5.0", "automattic/jetpack-assets": "^4.0.0-alpha", "automattic/jetpack-boost-speed-score": "^0.4.0", - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-constants": "^3.0.0", "automattic/jetpack-explat": "^0.2.0", "automattic/jetpack-jitm": "^4.0.0", @@ -1211,7 +1211,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "4306afcda288422845b66ac5e1c06cf64f779df5" + "reference": "6f65ac94a25dbfb706e3aef868a036dfd374f463" }, "require": { "php": ">=7.2" @@ -1275,10 +1275,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "9ccef4e6f3d02d4c80ff8be9c77a31d068668e63" + "reference": "96330da0ad00eb15eb614ae8881433f3a1a09551" }, "require": { - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "php": ">=7.2" }, "require-dev": { @@ -1346,7 +1346,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "c321107eb379150aa094fc4655d24d868904f8d9" + "reference": "b5f28b7d3f720278ba6cca7f6d1830ae1ad2ed46" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -1405,7 +1405,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "ecda436ce7f50f492789c3acaa251e60f4e1e023" + "reference": "e914abbf525079a78ad0734aaaf2e72ceea29a95" }, "require": { "php": ">=7.2" @@ -1478,10 +1478,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "99b70ccdd3835f8d6fb8a89f6dcde658e1bc15c1" + "reference": "911fe14ff8f228fc611d5c00ac1afc560e38af10" }, "require": { - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-plans": "^0.5.0", "automattic/jetpack-plugins-installer": "^0.5.0", "automattic/jetpack-protect-models": "^0.4.0", @@ -1556,7 +1556,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "ec0e29ff1fb9d9a27a5fec85667c3fd5044006b7" + "reference": "930d152d6a3a907678a1147949472143d1153c9a" }, "require": { "automattic/jetpack-status": "^5.0.1-alpha", @@ -1614,7 +1614,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "bfb53f30a11c0fc7b7ee731c96ae6eb3f31ebb34" + "reference": "0d467196ecb23eb33c866a381925df471b35d997" }, "require": { "php": ">=7.2" @@ -1666,19 +1666,19 @@ }, { "name": "automattic/jetpack-search", - "version": "0.47.0-alpha.1731605603", - "version_normalized": "0.47.0.0-alpha1731605603", + "version": "0.47.0", + "version_normalized": "0.47.0.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-search", - "reference": "9f738008e9bf05ec8092f68e7913f2df707e998a" + "reference": "ea64e367c5e8f466e6db41cefff25b3b6a2534d9" }, "require": { "automattic/jetpack-assets": "^4.0.0-alpha", "automattic/jetpack-config": "^3.0.0", - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-constants": "^3.0.0", - "automattic/jetpack-my-jetpack": "^5.0.0", + "automattic/jetpack-my-jetpack": "^5.0.1", "automattic/jetpack-status": "^5.0.1-alpha", "automattic/jetpack-sync": "^4.0.0", "php": ">=7.2" @@ -1757,15 +1757,15 @@ }, { "name": "automattic/jetpack-stats", - "version": "0.14.0-alpha.1731518828", - "version_normalized": "0.14.0.0-alpha1731518828", + "version": "0.14.0", + "version_normalized": "0.14.0.0", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "91b52b77de33c1619f1ae8d9bdfe683ed67f67b4" + "reference": "304af06e5e354af543325ed9ebfec89288b74a29" }, "require": { - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-constants": "^3.0.0", "automattic/jetpack-status": "^5.0.1-alpha", "php": ">=7.2" @@ -1832,7 +1832,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "2c9f9580cc4ddead279e455bb1f26130b47fdd55" + "reference": "648b070cc08083a1b652f66494d1825d77020d1e" }, "require": { "automattic/jetpack-constants": "^3.0.0", @@ -1899,10 +1899,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "2c5c3927ba01dec43ce90587d333373d0ffad7c4" + "reference": "edbd5fc181af346ee04ce0044ee75e301dcc17de" }, "require": { - "automattic/jetpack-connection": "^6.0.1-alpha", + "automattic/jetpack-connection": "^6.0.1", "automattic/jetpack-constants": "^3.0.0", "automattic/jetpack-ip": "^0.4.0", "automattic/jetpack-password-checker": "^0.4.0", @@ -1913,7 +1913,7 @@ "require-dev": { "automattic/jetpack-changelogger": "^5.1.0-alpha", "automattic/jetpack-search": "@dev", - "automattic/jetpack-waf": "@dev", + "automattic/jetpack-waf": "^0.23.0", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "^1.1.1" }, diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 557092cc..fe99ab3c 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,7 +13,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'e7229c93214e15cfbf2d204b01f9ac9009bbfc15', + 'reference' => 'a2d41665728ac127aa093400bd61e86e89cbffb7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), @@ -22,7 +22,7 @@ 'automattic/jetpack-admin-ui' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => '89ef8fdd7826a715da98837b2c6cbc9819209e18', + 'reference' => '7162a42d673ee87f3d8a94747fe36200ce9aacff', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '4.0.0-alpha.1731948564', 'version' => '4.0.0.0-alpha1731948564', - 'reference' => '68442d85370b51354ab337871a879cd17f69d1f2', + 'reference' => '88e35b024f911ff8cea754164b3d1e55bee9fd8b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '5.0.0-alpha.1731948564', 'version' => '5.0.0.0-alpha1731948564', - 'reference' => 'f9cff0dd9b2005e889d392482509785cb7423448', + 'reference' => 'eb6ad154cc4d1a3117eb01180a4ef3b5167ab5f8', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.3.0', 'version' => '0.3.0.0', - 'reference' => '499cefa0240493fa1f0ef28c0129fcfa6e6de917', + 'reference' => 'e0aeef185c05a73ecf8da68aa9d6f3feec7cec37', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-core', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-boost-speed-score' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => '0eaa2557a11c05f891b45827c7dd18642ecddadc', + 'reference' => 'a67c1bfc10b08014c0c071aafb93bbf34313934c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-speed-score', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'da824d8d07695380c6bb5b19eba587420b1fb23f', + 'reference' => '1d0a23a74ce59ddbc7f8a01508aa43a187ae3bdf', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -76,16 +76,16 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'cd4d7320e8592b4e54d01d43640c3f91ea06acfa', + 'reference' => '0af3f12a424bd932d1680a1ec6bf249ed0191511', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '6.0.1-alpha.1731686094', - 'version' => '6.0.1.0-alpha1731686094', - 'reference' => '8eff9896e89134303f9f18414b881f2fc24f9d71', + 'pretty_version' => '6.0.1', + 'version' => '6.0.1.0', + 'reference' => 'e680183aa77f36eae97dd97a3f3316d5f4305926', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '9c7be5380b9d413253d2d6a977fd105a215ee2d0', + 'reference' => 'eb06e9305346b3992d54f2996d65b31d46d367b6', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '8fb2f395b0ee1242bfdaa710e0b8a6369e3d8199', + 'reference' => 'e047d7ae2f32a05822378a6a05bdde70383ae12e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-explat' => array( 'pretty_version' => '0.2.0', 'version' => '0.2.0.0', - 'reference' => '4cf3a63d535ef390aaa372756427ebd5d1a7b5ad', + 'reference' => 'cca1c60d3042a6cba98ead3a8decfa3ab5800e6a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => '9c2ecaa836acabdffaacf271fe0aea58f9e44f46', + 'reference' => 'e6ba617d56318a3936f4e6729310f1f5b6fbfee6', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => '8ccbfa8011fd0d34fc2e0ff027f141429bb76a26', + 'reference' => '863b44758e513fa61a109216938d5b70c9fab1f0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'a3c9563266476bd9aecec4589a4a452de8f4a6f8', + 'reference' => 'd8690d6888341584de8f9e57897db1bdd9129cd8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -148,16 +148,16 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '00209f7f571d2e16d66364ef9941b407b3192850', + 'reference' => 'de88bf7cc3b9faa1bab8ab5cde718d780a639f60', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => '5.0.0', - 'version' => '5.0.0.0', - 'reference' => '132cbf04348da83fa66c989ddfb63f0bbd743b16', + 'pretty_version' => '5.0.1', + 'version' => '5.0.1.0', + 'reference' => '5040dec8d8056ffed387c4211593dfa454596a1a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => '4306afcda288422845b66ac5e1c06cf64f779df5', + 'reference' => '6f65ac94a25dbfb706e3aef868a036dfd374f463', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => '9ccef4e6f3d02d4c80ff8be9c77a31d068668e63', + 'reference' => '96330da0ad00eb15eb614ae8881433f3a1a09551', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => 'c321107eb379150aa094fc4655d24d868904f8d9', + 'reference' => 'b5f28b7d3f720278ba6cca7f6d1830ae1ad2ed46', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-protect-models' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => 'ecda436ce7f50f492789c3acaa251e60f4e1e023', + 'reference' => 'e914abbf525079a78ad0734aaaf2e72ceea29a95', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-models', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-protect-status' => array( 'pretty_version' => '0.3.0', 'version' => '0.3.0.0', - 'reference' => '99b70ccdd3835f8d6fb8a89f6dcde658e1bc15c1', + 'reference' => '911fe14ff8f228fc611d5c00ac1afc560e38af10', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'ec0e29ff1fb9d9a27a5fec85667c3fd5044006b7', + 'reference' => '930d152d6a3a907678a1147949472143d1153c9a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -220,16 +220,16 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'bfb53f30a11c0fc7b7ee731c96ae6eb3f31ebb34', + 'reference' => '0d467196ecb23eb33c866a381925df471b35d997', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-search' => array( - 'pretty_version' => '0.47.0-alpha.1731605603', - 'version' => '0.47.0.0-alpha1731605603', - 'reference' => '9f738008e9bf05ec8092f68e7913f2df707e998a', + 'pretty_version' => '0.47.0', + 'version' => '0.47.0.0', + 'reference' => 'ea64e367c5e8f466e6db41cefff25b3b6a2534d9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search', 'aliases' => array(), @@ -245,9 +245,9 @@ 'dev_requirement' => false, ), 'automattic/jetpack-stats' => array( - 'pretty_version' => '0.14.0-alpha.1731518828', - 'version' => '0.14.0.0-alpha1731518828', - 'reference' => '91b52b77de33c1619f1ae8d9bdfe683ed67f67b4', + 'pretty_version' => '0.14.0', + 'version' => '0.14.0.0', + 'reference' => '304af06e5e354af543325ed9ebfec89288b74a29', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats', 'aliases' => array(), @@ -256,7 +256,7 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '5.0.1-alpha.1731948564', 'version' => '5.0.1.0-alpha1731948564', - 'reference' => '2c9f9580cc4ddead279e455bb1f26130b47fdd55', + 'reference' => '648b070cc08083a1b652f66494d1825d77020d1e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -265,7 +265,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => '2c5c3927ba01dec43ce90587d333373d0ffad7c4', + 'reference' => 'edbd5fc181af346ee04ce0044ee75e301dcc17de', '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 be495923..95ac3b06 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -127,123 +127,123 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php' ), 'Automattic\\Jetpack\\Connection\\Authorize_Json_Api' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-authorize-json-api.php' ), 'Automattic\\Jetpack\\Connection\\Client' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Assets' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-assets.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Notice' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php' ), 'Automattic\\Jetpack\\Connection\\Error_Handler' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php' ), 'Automattic\\Jetpack\\Connection\\Initial_State' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Connection\\Manager' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php' ), 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php' ), 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php' ), 'Automattic\\Jetpack\\Connection\\Plugin' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php' ), 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php' ), 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php' ), 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php' ), 'Automattic\\Jetpack\\Connection\\SSO' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Force_2FA' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Helpers' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Notices' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-notices.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\User_Admin' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-user-admin.php' ), 'Automattic\\Jetpack\\Connection\\Secrets' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php' ), 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php' ), 'Automattic\\Jetpack\\Connection\\Tokens' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php' ), 'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php' ), 'Automattic\\Jetpack\\Connection\\Urls' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php' ), 'Automattic\\Jetpack\\Connection\\Utils' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php' ), 'Automattic\\Jetpack\\Constants' => array( @@ -283,7 +283,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-files.php' ), 'Automattic\\Jetpack\\Heartbeat' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php' ), 'Automattic\\Jetpack\\IP\\Utils' => array( @@ -291,23 +291,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-ip/src/class-utils.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\Exception' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-identity-crisis.php' ), 'Automattic\\Jetpack\\JITMS\\JITM' => array( @@ -339,131 +339,131 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Activitylog' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-activitylog.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Jetpack_Manage' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-jetpack-manage.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Creator' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-creator.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Product_Data' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-product-data.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Recommendations_Evaluation' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-recommendations-evaluation.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '5.0.0.0', + 'version' => '5.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner.php' ), 'Automattic\\Jetpack\\Partner_Coupon' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner-coupon.php' ), 'Automattic\\Jetpack\\Password_Checker' => array( @@ -531,91 +531,91 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-roles/src/class-roles.php' ), 'Automattic\\Jetpack\\Search\\CLI' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-cli.php' ), 'Automattic\\Jetpack\\Search\\Classic_Search' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/classic-search/class-classic-search.php' ), 'Automattic\\Jetpack\\Search\\Customberg' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/customberg/class-customberg.php' ), 'Automattic\\Jetpack\\Search\\Customizer' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/customizer/class-customizer.php' ), 'Automattic\\Jetpack\\Search\\Dashboard' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-dashboard.php' ), 'Automattic\\Jetpack\\Search\\Excluded_Post_Types_Control' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/customizer/customize-controls/class-excluded-post-types-control.php' ), 'Automattic\\Jetpack\\Search\\Helper' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-helper.php' ), 'Automattic\\Jetpack\\Search\\Initial_State' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/dashboard/class-initial-state.php' ), 'Automattic\\Jetpack\\Search\\Initializer' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/initializers/class-initializer.php' ), 'Automattic\\Jetpack\\Search\\Instant_Search' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/instant-search/class-instant-search.php' ), 'Automattic\\Jetpack\\Search\\Label_Control' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/customizer/customize-controls/class-label-control.php' ), 'Automattic\\Jetpack\\Search\\Module_Control' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-module-control.php' ), 'Automattic\\Jetpack\\Search\\Options' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-options.php' ), 'Automattic\\Jetpack\\Search\\Package' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-package.php' ), 'Automattic\\Jetpack\\Search\\Plan' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-plan.php' ), 'Automattic\\Jetpack\\Search\\REST_Controller' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php' ), 'Automattic\\Jetpack\\Search\\Search_Widget' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/widgets/class-search-widget.php' ), 'Automattic\\Jetpack\\Search\\Settings' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-settings.php' ), 'Automattic\\Jetpack\\Search\\Stats' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-stats.php' ), 'Automattic\\Jetpack\\Search\\Template_Tags' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-template-tags.php' ), 'Automattic\\Jetpack\\Search\\WPES\\Query_Builder' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-builder.php' ), 'Automattic\\Jetpack\\Search\\WPES\\Query_Parser' => array( - 'version' => '0.47.0.0-alpha1731605603', + 'version' => '0.47.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-parser.php' ), 'Automattic\\Jetpack\\Search_Plugin\\Jetpack_Search_Plugin' => array( @@ -623,31 +623,31 @@ 'path' => $baseDir . '/src/class-jetpack-search-plugin.php' ), 'Automattic\\Jetpack\\Stats\\Main' => array( - 'version' => '0.14.0.0-alpha1731518828', + 'version' => '0.14.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-stats/src/class-main.php' ), 'Automattic\\Jetpack\\Stats\\Options' => array( - 'version' => '0.14.0.0-alpha1731518828', + 'version' => '0.14.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-stats/src/class-options.php' ), 'Automattic\\Jetpack\\Stats\\Package_Version' => array( - 'version' => '0.14.0.0-alpha1731518828', + 'version' => '0.14.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-stats/src/class-package-version.php' ), 'Automattic\\Jetpack\\Stats\\REST_Provider' => array( - 'version' => '0.14.0.0-alpha1731518828', + 'version' => '0.14.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-stats/src/class-rest-provider.php' ), 'Automattic\\Jetpack\\Stats\\Tracking_Pixel' => array( - 'version' => '0.14.0.0-alpha1731518828', + 'version' => '0.14.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-stats/src/class-tracking-pixel.php' ), 'Automattic\\Jetpack\\Stats\\WPCOM_Stats' => array( - 'version' => '0.14.0.0-alpha1731518828', + 'version' => '0.14.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-stats/src/class-wpcom-stats.php' ), 'Automattic\\Jetpack\\Stats\\XMLRPC_Provider' => array( - 'version' => '0.14.0.0-alpha1731518828', + 'version' => '0.14.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-stats/src/class-xmlrpc-provider.php' ), 'Automattic\\Jetpack\\Status' => array( @@ -891,11 +891,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php' ), 'Automattic\\Jetpack\\Tracking' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Container' => array( @@ -907,31 +907,31 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php' ), 'Jetpack_IXR_Client' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' ), 'Jetpack_IXR_ClientMulticall' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' ), 'Jetpack_Options' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php' ), 'Jetpack_Signature' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php' ), 'Jetpack_Tracks_Client' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php' ), 'Jetpack_Tracks_Event' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php' ), 'Jetpack_XMLRPC_Server' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php' ), 'Latest_Autoloader_Guard' => array( diff --git a/vendor/composer/jetpack_autoload_filemap.php b/vendor/composer/jetpack_autoload_filemap.php index 10996d67..06b26659 100644 --- a/vendor/composer/jetpack_autoload_filemap.php +++ b/vendor/composer/jetpack_autoload_filemap.php @@ -11,7 +11,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php' ), '7372b7fb88a9723cf5b76d456eb0b738' => array( - 'version' => '6.0.1.0-alpha1731686094', + 'version' => '6.0.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/actions.php' ), );