From df35562bbce077398e6961b05f1ba7cf5688851a Mon Sep 17 00:00:00 2001 From: zinigor Date: Mon, 9 Dec 2024 13:14:18 +0000 Subject: [PATCH] WordPress 6.7 compat: Removes early i18n calls to fix notices. (#40474) * Move admin menu initialization to the init hook. * Changelogs. * Added Config callbacks for package options. * Removed the i18n call from deprecation notices for early calls. * Changelog. * Update projects/plugins/jetpack/functions.global.php Co-authored-by: Brad Jorsch --------- Co-authored-by: Brad Jorsch Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/12236132999 Upstream-Ref: Automattic/jetpack@c2f33548a550fee07eeb6dc616c1adeb009efd76 --- CHANGELOG.md | 1 + functions.global.php | 6 +- .../jetpack-connection/CHANGELOG.md | 1 + .../src/identity-crisis/class-ui.php | 4 + jetpack_vendor/i18n-map.php | 2 +- vendor/composer/installed.json | 96 +++++++++---------- vendor/composer/installed.php | 96 +++++++++---------- vendor/composer/jetpack_autoload_classmap.php | 94 +++++++++--------- vendor/composer/jetpack_autoload_filemap.php | 2 +- 9 files changed, 155 insertions(+), 147 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b17d55dad..d5acf52dcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ This is an alpha version! The changes listed here are not final. ### Improved compatibility - External media: Google Photos Picker: Update UX opening picker right after pressing "change selection" CTA - Jetpack SEO: Ensures we now support adding an SEO title and description for custom post types. +- WordPress 6.7 Compatibility: Fixed notices caused by translation calls happening too early in the load order. ### Bug fixes - Google Fonts: Clean up the google fonts data if either google fonts module is disabled or Jetpack is disabled diff --git a/functions.global.php b/functions.global.php index 57ac1d24d0..88ef11ae9a 100644 --- a/functions.global.php +++ b/functions.global.php @@ -50,8 +50,10 @@ function jetpack_deprecated_function( $function, $replacement, $version ) { // p ) { error_log( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log sprintf( - /* Translators: 1. Function name. 2. Jetpack version number. */ - __( 'The %1$s function will be removed from the Jetpack plugin in version %2$s.', 'jetpack' ), + doing_action( 'after_setup_theme' ) || did_action( 'after_setup_theme' ) ? + /* Translators: 1. Function name. 2. Jetpack version number. */ + __( 'The %1$s function will be removed from the Jetpack plugin in version %2$s.', 'jetpack' ) + : 'The %1$s function will be removed from the Jetpack plugin in version %2$s.', $function, $removed_version ) diff --git a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md index bf775b5e7f..53b45a1e3d 100644 --- a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This is an alpha version! The changes listed here are not final. ### Added +- Added a mechanism to use callbacks for package options. - REST user provisioning with an app password. ## [6.1.1] - 2024-12-04 diff --git a/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php b/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php index ee4c5acb4e..2066e2a5df 100644 --- a/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php +++ b/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php @@ -168,6 +168,10 @@ function ( $c1, $c2 ) { continue; } + if ( isset( $consumer['customContent'] ) && is_callable( $consumer['customContent'] ) ) { + $consumer['customContent'] = call_user_func( $consumer['customContent'] ); + } + if ( isset( $_SERVER['REQUEST_URI'] ) && str_starts_with( filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ) ), $consumer['admin_page'] ) && strlen( $consumer['admin_page'] ) > $consumer_url_length ) { $consumer_chosen = $consumer; $consumer_url_length = strlen( $consumer['admin_page'] ); diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 0b4f8c5be1..1c99dcf783 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -42,7 +42,7 @@ ), 'jetpack-connection' => array( 'path' => 'jetpack_vendor/automattic/jetpack-connection', - 'ver' => '6.2.0-alpha1733428152', + 'ver' => '6.2.0-alpha1733749108', ), 'jetpack-explat' => array( 'path' => 'jetpack_vendor/automattic/jetpack-explat', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index f93d7b2466..1b1791a237 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": "e3838c54f2ecfafbe5f6c3594f9015431f2b7a55" + "reference": "99b1522cc5425873ec3a3d24ffd11e61f36cd787" }, "require": { "php": ">=7.2" @@ -63,7 +63,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "d27e35e071c2007e1c92384c19ae4bb31ad03009" + "reference": "2948cbf4875f11df5590892d085845e4a6a7d340" }, "require": { "php": ">=7.2" @@ -131,7 +131,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "ea72f831188af9affa0d08e23688bd0a1c9f0e67" + "reference": "20bf9905fa2d81d0ee57b2863993c19c09db00cf" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -203,7 +203,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "0f942c5e0a3778c826b4c06a4d75972451945cfc" + "reference": "151b856b313b18a1def99bfbc6df48d9c342441f" }, "require": { "composer-plugin-api": "^2.2", @@ -274,7 +274,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-backup", - "reference": "57da572d4029ec4d29438b76fe1ac83c38d9d036" + "reference": "33cadd19ba8ffb240096d465e1c5a7299fe0af82" }, "require": { "automattic/jetpack-admin-ui": "^0.5.1", @@ -367,7 +367,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-backup-helper-script-manager", - "reference": "0c6c0de9ffcc1f2bed295874c0c83a11b9cc9af5" + "reference": "514d2b308297f8c8f81b1ba161f17853b38e3c3b" }, "require": { "php": ">=7.2" @@ -430,7 +430,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-blaze", - "reference": "9ca3d99f13df4f23d880aedf425d28ca2b579fad" + "reference": "1b992b0b9c063eebc024da9cd7f8a8e33c1d16f7" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -514,7 +514,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-blocks", - "reference": "42de569647fc4a44fecb72d9a921c6bcdcf7bec0" + "reference": "93ab1dfacdcb82b8cc0d87a084ee5f5b1bf140e9" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -579,7 +579,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "dd66271c59886133dfc53e0b4976216db00244da" + "reference": "1618228ac9c8dd261b0f60b25523cf542d0cb356" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -650,7 +650,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "0421ba7fc277fd31127ac266eb78e83b0ca038ef" + "reference": "fa8b65cda6709eb0b4f7329484032e4ef4884c7b" }, "require": { "automattic/jetpack-boost-core": "^0.3.2", @@ -729,7 +729,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-classic-theme-helper", - "reference": "9da14d0a2ca39f748dc1cdb07ad83c11c73557f6" + "reference": "7eebd2f0a71ba633184a206d18357c5d49bc3a00" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -803,7 +803,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-compat", - "reference": "b9f92a07cdc3188d3a72f63db117358e7585def3" + "reference": "eea0d11e1f27b874a0eb3c3e08b77d5ccea96002" }, "require": { "php": ">=7.2" @@ -843,7 +843,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "1fcc1cf2ace29a9572b9678de616d2beae52ab11" + "reference": "239bb1f833eb5d38047a46abe204b9701ee6d4cc" }, "require": { "composer-plugin-api": "^2.2", @@ -906,7 +906,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "c3205c1c3677d70639e7bbf6c5d819f79ce84253" + "reference": "06cd54a9825ffdc88590bbf9d504c26364009ed3" }, "require": { "php": ">=7.2" @@ -976,12 +976,12 @@ }, { "name": "automattic/jetpack-connection", - "version": "6.2.0-alpha.1733428152", - "version_normalized": "6.2.0.0-alpha1733428152", + "version": "6.2.0-alpha.1733749108", + "version_normalized": "6.2.0.0-alpha1733749108", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "08b06c4f4354ec9c5485f31b86fba2b3643d1624" + "reference": "99f2f2ea76a283805dd37f6ff5bf3286ddbbbdfc" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -1074,7 +1074,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "d5e56f8049331f5974c7a2de1725015f03a4c513" + "reference": "c8781b8caa18c94bb1187cdc425ac55a348af118" }, "require": { "php": ">=7.2" @@ -1131,7 +1131,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "a9a20fad33f4a5e913b29d68aa7282710f31aad7" + "reference": "b9ab7764a43437d1669bcd828f6d973683069247" }, "require": { "php": ">=7.2" @@ -1187,7 +1187,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-error", - "reference": "9f3f236f5b7f056f4eba300934efaf16e0bdfca3" + "reference": "35fa191e855ae7c9bc3b39f216cf41470af0404f" }, "require": { "php": ">=7.2" @@ -1243,7 +1243,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "1442470d0030013eab7814ea2b37ef0ee6dcf445" + "reference": "d6e07b09f753e15b00a57f6697eff5000a1ad336" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -1321,7 +1321,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-forms", - "reference": "1597381fb5f9e968e816796ffac44789a6594d62" + "reference": "368b32ea6f282bbc12a7c2c7d7fdc134fb5f382b" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -1408,7 +1408,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-image-cdn", - "reference": "b5934339d4b33484cdc47e8bc553fe914e3ca794" + "reference": "3c3119a494feba6fa5cbbd9a4c31337b13b5c710" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -1477,7 +1477,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-import", - "reference": "bf2b8a363768bbb9a4fea51ae6c64348c7e39f5d" + "reference": "ab30d4e3ae1f830047ec63a85ae76a8304344779" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -1552,7 +1552,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "07d7d57ec5e5724263104f69f76f8ed33bb01b46" + "reference": "7c6fb66e39f26a0b1a66011f6eea471f06c98234" }, "require": { "php": ">=7.2" @@ -1613,7 +1613,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "f53c31e69e1b0b183adf93d95dc838e7145eeb26" + "reference": "413b47b6f8b0308e06b119ad2f0a7100586acd3e" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -1691,7 +1691,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "ec42f6faabf18eaa6c7bb6c953e391398617871d" + "reference": "0f4ea4f602ae3b7c8172df6a64585f0b408a5bfa" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -1756,7 +1756,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "3b13445bc381e6834d287d4680c2904497410dc4" + "reference": "d43cf9499f717dab26926ddd8be5fb3972962f97" }, "require": { "php": ">=7.2" @@ -1812,7 +1812,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-masterbar", - "reference": "439c8ac8ebd1934e695dfbb946ff3f9be4621462" + "reference": "9d2d1364624cbfe4decfc6ce96e08ccbe5352c09" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -1898,7 +1898,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "45049ae0ba808daabf5113de31316dab5f753e7c" + "reference": "11207fc4646e27d1c95c3692a6b883dec12220f9" }, "require": { "automattic/jetpack-admin-ui": "^0.5.1", @@ -2003,7 +2003,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "9a0b770931efe1f79a05b2cc143219c64a695bf4" + "reference": "b76b47696aca38052657bf21a9853685b67415ed" }, "require": { "php": ">=7.2" @@ -2067,7 +2067,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "9363df656698cef7ef6ea975173da7ba2aed5e79" + "reference": "802b3dc2960194ab8b58ee129394fe1391f3720a" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -2138,7 +2138,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "aa7f78205a8ca245636fed0f672e1b251e314746" + "reference": "0d20955e70af420f27250de55676200748e2a0a8" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -2197,7 +2197,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-post-list", - "reference": "7ce332adebe2dd9c54cebe40df078266d8410b4d" + "reference": "5c774cc607ff1c15c58ca6c900f48d7d62962a9f" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -2265,7 +2265,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "6a640cc038276d159d773e11ebf94056634ef879" + "reference": "5ed795755f4cf89bd2d342c60635c90edbaec75f" }, "require": { "php": ">=7.2" @@ -2338,7 +2338,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "d5720396d0a8812f60f6ad160b91ed511401c7af" + "reference": "1899a2f978a7abc14b1484760782b3a83827b721" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -2416,7 +2416,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-publicize", - "reference": "eb989c3fbc8704be8b16220983e502cfac233658" + "reference": "408b453257c2887557424a726686b836e832c774" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -2501,7 +2501,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "06daf41bda7181a4fe96e23120e7fe4852bd2f3e" + "reference": "5aa1cfbefc2cefe20698340249b41551cfef2f52" }, "require": { "automattic/jetpack-status": "^5.0.1", @@ -2559,7 +2559,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "5592f43057efe710283f56045eb8b76e4ff37ed4" + "reference": "b28ad741aabd740e555936fcfb4f9a8cf9cfe612" }, "require": { "php": ">=7.2" @@ -2616,7 +2616,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-search", - "reference": "7e2fdc8e987570c71a1359224b286cac65e037ab" + "reference": "fa5aa1e9506339d66b420ae2e60a6c20c8a7ffce" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -2707,7 +2707,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "58495eb69c579c0d1b2a30bdc33b99ec457972a3" + "reference": "4cd211446c2b98d764f32250f85f04ed78756c92" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -2777,7 +2777,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats-admin", - "reference": "0a118df00f3ae60b746c66cc198e90ebffe544ff" + "reference": "b8f91210f7acc7e998b7f3549d7a503d21be308c" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -2853,7 +2853,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "5a435e95f29223e519ad909cedcd880984459343" + "reference": "3a28e9d34bc6ddb23a1ec924a84fb10f091ff126" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -2920,7 +2920,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "93fc2190b95c35c6f9084a1519b0c02a7a54cf99" + "reference": "54044bed5e96408a5d8978dd7069d3b7c8423e5c" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -3001,7 +3001,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-videopress", - "reference": "9f06747619a1a98403b2997f0660402514c052a2" + "reference": "cefa949106054d14e5d33f52957c68bc86fc02eb" }, "require": { "automattic/jetpack-admin-ui": "^0.5.1", @@ -3087,7 +3087,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-waf", - "reference": "1deac31bd3170324f33a387fe9478d6cad41c966" + "reference": "f55e2ac621ac6a6badd5af48f0f03c3952577a8d" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", @@ -3164,7 +3164,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-wordads", - "reference": "641c22836e40b11435cd94b8eda80c55f7e9fa48" + "reference": "8cde7f4c08512b333a496fe63a2f6b46ff58eea0" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -3246,7 +3246,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/woocommerce-analytics", - "reference": "c9c4c600ad640e4e40398955aea1ea68eb04b72a" + "reference": "928c9033f735e2ea713fe53de7949d5d6e857c85" }, "require": { "automattic/jetpack-connection": "^6.2.0-alpha", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 88fbb22668..3edbdbfc4c 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -22,7 +22,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'e3838c54f2ecfafbe5f6c3594f9015431f2b7a55', + 'reference' => '99b1522cc5425873ec3a3d24ffd11e61f36cd787', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-admin-ui' => array( 'pretty_version' => '0.5.1', 'version' => '0.5.1.0', - 'reference' => 'd27e35e071c2007e1c92384c19ae4bb31ad03009', + 'reference' => '2948cbf4875f11df5590892d085845e4a6a7d340', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '4.0.1', 'version' => '4.0.1.0', - 'reference' => 'ea72f831188af9affa0d08e23688bd0a1c9f0e67', + 'reference' => '20bf9905fa2d81d0ee57b2863993c19c09db00cf', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '5.0.0', 'version' => '5.0.0.0', - 'reference' => '0f942c5e0a3778c826b4c06a4d75972451945cfc', + 'reference' => '151b856b313b18a1def99bfbc6df48d9c342441f', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-backup' => array( 'pretty_version' => '4.0.4-alpha.1733170314', 'version' => '4.0.4.0-alpha1733170314', - 'reference' => '57da572d4029ec4d29438b76fe1ac83c38d9d036', + 'reference' => '33cadd19ba8ffb240096d465e1c5a7299fe0af82', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-backup', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-backup-helper-script-manager' => array( 'pretty_version' => '0.3.1', 'version' => '0.3.1.0', - 'reference' => '0c6c0de9ffcc1f2bed295874c0c83a11b9cc9af5', + 'reference' => '514d2b308297f8c8f81b1ba161f17853b38e3c3b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-backup-helper-script-manager', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-blaze' => array( 'pretty_version' => '0.25.3', 'version' => '0.25.3.0', - 'reference' => '9ca3d99f13df4f23d880aedf425d28ca2b579fad', + 'reference' => '1b992b0b9c063eebc024da9cd7f8a8e33c1d16f7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-blaze', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-blocks' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => '42de569647fc4a44fecb72d9a921c6bcdcf7bec0', + 'reference' => '93ab1dfacdcb82b8cc0d87a084ee5f5b1bf140e9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-blocks', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.3.2', 'version' => '0.3.2.0', - 'reference' => 'dd66271c59886133dfc53e0b4976216db00244da', + 'reference' => '1618228ac9c8dd261b0f60b25523cf542d0cb356', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-core', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-boost-speed-score' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => '0421ba7fc277fd31127ac266eb78e83b0ca038ef', + 'reference' => 'fa8b65cda6709eb0b4f7329484032e4ef4884c7b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-speed-score', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-classic-theme-helper' => array( 'pretty_version' => '0.7.4-alpha.1733746307', 'version' => '0.7.4.0-alpha1733746307', - 'reference' => '9da14d0a2ca39f748dc1cdb07ad83c11c73557f6', + 'reference' => '7eebd2f0a71ba633184a206d18357c5d49bc3a00', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-classic-theme-helper', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-compat' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => 'b9f92a07cdc3188d3a72f63db117358e7585def3', + 'reference' => 'eea0d11e1f27b874a0eb3c3e08b77d5ccea96002', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-compat', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => '1fcc1cf2ace29a9572b9678de616d2beae52ab11', + 'reference' => '239bb1f833eb5d38047a46abe204b9701ee6d4cc', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -139,16 +139,16 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'c3205c1c3677d70639e7bbf6c5d819f79ce84253', + 'reference' => '06cd54a9825ffdc88590bbf9d504c26364009ed3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '6.2.0-alpha.1733428152', - 'version' => '6.2.0.0-alpha1733428152', - 'reference' => '08b06c4f4354ec9c5485f31b86fba2b3643d1624', + 'pretty_version' => '6.2.0-alpha.1733749108', + 'version' => '6.2.0.0-alpha1733749108', + 'reference' => '99f2f2ea76a283805dd37f6ff5bf3286ddbbbdfc', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => 'd5e56f8049331f5974c7a2de1725015f03a4c513', + 'reference' => 'c8781b8caa18c94bb1187cdc425ac55a348af118', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'a9a20fad33f4a5e913b29d68aa7282710f31aad7', + 'reference' => 'b9ab7764a43437d1669bcd828f6d973683069247', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-error' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '9f3f236f5b7f056f4eba300934efaf16e0bdfca3', + 'reference' => '35fa191e855ae7c9bc3b39f216cf41470af0404f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-error', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-explat' => array( 'pretty_version' => '0.2.2', 'version' => '0.2.2.0', - 'reference' => '1442470d0030013eab7814ea2b37ef0ee6dcf445', + 'reference' => 'd6e07b09f753e15b00a57f6697eff5000a1ad336', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-forms' => array( 'pretty_version' => '0.34.3-alpha.1733418279', 'version' => '0.34.3.0-alpha1733418279', - 'reference' => '1597381fb5f9e968e816796ffac44789a6594d62', + 'reference' => '368b32ea6f282bbc12a7c2c7d7fdc134fb5f382b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-forms', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-image-cdn' => array( 'pretty_version' => '0.7.1', 'version' => '0.7.1.0', - 'reference' => 'b5934339d4b33484cdc47e8bc553fe914e3ca794', + 'reference' => '3c3119a494feba6fa5cbbd9a4c31337b13b5c710', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-image-cdn', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-import' => array( 'pretty_version' => '0.9.1', 'version' => '0.9.1.0', - 'reference' => 'bf2b8a363768bbb9a4fea51ae6c64348c7e39f5d', + 'reference' => 'ab30d4e3ae1f830047ec63a85ae76a8304344779', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-import', 'aliases' => array(), @@ -220,7 +220,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => '07d7d57ec5e5724263104f69f76f8ed33bb01b46', + 'reference' => '7c6fb66e39f26a0b1a66011f6eea471f06c98234', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -229,7 +229,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '4.0.2', 'version' => '4.0.2.0', - 'reference' => 'f53c31e69e1b0b183adf93d95dc838e7145eeb26', + 'reference' => '413b47b6f8b0308e06b119ad2f0a7100586acd3e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -238,7 +238,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '3.0.2', 'version' => '3.0.2.0', - 'reference' => 'ec42f6faabf18eaa6c7bb6c953e391398617871d', + 'reference' => '0f4ea4f602ae3b7c8172df6a64585f0b408a5bfa', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -247,7 +247,7 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '3b13445bc381e6834d287d4680c2904497410dc4', + 'reference' => 'd43cf9499f717dab26926ddd8be5fb3972962f97', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), @@ -256,7 +256,7 @@ 'automattic/jetpack-masterbar' => array( 'pretty_version' => '0.10.2', 'version' => '0.10.2.0', - 'reference' => '439c8ac8ebd1934e695dfbb946ff3f9be4621462', + 'reference' => '9d2d1364624cbfe4decfc6ce96e08ccbe5352c09', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-masterbar', 'aliases' => array(), @@ -265,7 +265,7 @@ 'automattic/jetpack-my-jetpack' => array( 'pretty_version' => '5.1.1', 'version' => '5.1.1.0', - 'reference' => '45049ae0ba808daabf5113de31316dab5f753e7c', + 'reference' => '11207fc4646e27d1c95c3692a6b883dec12220f9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -274,7 +274,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => '9a0b770931efe1f79a05b2cc143219c64a695bf4', + 'reference' => 'b76b47696aca38052657bf21a9853685b67415ed', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -283,7 +283,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.5.1', 'version' => '0.5.1.0', - 'reference' => '9363df656698cef7ef6ea975173da7ba2aed5e79', + 'reference' => '802b3dc2960194ab8b58ee129394fe1391f3720a', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -292,7 +292,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => 'aa7f78205a8ca245636fed0f672e1b251e314746', + 'reference' => '0d20955e70af420f27250de55676200748e2a0a8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -301,7 +301,7 @@ 'automattic/jetpack-post-list' => array( 'pretty_version' => '0.7.1', 'version' => '0.7.1.0', - 'reference' => '7ce332adebe2dd9c54cebe40df078266d8410b4d', + 'reference' => '5c774cc607ff1c15c58ca6c900f48d7d62962a9f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-post-list', 'aliases' => array(), @@ -310,7 +310,7 @@ 'automattic/jetpack-protect-models' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => '6a640cc038276d159d773e11ebf94056634ef879', + 'reference' => '5ed795755f4cf89bd2d342c60635c90edbaec75f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-models', 'aliases' => array(), @@ -319,7 +319,7 @@ 'automattic/jetpack-protect-status' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => 'd5720396d0a8812f60f6ad160b91ed511401c7af', + 'reference' => '1899a2f978a7abc14b1484760782b3a83827b721', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), @@ -328,7 +328,7 @@ 'automattic/jetpack-publicize' => array( 'pretty_version' => '0.56.4-alpha.1733166700', 'version' => '0.56.4.0-alpha1733166700', - 'reference' => 'eb989c3fbc8704be8b16220983e502cfac233658', + 'reference' => '408b453257c2887557424a726686b836e832c774', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-publicize', 'aliases' => array(), @@ -337,7 +337,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => '06daf41bda7181a4fe96e23120e7fe4852bd2f3e', + 'reference' => '5aa1cfbefc2cefe20698340249b41551cfef2f52', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -346,7 +346,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => '5592f43057efe710283f56045eb8b76e4ff37ed4', + 'reference' => 'b28ad741aabd740e555936fcfb4f9a8cf9cfe612', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -355,7 +355,7 @@ 'automattic/jetpack-search' => array( 'pretty_version' => '0.47.3-alpha.1733259103', 'version' => '0.47.3.0-alpha1733259103', - 'reference' => '7e2fdc8e987570c71a1359224b286cac65e037ab', + 'reference' => 'fa5aa1e9506339d66b420ae2e60a6c20c8a7ffce', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search', 'aliases' => array(), @@ -364,7 +364,7 @@ 'automattic/jetpack-stats' => array( 'pretty_version' => '0.14.1', 'version' => '0.14.1.0', - 'reference' => '58495eb69c579c0d1b2a30bdc33b99ec457972a3', + 'reference' => '4cd211446c2b98d764f32250f85f04ed78756c92', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats', 'aliases' => array(), @@ -373,7 +373,7 @@ 'automattic/jetpack-stats-admin' => array( 'pretty_version' => '0.23.1', 'version' => '0.23.1.0', - 'reference' => '0a118df00f3ae60b746c66cc198e90ebffe544ff', + 'reference' => 'b8f91210f7acc7e998b7f3549d7a503d21be308c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats-admin', 'aliases' => array(), @@ -382,7 +382,7 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '5.0.1', 'version' => '5.0.1.0', - 'reference' => '5a435e95f29223e519ad909cedcd880984459343', + 'reference' => '3a28e9d34bc6ddb23a1ec924a84fb10f091ff126', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -391,7 +391,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '4.1.0-alpha.1733498965', 'version' => '4.1.0.0-alpha1733498965', - 'reference' => '93fc2190b95c35c6f9084a1519b0c02a7a54cf99', + 'reference' => '54044bed5e96408a5d8978dd7069d3b7c8423e5c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync', 'aliases' => array(), @@ -400,7 +400,7 @@ 'automattic/jetpack-videopress' => array( 'pretty_version' => '0.25.4-alpha.1733261868', 'version' => '0.25.4.0-alpha1733261868', - 'reference' => '9f06747619a1a98403b2997f0660402514c052a2', + 'reference' => 'cefa949106054d14e5d33f52957c68bc86fc02eb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-videopress', 'aliases' => array(), @@ -409,7 +409,7 @@ 'automattic/jetpack-waf' => array( 'pretty_version' => '0.23.1', 'version' => '0.23.1.0', - 'reference' => '1deac31bd3170324f33a387fe9478d6cad41c966', + 'reference' => 'f55e2ac621ac6a6badd5af48f0f03c3952577a8d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-waf', 'aliases' => array(), @@ -418,7 +418,7 @@ 'automattic/jetpack-wordads' => array( 'pretty_version' => '0.4.3-alpha.1733259103', 'version' => '0.4.3.0-alpha1733259103', - 'reference' => '641c22836e40b11435cd94b8eda80c55f7e9fa48', + 'reference' => '8cde7f4c08512b333a496fe63a2f6b46ff58eea0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-wordads', 'aliases' => array(), @@ -427,7 +427,7 @@ 'automattic/woocommerce-analytics' => array( 'pretty_version' => '0.2.0', 'version' => '0.2.0.0', - 'reference' => 'c9c4c600ad640e4e40398955aea1ea68eb04b72a', + 'reference' => '928c9033f735e2ea713fe53de7949d5d6e857c85', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/woocommerce-analytics', 'aliases' => array(), diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index 796182789d..09a902fc6b 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -223,123 +223,123 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php' ), 'Automattic\\Jetpack\\Connection\\Authorize_Json_Api' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-authorize-json-api.php' ), 'Automattic\\Jetpack\\Connection\\Client' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Assets' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-assets.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Notice' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php' ), 'Automattic\\Jetpack\\Connection\\Error_Handler' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php' ), 'Automattic\\Jetpack\\Connection\\Initial_State' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Connection\\Manager' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php' ), 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php' ), 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php' ), 'Automattic\\Jetpack\\Connection\\Plugin' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php' ), 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php' ), 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php' ), 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php' ), 'Automattic\\Jetpack\\Connection\\SSO' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Force_2FA' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Helpers' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Notices' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-notices.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\User_Admin' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-user-admin.php' ), 'Automattic\\Jetpack\\Connection\\Secrets' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php' ), 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php' ), 'Automattic\\Jetpack\\Connection\\Tokens' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php' ), 'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php' ), 'Automattic\\Jetpack\\Connection\\Urls' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php' ), 'Automattic\\Jetpack\\Connection\\Utils' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php' ), 'Automattic\\Jetpack\\Constants' => array( @@ -447,7 +447,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/class-wpcom-rest-api-v2-endpoint-forms.php' ), 'Automattic\\Jetpack\\Heartbeat' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php' ), 'Automattic\\Jetpack\\IP\\Utils' => array( @@ -455,23 +455,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-ip/src/class-utils.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\Exception' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-identity-crisis.php' ), 'Automattic\\Jetpack\\Image_CDN\\Image_CDN' => array( @@ -803,11 +803,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner.php' ), 'Automattic\\Jetpack\\Partner_Coupon' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner-coupon.php' ), 'Automattic\\Jetpack\\Password_Checker' => array( @@ -1355,11 +1355,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php' ), 'Automattic\\Jetpack\\Tracking' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Automattic\\Jetpack\\VideoPress\\AJAX' => array( @@ -1623,11 +1623,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-classic-theme-helper/src/content-options/customizer.php' ), 'Jetpack_IXR_Client' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' ), 'Jetpack_IXR_ClientMulticall' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' ), 'Jetpack_Modules_Overrides' => array( @@ -1635,23 +1635,23 @@ 'path' => $baseDir . '/src/class-jetpack-modules-overrides.php' ), 'Jetpack_Options' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php' ), 'Jetpack_Signature' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php' ), 'Jetpack_Tracks_Client' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php' ), 'Jetpack_Tracks_Event' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php' ), 'Jetpack_XMLRPC_Server' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', '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 61289e90f4..c4d5bcc0b2 100644 --- a/vendor/composer/jetpack_autoload_filemap.php +++ b/vendor/composer/jetpack_autoload_filemap.php @@ -11,7 +11,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php' ), '7372b7fb88a9723cf5b76d456eb0b738' => array( - 'version' => '6.2.0.0-alpha1733428152', + 'version' => '6.2.0.0-alpha1733749108', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/actions.php' ), 'd4eb94df91a729802d18373ee8cdc79f' => array(