Jetpack by WordPress.com - Version 11.3.1

Version Description

Download this release

Release Info

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

Code changes from version 11.3 to 11.3.1

CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
 
3
  ### This is a list detailing changes for all Jetpack releases.
4
 
 
 
 
 
5
  ## 11.3 - 2022-09-06
6
  ### Enhancements
7
  - General: enable the Post List package in Jetpack to display extra information alongside each post in wp-admin dashboard Posts screen. [#25301]
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]
8
+
9
  ## 11.3 - 2022-09-06
10
  ### Enhancements
11
  - General: enable the Post List package in Jetpack to display extra information alongside each post in wp-admin dashboard Posts screen. [#25301]
composer.json CHANGED
@@ -91,7 +91,7 @@
91
  "platform": {
92
  "ext-intl": "0.0.0"
93
  },
94
- "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3",
95
  "allow-plugins": {
96
  "automattic/jetpack-autoloader": true,
97
  "automattic/jetpack-composer-plugin": true
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
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
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' );
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.1
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.1' );
36
 
37
  /**
38
  * Constant used to fetch the connection owner token
jetpack_vendor/i18n-map.php CHANGED
@@ -24,6 +24,10 @@ return array(
24
  'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis',
25
  'ver' => '0.8.22',
26
  ),
 
 
 
 
27
  'jetpack-plugins-installer' => array(
28
  'path' => 'jetpack_vendor/automattic/jetpack-plugins-installer',
29
  'ver' => '0.2.0',
@@ -36,10 +40,6 @@ return array(
36
  'path' => 'jetpack_vendor/automattic/jetpack-jitm',
37
  'ver' => '2.2.26',
38
  ),
39
- 'jetpack-sync' => array(
40
- 'path' => 'jetpack_vendor/automattic/jetpack-sync',
41
- 'ver' => '1.38.2',
42
- ),
43
  'jetpack-my-jetpack' => array(
44
  'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack',
45
  'ver' => '2.0.3',
@@ -84,13 +84,13 @@ return array(
84
  'path' => 'jetpack_vendor/automattic/jetpack-waf',
85
  'ver' => '0.6.5',
86
  ),
87
- 'jetpack-wordads' => array(
88
- 'path' => 'jetpack_vendor/automattic/jetpack-wordads',
89
- 'ver' => '0.2.13',
90
- ),
91
  'jetpack-videopress-pkg' => array(
92
  'path' => 'jetpack_vendor/automattic/jetpack-videopress',
93
  'ver' => '0.2.1',
94
  ),
 
 
 
 
95
  ),
96
  );
24
  'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis',
25
  'ver' => '0.8.22',
26
  ),
27
+ 'jetpack-sync' => array(
28
+ 'path' => 'jetpack_vendor/automattic/jetpack-sync',
29
+ 'ver' => '1.38.2',
30
+ ),
31
  'jetpack-plugins-installer' => array(
32
  'path' => 'jetpack_vendor/automattic/jetpack-plugins-installer',
33
  'ver' => '0.2.0',
40
  'path' => 'jetpack_vendor/automattic/jetpack-jitm',
41
  'ver' => '2.2.26',
42
  ),
 
 
 
 
43
  'jetpack-my-jetpack' => array(
44
  'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack',
45
  'ver' => '2.0.3',
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
  );
modules/notes.php CHANGED
@@ -195,7 +195,7 @@ class Jetpack_Notifications {
195
  }
196
  }
197
 
198
- $third_party_cookie_check_iframe = '<iframe src="https://widgets.wp.com/3rd-party-cookie-check/index.html" style="display:none"></iframe>';
199
 
200
  $classes = 'wpnt-loading wpn-read';
201
  $wp_admin_bar->add_menu(
195
  }
196
  }
197
 
198
+ $third_party_cookie_check_iframe = '<span style="display:none;"><iframe class="jetpack-notes-cookie-check" src="https://widgets.wp.com/3rd-party-cookie-check/index.html"></iframe></span>';
199
 
200
  $classes = 'wpnt-loading wpn-read';
201
  $wp_admin_bar->add_menu(
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
5
  Requires at least: 5.9
6
  Requires PHP: 5.6
7
  Tested up to: 6.0
@@ -242,49 +242,9 @@ 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 - 2022-09-06
246
- #### Enhancements
247
- - Dashboard: add new card to highlight options available to WordPress agencies.
248
- - General: enable the Post List package in Jetpack to display extra information alongside each post in wp-admin dashboard Posts screen.
249
- - Google Analytics: add support for the DNT sent by the browser.
250
- - GSuite blocks (beta): add blocks for Google document embeds. Currently a JETPACK_BETA_BLOCKS feature.
251
- - Payments block: add a new `useWidth` hook to control the width settings of a block.
252
- - Payments block: add new container block to support using multiple inline Payment Button blocks.
253
- - Payments block: ensure the plan name field will update according to the other options selected, unless it's already been modified.
254
- - Payments Block: include 'earn' patterns in the block UI.
255
- - Payments block: use Block API v2 to simplify the overall markup.
256
- - VideoPress Block (beta): add support to pause/resume upload.
257
- - VideoPress block (beta): add support to pause/resume video upload.
258
-
259
  #### Improved compatibility
260
- - Backup: add disclaimer text and link to the backup product card that links to an FAQ on the Pricing page.
261
- - Jetpack: register VideoPress block from its editor.js file.
262
- - Jetpack: register VideoPress Video block from Jetpack plugin.
263
- - Notifications: do not attempt to display the Notifications panel when 3rd-party cookies are disabled in the browser.
264
- - Podcast Player: add support for podcast player to have per-feed cache timeouts.
265
- - Podcast Player block: set default RSS feed cache timeout for podcasts to 1 hour.
266
- - Publicize: replace Publicize with Jetpack Social.
267
- - SEO Tools: avoid conflicts with SEOPress and SEOKEY plugins.
268
- - VideoPress: minify videopress-token-bridge.
269
- - VideoPress: rely on videopress package for XMLRPC initialization.
270
- - VideoPress Block (beta): move VideoPress REST endpoint to package.
271
-
272
- #### Bug fixes
273
- - Calendly block: update the embed options link.
274
- - Carousel: ensure carousel still opens when clicking on a gallery image that has a figcaption with a link inside.
275
- - Carousel: ensure that clicks on rounded images in galleries will load a custom URL when it is specified.
276
- - Carousel: improve the logic for adding carousel data so we can handle reusable blocks correctly.
277
- - Carousel: remove errant '<' character being displayed.
278
- - Carousel: resolve a PHP warning when non-attachments are processed.
279
- - Dashboard: avoid displaying a blank dashboard page for editors when the site owner has an unused license.
280
- - Dashboard Widget: do not show the stats configuration links when the feature is inactive.
281
- - Subscriptions Block: fix input and submit button coupling for Safari when split style is selected.
282
- - Subscriptions Block: fix subscriber count display when padding dimension is added.
283
- - Subscriptions Block: remove inline styles from subscription notification.
284
- - Tiled Gallery: ensure the link to the original image URL is used when linking to media files.
285
- - VideoPress: fix a js error when closing a non-VideoPress video modal in the Media Library.
286
- - VideoPress: remove inclusion of modules/videopress/utility-functions.php from Jetpack shortcodes module to prevent errors.
287
- - WordPress.com REST API: add missing site owner id to single site REST API response.
288
 
289
  --------
290
 
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
  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
 
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::getLoader();
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
+ return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1::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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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
6
  {
7
  private static $loader;
8
 
@@ -24,19 +24,19 @@ class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
- spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
- call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3::getInitializer($loader));
33
 
34
  $loader->setClassMapAuthoritative(true);
35
  $loader->register(true);
36
 
37
- $includeFiles = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3::$files;
38
  foreach ($includeFiles as $fileIdentifier => $file) {
39
- composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3($fileIdentifier, $file);
40
  }
41
 
42
  return $loader;
@@ -48,7 +48,7 @@ class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3
48
  * @param string $file
49
  * @return void
50
  */
51
- function composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3($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_1
6
  {
7
  private static $loader;
8
 
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
  * @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;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3
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
296
  public static function getInitializer(ClassLoader $loader)
297
  {
298
  return \Closure::bind(function () use ($loader) {
299
- $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3::$prefixLengthsPsr4;
300
- $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3::$prefixDirsPsr4;
301
- $loader->prefixesPsr0 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3::$prefixesPsr0;
302
- $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3::$classMap;
303
 
304
  }, null, ClassLoader::class);
305
  }
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
  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
  }
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
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;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ11_3_1;
9
 
10
  // phpcs:ignore
11