Skip to content

Commit

Permalink
Update Jetpack plugin from 12.6.1 to 12.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bitpoke-bot committed Sep 28, 2023
1 parent f02e203 commit e23936f
Show file tree
Hide file tree
Showing 29 changed files with 64 additions and 53 deletions.
5 changes: 5 additions & 0 deletions wp-content/plugins/jetpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

### This is a list detailing changes for all Jetpack releases.

## 12.6.2 - 2023-09-27
### Bug fixes
- Fix erroneous path check in Jetpack_Gutenberg class [#33318]
- Fix warning about Dashboard being unset in WooCommerce analytics class [#33343]

## 12.6.1 - 2023-09-21
### Bug Fixes
- WooCommerce Analytics: fix a fatal error that can occur with WooCommerce enabled.
Expand Down
2 changes: 1 addition & 1 deletion wp-content/plugins/jetpack/class.jetpack-gutenberg.php
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ public static function load_assets_as_required( $type, $script_dependencies = ar
}

// Retrieve the feature from block.json if a path is passed.
if ( '/' === substr( $type, 0, 1 ) ) {
if ( path_is_absolute( $type ) ) {
$metadata = Blocks::get_block_metadata_from_file( Blocks::get_path_to_block_metadata( $type ) );
$feature = Blocks::get_block_feature_from_metadata( $metadata );

Expand Down
4 changes: 2 additions & 2 deletions wp-content/plugins/jetpack/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"automattic/jetpack-autoloader": "^2.11.23",
"automattic/jetpack-backup": "^1.17.6",
"automattic/jetpack-blaze": "^0.10.2",
"automattic/jetpack-blocks": "^1.6.0",
"automattic/jetpack-blocks": "^1.6.1",
"automattic/jetpack-boost-speed-score": "^0.2.2",
"automattic/jetpack-compat": "^1.7.7",
"automattic/jetpack-composer-plugin": "^1.1.14",
Expand Down Expand Up @@ -96,7 +96,7 @@
"platform": {
"ext-intl": "0.0.0"
},
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1",
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2",
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
Expand Down
4 changes: 2 additions & 2 deletions wp-content/plugins/jetpack/jetpack.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin URI: https://jetpack.com
* Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
* Author: Automattic
* Version: 12.6.1
* Version: 12.6.2
* Author URI: https://jetpack.com
* License: GPL2+
* Text Domain: jetpack
Expand Down Expand Up @@ -34,7 +34,7 @@

define( 'JETPACK__MINIMUM_WP_VERSION', '6.2' );
define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
define( 'JETPACK__VERSION', '12.6.1' );
define( 'JETPACK__VERSION', '12.6.2' );

/**
* Constant used to fetch the connection owner token
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.1] - 2023-09-26
### Fixed
- Fix erroneous path check in Blocks class [#33318]

## [1.6.0] - 2023-09-19
### Added
- Add function to get path to block metadata file [#32698]
Expand Down Expand Up @@ -157,6 +161,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Blocks: introduce new package for block management

[1.6.1]: https://github.com/Automattic/jetpack-blocks/compare/v1.6.0...v1.6.1
[1.6.0]: https://github.com/Automattic/jetpack-blocks/compare/v1.5.0...v1.6.0
[1.5.0]: https://github.com/Automattic/jetpack-blocks/compare/v1.4.23...v1.5.0
[1.4.23]: https://github.com/Automattic/jetpack-blocks/compare/v1.4.22...v1.4.23
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Blocks {
public static function jetpack_register_block( $slug, $args = array() ) {
// Slug doesn't start with `jetpack/`, isn't an absolute path, or doesn't contain a slash
// (synonym of a namespace) at all.
if ( 0 !== strpos( $slug, 'jetpack/' ) && 0 !== strpos( $slug, '/' ) && ! strpos( $slug, '/' ) ) {
if ( 0 !== strpos( $slug, 'jetpack/' ) && ! path_is_absolute( $slug ) && ! strpos( $slug, '/' ) ) {
_doing_it_wrong( 'jetpack_register_block', 'Prefix the block with jetpack/ ', 'Jetpack 9.0.0' );
$slug = 'jetpack/' . $slug;
}
Expand All @@ -54,7 +54,7 @@ public static function jetpack_register_block( $slug, $args = array() ) {
// the block.
// Note: passing the path directly to register_block_type seems to loose the interactivity of
// the block once in the editor once it's out of focus.
if ( '/' === substr( $slug, 0, 1 ) ) {
if ( path_is_absolute( $slug ) ) {
$metadata = self::get_block_metadata_from_file( self::get_path_to_block_metadata( $slug ) );
$name = self::get_block_name_from_metadata( $metadata );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function track_tabs() {
continue;
}

if ( $core_endpoints['view-order'] === $key && is_numeric( $value ) ) {
if ( isset( $core_endpoints['view-order'] ) && $core_endpoints['view-order'] === $key && is_numeric( $value ) ) {
$initiator = get_query_var( '_wca_initiator' );
if ( 'number' === $initiator ) {
$this->record_event( 'woocommerceanalytics_my_account_order_number_click' );
Expand All @@ -82,7 +82,7 @@ public function track_tabs() {
}
}

if ( $core_endpoints['edit-address'] === $key && in_array( $value, array( 'billing', 'shipping' ), true ) ) {
if ( isset( $core_endpoints['edit-address'] ) && $core_endpoints['edit-address'] === $key && in_array( $value, array( 'billing', 'shipping' ), true ) ) {
$refer = wp_get_referer();
if ( $refer === wc_get_endpoint_url( 'edit-address', $value ) ) {
// It means we're likely coming from the same page after a failed save and don't want to retrigger the address click event.
Expand All @@ -93,12 +93,12 @@ public function track_tabs() {
continue;
}

if ( $core_endpoints['add-payment-method'] === $key ) {
if ( isset( $core_endpoints['add-payment-method'] ) && $core_endpoints['add-payment-method'] === $key ) {
$this->record_event( 'woocommerceanalytics_my_account_payment_add' );
continue;
}

if ( $core_endpoints['edit-address'] ) {
if ( isset( $core_endpoints['edit-address'] ) && $core_endpoints['edit-address'] ) {
$refer = wp_get_referer();
if ( $refer === wc_get_endpoint_url( 'edit-address', 'billing' ) || $refer === wc_get_endpoint_url( 'edit-address', 'shipping' ) ) {
// It means we're likely coming from the edit page save and don't want to retrigger the page view event.
Expand All @@ -117,7 +117,7 @@ public function track_tabs() {
* To avoid triggering the event twice, we skip the core one and only track the custom one.
* Tracking the custom endpoint is safer than hoping the duplicated, redundant core endpoint is always present.
*/
if ( $core_endpoints[ $key ] && $core_endpoints[ $key ] !== $key ) {
if ( isset( $core_endpoints[ $key ] ) && $core_endpoints[ $key ] !== $key ) {
continue;
}

Expand Down
9 changes: 5 additions & 4 deletions wp-content/plugins/jetpack/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=== Jetpack - WP Security, Backup, Speed, & Growth ===
Contributors: automattic, adamkheckler, adrianmoldovanwp, aduth, akirk, allendav, alternatekev, andy, annamcphee, annezazu, apeatling, arcangelini, azaozz, batmoo, barry, beaulebens, bindlegirl, 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, wpkaren, yoavf, zinigor
Tags: Security, backup, Woo, malware, scan, spam, CDN, search, social
Stable tag: 12.6.1
Stable tag: 12.6.2
Requires at least: 6.2
Requires PHP: 5.6
Tested up to: 6.3
Expand Down Expand Up @@ -293,9 +293,10 @@ Jetpack Backup can do a full website migration to a new host, migrate theme file


== Changelog ==
### 12.6.1 - 2023-09-21
#### Bug Fixes
- WooCommerce Analytics: fix a fatal error that can occur with WooCommerce enabled.
### 12.6.2 - 2023-09-27
#### Bug fixes
- Fix erroneous path check in Jetpack_Gutenberg class
- Fix warning about Dashboard being unset in WooCommerce analytics class

--------

Expand Down
2 changes: 1 addition & 1 deletion wp-content/plugins/jetpack/vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1::getLoader();
return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2::getLoader();
2 changes: 1 addition & 1 deletion wp-content/plugins/jetpack/vendor/autoload_packages.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
10 changes: 5 additions & 5 deletions wp-content/plugins/jetpack/vendor/composer/autoload_real.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// autoload_real.php @generated by Composer

class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1
class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2
{
private static $loader;

Expand All @@ -24,17 +24,17 @@ public static function getLoader()

require __DIR__ . '/platform_check.php';

spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2', 'loadClassLoader'));

require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2::getInitializer($loader));

$loader->setClassMapAuthoritative(true);
$loader->register(true);

$filesToLoad = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1::$files;
$filesToLoad = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2::$files;
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
Expand Down
10 changes: 5 additions & 5 deletions wp-content/plugins/jetpack/vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Composer\Autoload;

class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1
class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2
{
public static $files = array (
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
Expand Down Expand Up @@ -415,10 +415,10 @@ class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1::$prefixDirsPsr4;
$loader->prefixesPsr0 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1::$prefixesPsr0;
$loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2::$prefixDirsPsr4;
$loader->prefixesPsr0 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2::$prefixesPsr0;
$loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2::$classMap;

}, null, ClassLoader::class);
}
Expand Down
14 changes: 7 additions & 7 deletions wp-content/plugins/jetpack/vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -472,17 +472,17 @@
},
{
"name": "automattic/jetpack-blocks",
"version": "v1.6.0",
"version_normalized": "1.6.0.0",
"version": "v1.6.1",
"version_normalized": "1.6.1.0",
"source": {
"type": "git",
"url": "https://github.com/Automattic/jetpack-blocks.git",
"reference": "a592a52c7d1b10216f8b2c075bfd34d759ca53a5"
"reference": "adf664fc4ee8344e6dfe591cd53f00e300bdb27b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Automattic/jetpack-blocks/zipball/a592a52c7d1b10216f8b2c075bfd34d759ca53a5",
"reference": "a592a52c7d1b10216f8b2c075bfd34d759ca53a5",
"url": "https://api.github.com/repos/Automattic/jetpack-blocks/zipball/adf664fc4ee8344e6dfe591cd53f00e300bdb27b",
"reference": "adf664fc4ee8344e6dfe591cd53f00e300bdb27b",
"shasum": ""
},
"require": {
Expand All @@ -497,7 +497,7 @@
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"time": "2023-09-19T18:19:12+00:00",
"time": "2023-09-26T20:54:45+00:00",
"type": "jetpack-library",
"extra": {
"autotagger": true,
Expand All @@ -521,7 +521,7 @@
],
"description": "Register and manage blocks within a plugin. Used to manage block registration, enqueues, and more.",
"support": {
"source": "https://github.com/Automattic/jetpack-blocks/tree/v1.6.0"
"source": "https://github.com/Automattic/jetpack-blocks/tree/v1.6.1"
},
"install-path": "../../jetpack_vendor/automattic/jetpack-blocks"
},
Expand Down
6 changes: 3 additions & 3 deletions wp-content/plugins/jetpack/vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@
'dev_requirement' => false,
),
'automattic/jetpack-blocks' => array(
'pretty_version' => 'v1.6.0',
'version' => '1.6.0.0',
'reference' => 'a592a52c7d1b10216f8b2c075bfd34d759ca53a5',
'pretty_version' => 'v1.6.1',
'version' => '1.6.1.0',
'reference' => 'adf664fc4ee8344e6dfe591cd53f00e300bdb27b',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-blocks',
'aliases' => array(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-blaze/src/class-rest-controller.php'
),
'Automattic\\Jetpack\\Blocks' => array(
'version' => '1.6.0.0',
'version' => '1.6.1.0',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-blocks/src/class-blocks.php'
),
'Automattic\\Jetpack\\Boost_Core\\Contracts\\Boost_API_Client' => array(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_1;
namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ12_6_2;

// phpcs:ignore

Expand Down
Loading

0 comments on commit e23936f

Please sign in to comment.