Jetpack by WordPress.com - Version 11.3.2

Version Description

Download this release

Release Info

Developer samiff
Plugin Icon 128x128 Jetpack by WordPress.com
Version 11.3.2
Comparing to
See all releases

Code changes from version 11.3.1 to 11.3.2

Files changed (34) hide show
  1. CHANGELOG.md +7 -0
  2. composer.json +2 -2
  3. jetpack.php +2 -2
  4. jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md +15 -0
  5. jetpack_vendor/automattic/jetpack-connection/dist/tracks-callables.asset.php +1 -1
  6. jetpack_vendor/automattic/jetpack-connection/dist/tracks-callables.js +1 -1
  7. jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php +1 -2
  8. jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php +1 -1
  9. jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php +9 -9
  10. jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php +1 -1
  11. jetpack_vendor/i18n-map.php +9 -9
  12. modules/google-fonts.php +4 -1
  13. readme.txt +6 -3
  14. vendor/autoload.php +1 -1
  15. vendor/autoload_packages.php +1 -1
  16. vendor/composer/autoload_real.php +7 -7
  17. vendor/composer/autoload_static.php +5 -5
  18. vendor/composer/installed.json +8 -8
  19. vendor/composer/installed.php +3 -3
  20. vendor/composer/jetpack_autoload_classmap.php +31 -31
  21. vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
  22. vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
  23. vendor/jetpack-autoloader/class-autoloader.php +1 -1
  24. vendor/jetpack-autoloader/class-container.php +1 -1
  25. vendor/jetpack-autoloader/class-hook-manager.php +1 -1
  26. vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
  27. vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
  28. vendor/jetpack-autoloader/class-path-processor.php +1 -1
  29. vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
  30. vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
  31. vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
  32. vendor/jetpack-autoloader/class-shutdown-handler.php +1 -1
  33. vendor/jetpack-autoloader/class-version-loader.php +1 -1
  34. vendor/jetpack-autoloader/class-version-selector.php +1 -1
CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
 
3
  ### This is a list detailing changes for all Jetpack releases.
4
 
 
 
 
 
 
 
 
5
  ## 11.3.1 - 2022-09-08
6
  ### Improved compatibility
7
  - Notifications: improve third-party cookie check to work with modsecurity rules. [#26122]
2
 
3
  ### This is a list detailing changes for all Jetpack releases.
4
 
5
+ ## 11.3.2 - 2022-09-22
6
+ ### Improved compatibility
7
+ - WC Pay: resolves issue for WooCommerce Payments that could result in a fatal for some sites on PHP 8+.
8
+
9
+ ### Bug fixes
10
+ - Set the `Automattic\Jetpack\Fonts\Introspectors\Global_Styles::enqueue_global_styles_fonts` callback priority in the `init` hook to 22 to prevent it from causing style issues with sites that have Gutenberg > 13.5 activated. [#26193]
11
+
12
  ## 11.3.1 - 2022-09-08
13
  ### Improved compatibility
14
  - Notifications: improve third-party cookie check to work with modsecurity rules. [#26122]
composer.json CHANGED
@@ -20,7 +20,7 @@
20
  "automattic/jetpack-compat": "^1.7",
21
  "automattic/jetpack-composer-plugin": "^1.1",
22
  "automattic/jetpack-config": "^1.9",
23
- "automattic/jetpack-connection": "1.44",
24
  "automattic/jetpack-connection-ui": "^2.4",
25
  "automattic/jetpack-constants": "^1.6",
26
  "automattic/jetpack-device-detection": "^1.4",
@@ -91,7 +91,7 @@
91
  "platform": {
92
  "ext-intl": "0.0.0"
93
  },
94
- "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1",
95
  "allow-plugins": {
96
  "automattic/jetpack-autoloader": true,
97
  "automattic/jetpack-composer-plugin": true
20
  "automattic/jetpack-compat": "^1.7",
21
  "automattic/jetpack-composer-plugin": "^1.1",
22
  "automattic/jetpack-config": "^1.9",
23
+ "automattic/jetpack-connection": "^1.45",
24
  "automattic/jetpack-connection-ui": "^2.4",
25
  "automattic/jetpack-constants": "^1.6",
26
  "automattic/jetpack-device-detection": "^1.4",
91
  "platform": {
92
  "ext-intl": "0.0.0"
93
  },
94
+ "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2",
95
  "allow-plugins": {
96
  "automattic/jetpack-autoloader": true,
97
  "automattic/jetpack-composer-plugin": true
jetpack.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://jetpack.com
5
  * Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
6
  * Author: Automattic
7
- * Version: 11.3.1
8
  * Author URI: https://jetpack.com
9
  * License: GPL2+
10
  * Text Domain: jetpack
@@ -32,7 +32,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
32
 
33
  define( 'JETPACK__MINIMUM_WP_VERSION', '5.9' );
34
  define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
35
- define( 'JETPACK__VERSION', '11.3.1' );
36
 
37
  /**
38
  * Constant used to fetch the connection owner token
4
  * Plugin URI: https://jetpack.com
5
  * Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
6
  * Author: Automattic
7
+ * Version: 11.3.2
8
  * Author URI: https://jetpack.com
9
  * License: GPL2+
10
  * Text Domain: jetpack
32
 
33
  define( 'JETPACK__MINIMUM_WP_VERSION', '5.9' );
34
  define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
35
+ define( 'JETPACK__VERSION', '11.3.2' );
36
 
37
  /**
38
  * Constant used to fetch the connection owner token
jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ## [1.44.0] - 2022-08-29
9
  ### Added
10
  - Connection: verify REST API errors.
@@ -678,6 +690,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
678
 
679
  - Separate the connection library into its own package.
680
 
 
 
 
681
  [1.44.0]: https://github.com/Automattic/jetpack-connection/compare/v1.43.1...v1.44.0
682
  [1.43.1]: https://github.com/Automattic/jetpack-connection/compare/v1.43.0...v1.43.1
683
  [1.43.0]: https://github.com/Automattic/jetpack-connection/compare/v1.42.0...v1.43.0
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
 
8
+ ## [1.45.2] - 2022-09-21
9
+ ### Fixed
10
+ - Check request body error type before creating wp error. [#26304]
11
+
12
+ ## [1.45.1] - 2022-09-20
13
+ ### Fixed
14
+ - Rename the initial state key to ensure compatibility with the JS package. [#26259]
15
+
16
+ ## [1.45.0] - 2022-09-08
17
+ ### Changed
18
+ - Add option to JP options [#25979]
19
+
20
  ## [1.44.0] - 2022-08-29
21
  ### Added
22
  - Connection: verify REST API errors.
690
 
691
  - Separate the connection library into its own package.
692
 
693
+ [1.45.2]: https://github.com/Automattic/jetpack-connection/compare/v1.45.1...v1.45.2
694
+ [1.45.1]: https://github.com/Automattic/jetpack-connection/compare/v1.45.0...v1.45.1
695
+ [1.45.0]: https://github.com/Automattic/jetpack-connection/compare/v1.44.0...v1.45.0
696
  [1.44.0]: https://github.com/Automattic/jetpack-connection/compare/v1.43.1...v1.44.0
697
  [1.43.1]: https://github.com/Automattic/jetpack-connection/compare/v1.43.0...v1.43.1
698
  [1.43.0]: https://github.com/Automattic/jetpack-connection/compare/v1.42.0...v1.43.0
jetpack_vendor/automattic/jetpack-connection/dist/tracks-callables.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array(), 'version' => 'd9dbf909a3d10fb26f39');
1
+ <?php return array('dependencies' => array(), 'version' => 'a96178e4d62fb695caa0');
jetpack_vendor/automattic/jetpack-connection/dist/tracks-callables.js CHANGED
@@ -1 +1 @@
1
- (()=>{var e={775:e=>{let n;window._tkq=window._tkq||[];const t=console.error;const o={initialize:function(e,n){o.setUser(e,n),o.identifyUser()},mc:{bumpStat:function(e,n){const t=function(e,n){let t="";if("object"==typeof e)for(const n in e)t+="&x_"+encodeURIComponent(n)+"="+encodeURIComponent(e[n]);else t="&x_"+encodeURIComponent(e)+"="+encodeURIComponent(n);return t}(e,n);(new Image).src=document.location.protocol+"//pixel.wp.com/g.gif?v=wpcom-no-pv"+t+"&t="+Math.random()}},tracks:{recordEvent:function(e,n){n=n||{},0===e.indexOf("jetpack_")?window._tkq.push(["recordEvent",e,n]):t('- Event name must be prefixed by "jetpack_"')},recordPageView:function(e){o.tracks.recordEvent("jetpack_page_view",{path:e})}},setUser:function(e,t){n={ID:e,username:t}},identifyUser:function(){n&&window._tkq.push(["identifyUser",n.ID,n.username])},clearedIdentity:function(){window._tkq.push(["clearIdentity"])}};e.exports=o}},n={};var t=function t(o){var r=n[o];if(void 0!==r)return r.exports;var i=n[o]={exports:{}};return e[o](i,i.exports,t),i.exports}(775);window.analytics=t})();
1
+ !function(){var e={775:function(e){let n;window._tkq=window._tkq||[];const t=console.error;const o={initialize:function(e,n){o.setUser(e,n),o.identifyUser()},mc:{bumpStat:function(e,n){const t=function(e,n){let t="";if("object"==typeof e)for(const n in e)t+="&x_"+encodeURIComponent(n)+"="+encodeURIComponent(e[n]);else t="&x_"+encodeURIComponent(e)+"="+encodeURIComponent(n);return t}(e,n);(new Image).src=document.location.protocol+"//pixel.wp.com/g.gif?v=wpcom-no-pv"+t+"&t="+Math.random()}},tracks:{recordEvent:function(e,n){n=n||{},0===e.indexOf("jetpack_")?window._tkq.push(["recordEvent",e,n]):t('- Event name must be prefixed by "jetpack_"')},recordPageView:function(e){o.tracks.recordEvent("jetpack_page_view",{path:e})}},setUser:function(e,t){n={ID:e,username:t}},identifyUser:function(){n&&window._tkq.push(["identifyUser",n.ID,n.username])},clearedIdentity:function(){window._tkq.push(["clearIdentity"])}};e.exports=o}},n={};var t=function t(o){var r=n[o];if(void 0!==r)return r.exports;var i=n[o]={exports:{}};return e[o](i,i.exports,t),i.exports}(775);window.analytics=t}();
jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php CHANGED
@@ -127,8 +127,7 @@ class Jetpack_Options {
127
  'partner_coupon', // (string) A Jetpack partner issued coupon to promote a sale together with Jetpack.
128
  'partner_coupon_added', // (string) A date for when `partner_coupon` was added, so we can auto-purge after a certain time interval.
129
  'dismissed_backup_review_restore', // (bool) Determines if the component review request is dismissed for successful restore requests.
130
- 'dismissed_backup_review_time_based', // (bool) Determines if the component review request is dismissed for subscription time based requests.
131
-
132
  );
133
  }
134
 
127
  'partner_coupon', // (string) A Jetpack partner issued coupon to promote a sale together with Jetpack.
128
  'partner_coupon_added', // (string) A date for when `partner_coupon` was added, so we can auto-purge after a certain time interval.
129
  'dismissed_backup_review_restore', // (bool) Determines if the component review request is dismissed for successful restore requests.
130
+ 'dismissed_backup_review_backups', // (bool) Determines if the component review request is dismissed for successful backup requests.
 
131
  );
132
  }
133
 
jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php CHANGED
@@ -710,7 +710,7 @@ class Error_Handler {
710
  }
711
 
712
  $body = json_decode( $body_raw, true );
713
- if ( empty( $body['error'] ) ) {
714
  return;
715
  }
716
 
710
  }
711
 
712
  $body = json_decode( $body_raw, true );
713
+ if ( empty( $body['error'] ) || ( ! is_string( $body['error'] ) && ! is_int( $body['error'] ) ) ) {
714
  return;
715
  }
716
 
jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php CHANGED
@@ -30,15 +30,15 @@ class Initial_State {
30
  global $wp_version;
31
 
32
  return array(
33
- 'apiRoot' => esc_url_raw( rest_url() ),
34
- 'apiNonce' => wp_create_nonce( 'wp_rest' ),
35
- 'registrationNonce' => wp_create_nonce( 'jetpack-registration-nonce' ),
36
- 'connectionStatus' => REST_Connector::connection_status( false ),
37
- 'userConnectionData' => REST_Connector::get_user_connection_data( false ),
38
- 'connectedPlugins' => REST_Connector::get_connection_plugins( false ),
39
- 'wpVersion' => $wp_version,
40
- 'siteSuffix' => ( new Status() )->get_site_suffix(),
41
- 'connectionVerifiedErrors' => Error_Handler::get_instance()->get_verified_errors(),
42
  );
43
  }
44
 
30
  global $wp_version;
31
 
32
  return array(
33
+ 'apiRoot' => esc_url_raw( rest_url() ),
34
+ 'apiNonce' => wp_create_nonce( 'wp_rest' ),
35
+ 'registrationNonce' => wp_create_nonce( 'jetpack-registration-nonce' ),
36
+ 'connectionStatus' => REST_Connector::connection_status( false ),
37
+ 'userConnectionData' => REST_Connector::get_user_connection_data( false ),
38
+ 'connectedPlugins' => REST_Connector::get_connection_plugins( false ),
39
+ 'wpVersion' => $wp_version,
40
+ 'siteSuffix' => ( new Status() )->get_site_suffix(),
41
+ 'connectionErrors' => Error_Handler::get_instance()->get_verified_errors(),
42
  );
43
  }
44
 
jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php CHANGED
@@ -12,7 +12,7 @@ namespace Automattic\Jetpack\Connection;
12
  */
13
  class Package_Version {
14
 
15
- const PACKAGE_VERSION = '1.44.0';
16
 
17
  const PACKAGE_SLUG = 'connection';
18
 
12
  */
13
  class Package_Version {
14
 
15
+ const PACKAGE_VERSION = '1.45.2';
16
 
17
  const PACKAGE_SLUG = 'connection';
18
 
jetpack_vendor/i18n-map.php CHANGED
@@ -10,7 +10,7 @@ return array(
10
  ),
11
  'jetpack-connection' => array(
12
  'path' => 'jetpack_vendor/automattic/jetpack-connection',
13
- 'ver' => '1.44.0',
14
  ),
15
  'jetpack-password-checker' => array(
16
  'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
@@ -76,21 +76,21 @@ return array(
76
  'path' => 'jetpack_vendor/automattic/jetpack-publicize',
77
  'ver' => '0.12.1',
78
  ),
79
- 'jetpack-search-pkg' => array(
80
- 'path' => 'jetpack_vendor/automattic/jetpack-search',
81
- 'ver' => '0.21.1',
82
- ),
83
  'jetpack-waf' => array(
84
  'path' => 'jetpack_vendor/automattic/jetpack-waf',
85
  'ver' => '0.6.5',
86
  ),
87
- 'jetpack-videopress-pkg' => array(
88
- 'path' => 'jetpack_vendor/automattic/jetpack-videopress',
89
- 'ver' => '0.2.1',
90
- ),
91
  'jetpack-wordads' => array(
92
  'path' => 'jetpack_vendor/automattic/jetpack-wordads',
93
  'ver' => '0.2.13',
94
  ),
 
 
 
 
 
 
 
 
95
  ),
96
  );
10
  ),
11
  'jetpack-connection' => array(
12
  'path' => 'jetpack_vendor/automattic/jetpack-connection',
13
+ 'ver' => '1.45.2',
14
  ),
15
  'jetpack-password-checker' => array(
16
  'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
76
  'path' => 'jetpack_vendor/automattic/jetpack-publicize',
77
  'ver' => '0.12.1',
78
  ),
 
 
 
 
79
  'jetpack-waf' => array(
80
  'path' => 'jetpack_vendor/automattic/jetpack-waf',
81
  'ver' => '0.6.5',
82
  ),
 
 
 
 
83
  'jetpack-wordads' => array(
84
  'path' => 'jetpack_vendor/automattic/jetpack-wordads',
85
  'ver' => '0.2.13',
86
  ),
87
+ 'jetpack-search-pkg' => array(
88
+ 'path' => 'jetpack_vendor/automattic/jetpack-search',
89
+ 'ver' => '0.21.1',
90
+ ),
91
+ 'jetpack-videopress-pkg' => array(
92
+ 'path' => 'jetpack_vendor/automattic/jetpack-videopress',
93
+ 'ver' => '0.2.1',
94
+ ),
95
  ),
96
  );
modules/google-fonts.php CHANGED
@@ -104,4 +104,7 @@ add_action( 'after_setup_theme', 'jetpack_add_google_fonts_provider' );
104
 
105
  add_filter( 'wp_resource_hints', '\Automattic\Jetpack\Fonts\Utils::font_source_resource_hint', 10, 2 );
106
  add_filter( 'pre_render_block', '\Automattic\Jetpack\Fonts\Introspectors\Blocks::enqueue_block_fonts', 10, 2 );
107
- add_action( 'init', '\Automattic\Jetpack\Fonts\Introspectors\Global_Styles::enqueue_global_styles_fonts' );
 
 
 
104
 
105
  add_filter( 'wp_resource_hints', '\Automattic\Jetpack\Fonts\Utils::font_source_resource_hint', 10, 2 );
106
  add_filter( 'pre_render_block', '\Automattic\Jetpack\Fonts\Introspectors\Blocks::enqueue_block_fonts', 10, 2 );
107
+ // The priority for the next hook is is set to 22 because it needs to run after Gutenberg's
108
+ // re-registration (at priority 22) of the core blocks it de-registers (at the default priority 10),
109
+ // otherwise Gutenberg caches an incorrect state.
110
+ add_action( 'init', '\Automattic\Jetpack\Fonts\Introspectors\Global_Styles::enqueue_global_styles_fonts', 22 );
readme.txt CHANGED
@@ -1,7 +1,7 @@
1
  === Jetpack - WP Security, Backup, Speed, & Growth ===
2
  Contributors: automattic, adamkheckler, adrianmoldovanwp, aduth, akirk, allendav, alternatekev, andy, annamcphee, annezazu, apeatling, arcangelini, azaozz, batmoo, barry, beaulebens, biskobe, blobaugh, bjorsch, brbrr, cainm, cena, cfinke, chaselivingston, chellycat, clickysteve, csonnek, danielbachhuber, davoraltman, daniloercoli, delawski, designsimply, dllh, drawmyface, dsmart, dzver, ebinnion, egregor, eliorivero, enej, eoigal, erania-pinnera, ethitter, fgiannar, gcorne, georgestephanis, gibrown, goldsounds, hew, hugobaeta, hypertextranch, iammattthomas, iandunn, jblz, jasmussen, jeffgolenski, jeherve, jenhooks, jenia, jessefriedman, jgs, jkudish, jmdodd, joanrho, johnjamesjacoby, jshreve, kbrownkd, keoshi, koke, kraftbj, lancewillett, leogermani, lschuyler, macmanx, martinremy, matt, matveb, mattwiebe, maverick3x6, mcsf, mdawaffe, mdbitz, MichaelArestad, migueluy, mikeyarce, mkaz, nancythanki, nickmomrik, obenland, oskosk, pento, professor44, rachelsquirrel, rdcoll, ryancowles, richardmuscat, richardmtl, robertbpugh, roccotripaldi, samhotchkiss, samiff, scarstocea, scottsweb, sdixon194, sdquirk, sermitr, simison, stephdau, tmoorewp, tyxla, Viper007Bond, westi, yoavf, zinigor
3
  Tags: Security, backup, Woo, malware, scan, spam, CDN, search, social
4
- Stable tag: 11.3.1
5
  Requires at least: 5.9
6
  Requires PHP: 5.6
7
  Tested up to: 6.0
@@ -242,9 +242,12 @@ Jetpack Backup can do a full website migration to a new host, migrate theme file
242
  4. Promote your newest posts, pages, and products across your social media channels.
243
 
244
  == Changelog ==
245
- ### 11.3.1 - 2022-09-08
246
  #### Improved compatibility
247
- - Notifications: improve third-party cookie check to work with modsecurity rules.
 
 
 
248
 
249
  --------
250
 
1
  === Jetpack - WP Security, Backup, Speed, & Growth ===
2
  Contributors: automattic, adamkheckler, adrianmoldovanwp, aduth, akirk, allendav, alternatekev, andy, annamcphee, annezazu, apeatling, arcangelini, azaozz, batmoo, barry, beaulebens, biskobe, blobaugh, bjorsch, brbrr, cainm, cena, cfinke, chaselivingston, chellycat, clickysteve, csonnek, danielbachhuber, davoraltman, daniloercoli, delawski, designsimply, dllh, drawmyface, dsmart, dzver, ebinnion, egregor, eliorivero, enej, eoigal, erania-pinnera, ethitter, fgiannar, gcorne, georgestephanis, gibrown, goldsounds, hew, hugobaeta, hypertextranch, iammattthomas, iandunn, jblz, jasmussen, jeffgolenski, jeherve, jenhooks, jenia, jessefriedman, jgs, jkudish, jmdodd, joanrho, johnjamesjacoby, jshreve, kbrownkd, keoshi, koke, kraftbj, lancewillett, leogermani, lschuyler, macmanx, martinremy, matt, matveb, mattwiebe, maverick3x6, mcsf, mdawaffe, mdbitz, MichaelArestad, migueluy, mikeyarce, mkaz, nancythanki, nickmomrik, obenland, oskosk, pento, professor44, rachelsquirrel, rdcoll, ryancowles, richardmuscat, richardmtl, robertbpugh, roccotripaldi, samhotchkiss, samiff, scarstocea, scottsweb, sdixon194, sdquirk, sermitr, simison, stephdau, tmoorewp, tyxla, Viper007Bond, westi, yoavf, zinigor
3
  Tags: Security, backup, Woo, malware, scan, spam, CDN, search, social
4
+ Stable tag: 11.3.2
5
  Requires at least: 5.9
6
  Requires PHP: 5.6
7
  Tested up to: 6.0
242
  4. Promote your newest posts, pages, and products across your social media channels.
243
 
244
  == Changelog ==
245
+ ### 11.3.2 - 2022-09-22
246
  #### Improved compatibility
247
+ - WC Pay: resolves issue for WooCommerce Payments that could result in a fatal for some sites on PHP 8+.
248
+
249
+ #### Bug fixes
250
+ - Set the `Automattic\JetpackFontsIntrospectorsGlobal_Styles::enqueue_global_styles_fonts` callback priority in the `init` hook to 22 to prevent it from causing style issues with sites that have Gutenberg > 13.5 activated.
251
 
252
  --------
253
 
vendor/autoload.php CHANGED
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
- return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1::getLoader();
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
+ return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2::getLoader();
vendor/autoload_packages.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1
6
  {
7
  private static $loader;
8
 
@@ -24,19 +24,19 @@ class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
- spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
- call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1::getInitializer($loader));
33
 
34
  $loader->setClassMapAuthoritative(true);
35
  $loader->register(true);
36
 
37
- $includeFiles = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1::$files;
38
  foreach ($includeFiles as $fileIdentifier => $file) {
39
- composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1($fileIdentifier, $file);
40
  }
41
 
42
  return $loader;
@@ -48,7 +48,7 @@ class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1
48
  * @param string $file
49
  * @return void
50
  */
51
- function composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1($fileIdentifier, $file)
52
  {
53
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
54
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
+ call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2::getInitializer($loader));
33
 
34
  $loader->setClassMapAuthoritative(true);
35
  $loader->register(true);
36
 
37
+ $includeFiles = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2::$files;
38
  foreach ($includeFiles as $fileIdentifier => $file) {
39
+ composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2($fileIdentifier, $file);
40
  }
41
 
42
  return $loader;
48
  * @param string $file
49
  * @return void
50
  */
51
+ function composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2($fileIdentifier, $file)
52
  {
53
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
54
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1
8
  {
9
  public static $files = array (
10
  '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
@@ -296,10 +296,10 @@ class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1
296
  public static function getInitializer(ClassLoader $loader)
297
  {
298
  return \Closure::bind(function () use ($loader) {
299
- $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1::$prefixLengthsPsr4;
300
- $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1::$prefixDirsPsr4;
301
- $loader->prefixesPsr0 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1::$prefixesPsr0;
302
- $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1::$classMap;
303
 
304
  }, null, ClassLoader::class);
305
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2
8
  {
9
  public static $files = array (
10
  '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
296
  public static function getInitializer(ClassLoader $loader)
297
  {
298
  return \Closure::bind(function () use ($loader) {
299
+ $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2::$prefixLengthsPsr4;
300
+ $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2::$prefixDirsPsr4;
301
+ $loader->prefixesPsr0 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2::$prefixesPsr0;
302
+ $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2::$classMap;
303
 
304
  }, null, ClassLoader::class);
305
  }
vendor/composer/installed.json CHANGED
@@ -530,17 +530,17 @@
530
  },
531
  {
532
  "name": "automattic/jetpack-connection",
533
- "version": "v1.44.0",
534
- "version_normalized": "1.44.0.0",
535
  "source": {
536
  "type": "git",
537
  "url": "https://github.com/Automattic/jetpack-connection.git",
538
- "reference": "a8b81b56f6656a89096a6259d94e34721506f6ea"
539
  },
540
  "dist": {
541
  "type": "zip",
542
- "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/a8b81b56f6656a89096a6259d94e34721506f6ea",
543
- "reference": "a8b81b56f6656a89096a6259d94e34721506f6ea",
544
  "shasum": ""
545
  },
546
  "require": {
@@ -557,7 +557,7 @@
557
  "brain/monkey": "2.6.1",
558
  "yoast/phpunit-polyfills": "1.0.3"
559
  },
560
- "time": "2022-08-29T23:18:07+00:00",
561
  "type": "jetpack-library",
562
  "extra": {
563
  "autotagger": true,
@@ -570,7 +570,7 @@
570
  "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}"
571
  },
572
  "branch-alias": {
573
- "dev-trunk": "1.44.x-dev"
574
  }
575
  },
576
  "installation-source": "dist",
@@ -587,7 +587,7 @@
587
  ],
588
  "description": "Everything needed to connect to the Jetpack infrastructure",
589
  "support": {
590
- "source": "https://github.com/Automattic/jetpack-connection/tree/v1.44.0"
591
  },
592
  "install-path": "../../jetpack_vendor/automattic/jetpack-connection"
593
  },
530
  },
531
  {
532
  "name": "automattic/jetpack-connection",
533
+ "version": "v1.45.2",
534
+ "version_normalized": "1.45.2.0",
535
  "source": {
536
  "type": "git",
537
  "url": "https://github.com/Automattic/jetpack-connection.git",
538
+ "reference": "01780a39cf8eb6ca75dc35a5cf9fbadfdbe8416d"
539
  },
540
  "dist": {
541
  "type": "zip",
542
+ "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/01780a39cf8eb6ca75dc35a5cf9fbadfdbe8416d",
543
+ "reference": "01780a39cf8eb6ca75dc35a5cf9fbadfdbe8416d",
544
  "shasum": ""
545
  },
546
  "require": {
557
  "brain/monkey": "2.6.1",
558
  "yoast/phpunit-polyfills": "1.0.3"
559
  },
560
+ "time": "2022-09-21T20:22:56+00:00",
561
  "type": "jetpack-library",
562
  "extra": {
563
  "autotagger": true,
570
  "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}"
571
  },
572
  "branch-alias": {
573
+ "dev-trunk": "1.45.x-dev"
574
  }
575
  },
576
  "installation-source": "dist",
587
  ],
588
  "description": "Everything needed to connect to the Jetpack infrastructure",
589
  "support": {
590
+ "source": "https://github.com/Automattic/jetpack-connection/tree/v1.45.2"
591
  },
592
  "install-path": "../../jetpack_vendor/automattic/jetpack-connection"
593
  },
vendor/composer/installed.php CHANGED
@@ -110,12 +110,12 @@
110
  'dev_requirement' => false,
111
  ),
112
  'automattic/jetpack-connection' => array(
113
- 'pretty_version' => 'v1.44.0',
114
- 'version' => '1.44.0.0',
115
  'type' => 'jetpack-library',
116
  'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection',
117
  'aliases' => array(),
118
- 'reference' => 'a8b81b56f6656a89096a6259d94e34721506f6ea',
119
  'dev_requirement' => false,
120
  ),
121
  'automattic/jetpack-connection-ui' => array(
110
  'dev_requirement' => false,
111
  ),
112
  'automattic/jetpack-connection' => array(
113
+ 'pretty_version' => 'v1.45.2',
114
+ 'version' => '1.45.2.0',
115
  'type' => 'jetpack-library',
116
  'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection',
117
  'aliases' => array(),
118
+ 'reference' => '01780a39cf8eb6ca75dc35a5cf9fbadfdbe8416d',
119
  'dev_requirement' => false,
120
  ),
121
  'automattic/jetpack-connection-ui' => array(
vendor/composer/jetpack_autoload_classmap.php CHANGED
@@ -831,127 +831,127 @@ return array(
831
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php'
832
  ),
833
  'Jetpack_IXR_ClientMulticall' => array(
834
- 'version' => '1.44.0.0',
835
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php'
836
  ),
837
  'Jetpack_Options' => array(
838
- 'version' => '1.44.0.0',
839
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php'
840
  ),
841
  'Jetpack_Tracks_Event' => array(
842
- 'version' => '1.44.0.0',
843
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php'
844
  ),
845
  'Jetpack_Tracks_Client' => array(
846
- 'version' => '1.44.0.0',
847
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php'
848
  ),
849
  'Jetpack_IXR_Client' => array(
850
- 'version' => '1.44.0.0',
851
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php'
852
  ),
853
  'Jetpack_XMLRPC_Server' => array(
854
- 'version' => '1.44.0.0',
855
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php'
856
  ),
857
  'Jetpack_Signature' => array(
858
- 'version' => '1.44.0.0',
859
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php'
860
  ),
861
  'Automattic\\Jetpack\\Connection\\Package_Version' => array(
862
- 'version' => '1.44.0.0',
863
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php'
864
  ),
865
  'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array(
866
- 'version' => '1.44.0.0',
867
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php'
868
  ),
869
  'Automattic\\Jetpack\\Connection\\Secrets' => array(
870
- 'version' => '1.44.0.0',
871
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php'
872
  ),
873
  'Automattic\\Jetpack\\Connection\\Manager_Interface' => array(
874
- 'version' => '1.44.0.0',
875
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php'
876
  ),
877
  'Automattic\\Jetpack\\Connection\\Manager' => array(
878
- 'version' => '1.44.0.0',
879
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php'
880
  ),
881
  'Automattic\\Jetpack\\Connection\\Tokens' => array(
882
- 'version' => '1.44.0.0',
883
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php'
884
  ),
885
  'Automattic\\Jetpack\\Connection\\Client' => array(
886
- 'version' => '1.44.0.0',
887
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php'
888
  ),
889
  'Automattic\\Jetpack\\Heartbeat' => array(
890
- 'version' => '1.44.0.0',
891
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php'
892
  ),
893
  'Automattic\\Jetpack\\Connection\\Plugin' => array(
894
- 'version' => '1.44.0.0',
895
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php'
896
  ),
897
  'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array(
898
- 'version' => '1.44.0.0',
899
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php'
900
  ),
901
  'Automattic\\Jetpack\\Connection\\REST_Connector' => array(
902
- 'version' => '1.44.0.0',
903
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php'
904
  ),
905
  'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array(
906
- 'version' => '1.44.0.0',
907
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php'
908
  ),
909
  'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array(
910
- 'version' => '1.44.0.0',
911
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php'
912
  ),
913
  'Automattic\\Jetpack\\Terms_Of_Service' => array(
914
- 'version' => '1.44.0.0',
915
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php'
916
  ),
917
  'Automattic\\Jetpack\\Connection\\Webhooks' => array(
918
- 'version' => '1.44.0.0',
919
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php'
920
  ),
921
  'Automattic\\Jetpack\\Tracking' => array(
922
- 'version' => '1.44.0.0',
923
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php'
924
  ),
925
  'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array(
926
- 'version' => '1.44.0.0',
927
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php'
928
  ),
929
  'Automattic\\Jetpack\\Connection\\Urls' => array(
930
- 'version' => '1.44.0.0',
931
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php'
932
  ),
933
  'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array(
934
- 'version' => '1.44.0.0',
935
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php'
936
  ),
937
  'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array(
938
- 'version' => '1.44.0.0',
939
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php'
940
  ),
941
  'Automattic\\Jetpack\\Connection\\Initial_State' => array(
942
- 'version' => '1.44.0.0',
943
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php'
944
  ),
945
  'Automattic\\Jetpack\\Connection\\Utils' => array(
946
- 'version' => '1.44.0.0',
947
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php'
948
  ),
949
  'Automattic\\Jetpack\\Connection\\Error_Handler' => array(
950
- 'version' => '1.44.0.0',
951
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php'
952
  ),
953
  'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array(
954
- 'version' => '1.44.0.0',
955
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php'
956
  ),
957
  'Automattic\\Jetpack\\Roles' => array(
831
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php'
832
  ),
833
  'Jetpack_IXR_ClientMulticall' => array(
834
+ 'version' => '1.45.2.0',
835
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php'
836
  ),
837
  'Jetpack_Options' => array(
838
+ 'version' => '1.45.2.0',
839
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php'
840
  ),
841
  'Jetpack_Tracks_Event' => array(
842
+ 'version' => '1.45.2.0',
843
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php'
844
  ),
845
  'Jetpack_Tracks_Client' => array(
846
+ 'version' => '1.45.2.0',
847
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php'
848
  ),
849
  'Jetpack_IXR_Client' => array(
850
+ 'version' => '1.45.2.0',
851
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php'
852
  ),
853
  'Jetpack_XMLRPC_Server' => array(
854
+ 'version' => '1.45.2.0',
855
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php'
856
  ),
857
  'Jetpack_Signature' => array(
858
+ 'version' => '1.45.2.0',
859
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php'
860
  ),
861
  'Automattic\\Jetpack\\Connection\\Package_Version' => array(
862
+ 'version' => '1.45.2.0',
863
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php'
864
  ),
865
  'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array(
866
+ 'version' => '1.45.2.0',
867
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php'
868
  ),
869
  'Automattic\\Jetpack\\Connection\\Secrets' => array(
870
+ 'version' => '1.45.2.0',
871
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php'
872
  ),
873
  'Automattic\\Jetpack\\Connection\\Manager_Interface' => array(
874
+ 'version' => '1.45.2.0',
875
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php'
876
  ),
877
  'Automattic\\Jetpack\\Connection\\Manager' => array(
878
+ 'version' => '1.45.2.0',
879
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php'
880
  ),
881
  'Automattic\\Jetpack\\Connection\\Tokens' => array(
882
+ 'version' => '1.45.2.0',
883
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php'
884
  ),
885
  'Automattic\\Jetpack\\Connection\\Client' => array(
886
+ 'version' => '1.45.2.0',
887
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php'
888
  ),
889
  'Automattic\\Jetpack\\Heartbeat' => array(
890
+ 'version' => '1.45.2.0',
891
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php'
892
  ),
893
  'Automattic\\Jetpack\\Connection\\Plugin' => array(
894
+ 'version' => '1.45.2.0',
895
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php'
896
  ),
897
  'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array(
898
+ 'version' => '1.45.2.0',
899
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php'
900
  ),
901
  'Automattic\\Jetpack\\Connection\\REST_Connector' => array(
902
+ 'version' => '1.45.2.0',
903
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php'
904
  ),
905
  'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array(
906
+ 'version' => '1.45.2.0',
907
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php'
908
  ),
909
  'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array(
910
+ 'version' => '1.45.2.0',
911
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php'
912
  ),
913
  'Automattic\\Jetpack\\Terms_Of_Service' => array(
914
+ 'version' => '1.45.2.0',
915
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php'
916
  ),
917
  'Automattic\\Jetpack\\Connection\\Webhooks' => array(
918
+ 'version' => '1.45.2.0',
919
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php'
920
  ),
921
  'Automattic\\Jetpack\\Tracking' => array(
922
+ 'version' => '1.45.2.0',
923
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php'
924
  ),
925
  'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array(
926
+ 'version' => '1.45.2.0',
927
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php'
928
  ),
929
  'Automattic\\Jetpack\\Connection\\Urls' => array(
930
+ 'version' => '1.45.2.0',
931
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php'
932
  ),
933
  'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array(
934
+ 'version' => '1.45.2.0',
935
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php'
936
  ),
937
  'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array(
938
+ 'version' => '1.45.2.0',
939
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php'
940
  ),
941
  'Automattic\\Jetpack\\Connection\\Initial_State' => array(
942
+ 'version' => '1.45.2.0',
943
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php'
944
  ),
945
  'Automattic\\Jetpack\\Connection\\Utils' => array(
946
+ 'version' => '1.45.2.0',
947
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php'
948
  ),
949
  'Automattic\\Jetpack\\Connection\\Error_Handler' => array(
950
+ 'version' => '1.45.2.0',
951
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php'
952
  ),
953
  'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array(
954
+ 'version' => '1.45.2.0',
955
  'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php'
956
  ),
957
  'Automattic\\Jetpack\\Roles' => array(
vendor/jetpack-autoloader/class-autoloader-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-autoloader-locator.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-autoloader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-container.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-hook-manager.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-latest-autoloader-guard.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-manifest-reader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-path-processor.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-php-autoloader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-plugin-locator.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-plugins-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-shutdown-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-version-loader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-version-selector.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_2;
9
 
10
  // phpcs:ignore
11