Merged in feature/117-dev-dev01 (pull request #8)
auto-patch 117-dev-dev01-2023-12-15T16_09_06 * auto-patch 117-dev-dev01-2023-12-15T16_09_06
This commit is contained in:
@@ -22,4 +22,4 @@ if (PHP_VERSION_ID < 50600) {
|
||||
|
||||
require_once __DIR__ . '/composer/autoload_real.php';
|
||||
|
||||
return ComposerAutoloaderInitbfd39cb280a7918f42140da76d572201::getLoader();
|
||||
return ComposerAutoloaderInit38946ab8ac8f160ec94a4d2f32c752a2::getLoader();
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ namespace Automattic\Jetpack\Admin_UI;
|
||||
*/
|
||||
class Admin_Menu {
|
||||
|
||||
const PACKAGE_VERSION = '0.2.23';
|
||||
const PACKAGE_VERSION = '0.2.25';
|
||||
|
||||
/**
|
||||
* Whether this class has been initialized
|
||||
@@ -49,7 +49,7 @@ class Admin_Menu {
|
||||
* we use this method to move the menu item.
|
||||
*/
|
||||
private static function handle_akismet_menu() {
|
||||
if ( ! class_exists( 'Jetpack' ) && class_exists( 'Akismet_Admin' ) ) {
|
||||
if ( class_exists( 'Akismet_Admin' ) ) {
|
||||
// Prevent Akismet from adding a menu item.
|
||||
add_action(
|
||||
'admin_menu',
|
||||
|
||||
@@ -1 +1 @@
|
||||
<?php return array('dependencies' => array(), 'version' => 'a96178e4d62fb695caa0');
|
||||
<?php return array('dependencies' => array(), 'version' => 'd9dbf909a3d10fb26f39');
|
||||
|
||||
@@ -1 +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}();
|
||||
(()=>{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})();
|
||||
@@ -1916,6 +1916,7 @@ class Manager {
|
||||
'site_created' => $this->get_assumed_site_creation_date(),
|
||||
'allow_site_connection' => ! $this->has_connected_owner(),
|
||||
'calypso_env' => ( new Host() )->get_calypso_env(),
|
||||
'source' => ( new Host() )->get_source_query(),
|
||||
)
|
||||
);
|
||||
|
||||
@@ -2558,4 +2559,18 @@ class Manager {
|
||||
}
|
||||
return (int) $site_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if Jetpack is ready for uninstall cleanup.
|
||||
*
|
||||
* @param string $current_plugin_slug The current plugin's slug.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public static function is_ready_for_cleanup( $current_plugin_slug ) {
|
||||
$active_plugins = get_option( Plugin_Storage::ACTIVE_PLUGINS_OPTION_NAME );
|
||||
|
||||
return empty( $active_plugins ) || ! is_array( $active_plugins )
|
||||
|| ( count( $active_plugins ) === 1 && array_key_exists( $current_plugin_slug, $active_plugins ) );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Automattic\Jetpack\Connection;
|
||||
*/
|
||||
class Package_Version {
|
||||
|
||||
const PACKAGE_VERSION = '1.58.1';
|
||||
const PACKAGE_VERSION = '1.60.1';
|
||||
|
||||
const PACKAGE_SLUG = 'connection';
|
||||
|
||||
|
||||
@@ -90,6 +90,7 @@ class Urls {
|
||||
$option_key = self::HTTPS_CHECK_OPTION_PREFIX . $callable;
|
||||
|
||||
$parsed_url = wp_parse_url( $new_value );
|
||||
|
||||
if ( ! $parsed_url ) {
|
||||
return $new_value;
|
||||
}
|
||||
@@ -98,7 +99,12 @@ class Urls {
|
||||
} else {
|
||||
$scheme = '';
|
||||
}
|
||||
$scheme_history = get_option( $option_key, array() );
|
||||
$scheme_history = get_option( $option_key, array() );
|
||||
|
||||
if ( ! is_array( $scheme_history ) ) {
|
||||
$scheme_history = array();
|
||||
}
|
||||
|
||||
$scheme_history[] = $scheme;
|
||||
|
||||
// Limit length to self::HTTPS_CHECK_HISTORY.
|
||||
|
||||
@@ -119,4 +119,19 @@ class Host {
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
/**
|
||||
* Return source query param value from the URL if exists in the allowed sources list.
|
||||
*
|
||||
* @return string "source" query param value
|
||||
*/
|
||||
public function get_source_query() {
|
||||
// phpcs:disable WordPress.Security.NonceVerification.Recommended
|
||||
$allowed_sources = array( 'jetpack-manage' );
|
||||
if ( isset( $_GET['source'] ) && in_array( $_GET['source'], $allowed_sources, true ) ) {
|
||||
return sanitize_key( $_GET['source'] );
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInitbfd39cb280a7918f42140da76d572201
|
||||
class ComposerAutoloaderInit38946ab8ac8f160ec94a4d2f32c752a2
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
@@ -22,16 +22,16 @@ class ComposerAutoloaderInitbfd39cb280a7918f42140da76d572201
|
||||
return self::$loader;
|
||||
}
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInitbfd39cb280a7918f42140da76d572201', 'loadClassLoader'), true, true);
|
||||
spl_autoload_register(array('ComposerAutoloaderInit38946ab8ac8f160ec94a4d2f32c752a2', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInitbfd39cb280a7918f42140da76d572201', 'loadClassLoader'));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInit38946ab8ac8f160ec94a4d2f32c752a2', 'loadClassLoader'));
|
||||
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInitbfd39cb280a7918f42140da76d572201::getInitializer($loader));
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInit38946ab8ac8f160ec94a4d2f32c752a2::getInitializer($loader));
|
||||
|
||||
$loader->register(true);
|
||||
|
||||
$filesToLoad = \Composer\Autoload\ComposerStaticInitbfd39cb280a7918f42140da76d572201::$files;
|
||||
$filesToLoad = \Composer\Autoload\ComposerStaticInit38946ab8ac8f160ec94a4d2f32c752a2::$files;
|
||||
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
|
||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInitbfd39cb280a7918f42140da76d572201
|
||||
class ComposerStaticInit38946ab8ac8f160ec94a4d2f32c752a2
|
||||
{
|
||||
public static $files = array (
|
||||
'fcd5d7d87e03ff4f5b5a66c2b8968671' => __DIR__ . '/../..' . '/src/StoreApi/deprecated.php',
|
||||
@@ -99,9 +99,9 @@ class ComposerStaticInitbfd39cb280a7918f42140da76d572201
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitbfd39cb280a7918f42140da76d572201::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitbfd39cb280a7918f42140da76d572201::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitbfd39cb280a7918f42140da76d572201::$classMap;
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInit38946ab8ac8f160ec94a4d2f32c752a2::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInit38946ab8ac8f160ec94a4d2f32c752a2::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInit38946ab8ac8f160ec94a4d2f32c752a2::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
|
||||
@@ -52,21 +52,21 @@
|
||||
},
|
||||
{
|
||||
"name": "automattic/jetpack-admin-ui",
|
||||
"version": "v0.2.23",
|
||||
"version_normalized": "0.2.23.0",
|
||||
"version": "v0.2.25",
|
||||
"version_normalized": "0.2.25.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Automattic/jetpack-admin-ui.git",
|
||||
"reference": "2684f3ee3b458074d95e727e70ae994802501688"
|
||||
"reference": "d9566f47ab310d675779273eeead6d0ca64fff82"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Automattic/jetpack-admin-ui/zipball/2684f3ee3b458074d95e727e70ae994802501688",
|
||||
"reference": "2684f3ee3b458074d95e727e70ae994802501688",
|
||||
"url": "https://api.github.com/repos/Automattic/jetpack-admin-ui/zipball/d9566f47ab310d675779273eeead6d0ca64fff82",
|
||||
"reference": "d9566f47ab310d675779273eeead6d0ca64fff82",
|
||||
"shasum": ""
|
||||
},
|
||||
"require-dev": {
|
||||
"automattic/jetpack-changelogger": "^3.3.9",
|
||||
"automattic/jetpack-changelogger": "^3.3.11",
|
||||
"automattic/jetpack-logo": "^1.6.3",
|
||||
"automattic/wordbless": "dev-master",
|
||||
"yoast/phpunit-polyfills": "1.1.0"
|
||||
@@ -74,7 +74,7 @@
|
||||
"suggest": {
|
||||
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
|
||||
},
|
||||
"time": "2023-09-19T18:19:10+00:00",
|
||||
"time": "2023-11-14T16:36:17+00:00",
|
||||
"type": "jetpack-library",
|
||||
"extra": {
|
||||
"autotagger": true,
|
||||
@@ -102,7 +102,7 @@
|
||||
],
|
||||
"description": "Generic Jetpack wp-admin UI elements",
|
||||
"support": {
|
||||
"source": "https://github.com/Automattic/jetpack-admin-ui/tree/v0.2.23"
|
||||
"source": "https://github.com/Automattic/jetpack-admin-ui/tree/v0.2.25"
|
||||
},
|
||||
"install-path": "../automattic/jetpack-admin-ui"
|
||||
},
|
||||
@@ -223,26 +223,26 @@
|
||||
},
|
||||
{
|
||||
"name": "automattic/jetpack-connection",
|
||||
"version": "v1.58.1",
|
||||
"version_normalized": "1.58.1.0",
|
||||
"version": "v1.60.1",
|
||||
"version_normalized": "1.60.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Automattic/jetpack-connection.git",
|
||||
"reference": "f578d8fe7ef6fdb9ecd60c64645cac8bc6809a89"
|
||||
"reference": "fc99f0a4d8839b69341a25f9059b872d426f3e9d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/f578d8fe7ef6fdb9ecd60c64645cac8bc6809a89",
|
||||
"reference": "f578d8fe7ef6fdb9ecd60c64645cac8bc6809a89",
|
||||
"url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/fc99f0a4d8839b69341a25f9059b872d426f3e9d",
|
||||
"reference": "fc99f0a4d8839b69341a25f9059b872d426f3e9d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"automattic/jetpack-a8c-mc-stats": "^1.4.22",
|
||||
"automattic/jetpack-admin-ui": "^0.2.23",
|
||||
"automattic/jetpack-admin-ui": "^0.2.25",
|
||||
"automattic/jetpack-constants": "^1.6.23",
|
||||
"automattic/jetpack-redirect": "^1.7.27",
|
||||
"automattic/jetpack-roles": "^1.4.25",
|
||||
"automattic/jetpack-status": "^1.18.5"
|
||||
"automattic/jetpack-status": "^1.19.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"automattic/jetpack-changelogger": "^3.3.11",
|
||||
@@ -253,7 +253,7 @@
|
||||
"suggest": {
|
||||
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
|
||||
},
|
||||
"time": "2023-10-10T18:50:27+00:00",
|
||||
"time": "2023-11-14T16:36:48+00:00",
|
||||
"type": "jetpack-library",
|
||||
"extra": {
|
||||
"autotagger": true,
|
||||
@@ -266,7 +266,7 @@
|
||||
"link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}"
|
||||
},
|
||||
"branch-alias": {
|
||||
"dev-trunk": "1.58.x-dev"
|
||||
"dev-trunk": "1.60.x-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
@@ -283,7 +283,7 @@
|
||||
],
|
||||
"description": "Everything needed to connect to the Jetpack infrastructure",
|
||||
"support": {
|
||||
"source": "https://github.com/Automattic/jetpack-connection/tree/v1.58.1"
|
||||
"source": "https://github.com/Automattic/jetpack-connection/tree/v1.60.1"
|
||||
},
|
||||
"install-path": "../automattic/jetpack-connection"
|
||||
},
|
||||
@@ -445,24 +445,24 @@
|
||||
},
|
||||
{
|
||||
"name": "automattic/jetpack-status",
|
||||
"version": "v1.18.5",
|
||||
"version_normalized": "1.18.5.0",
|
||||
"version": "v1.19.0",
|
||||
"version_normalized": "1.19.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Automattic/jetpack-status.git",
|
||||
"reference": "fe08772e2005b8cd78ec5e0d416b73a04ae57c10"
|
||||
"reference": "3281c2311752e9df1b2809d8feacb7bf7b9b7b8d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/fe08772e2005b8cd78ec5e0d416b73a04ae57c10",
|
||||
"reference": "fe08772e2005b8cd78ec5e0d416b73a04ae57c10",
|
||||
"url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/3281c2311752e9df1b2809d8feacb7bf7b9b7b8d",
|
||||
"reference": "3281c2311752e9df1b2809d8feacb7bf7b9b7b8d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"automattic/jetpack-constants": "^1.6.23"
|
||||
},
|
||||
"require-dev": {
|
||||
"automattic/jetpack-changelogger": "^3.3.10",
|
||||
"automattic/jetpack-changelogger": "^3.3.11",
|
||||
"automattic/jetpack-ip": "^0.1.6",
|
||||
"brain/monkey": "2.6.1",
|
||||
"yoast/phpunit-polyfills": "1.1.0"
|
||||
@@ -470,7 +470,7 @@
|
||||
"suggest": {
|
||||
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
|
||||
},
|
||||
"time": "2023-09-25T19:07:29+00:00",
|
||||
"time": "2023-11-13T13:50:12+00:00",
|
||||
"type": "jetpack-library",
|
||||
"extra": {
|
||||
"autotagger": true,
|
||||
@@ -479,7 +479,7 @@
|
||||
"link-template": "https://github.com/Automattic/jetpack-status/compare/v${old}...v${new}"
|
||||
},
|
||||
"branch-alias": {
|
||||
"dev-trunk": "1.18.x-dev"
|
||||
"dev-trunk": "1.19.x-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
@@ -494,7 +494,7 @@
|
||||
],
|
||||
"description": "Used to retrieve information about the current status of Jetpack and the site overall.",
|
||||
"support": {
|
||||
"source": "https://github.com/Automattic/jetpack-status/tree/v1.18.5"
|
||||
"source": "https://github.com/Automattic/jetpack-status/tree/v1.19.0"
|
||||
},
|
||||
"install-path": "../automattic/jetpack-status"
|
||||
},
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php return array(
|
||||
'root' => array(
|
||||
'name' => 'woocommerce/woocommerce-blocks',
|
||||
'pretty_version' => '11.4.9',
|
||||
'version' => '11.4.9.0',
|
||||
'pretty_version' => '11.6.2',
|
||||
'version' => '11.6.2.0',
|
||||
'reference' => NULL,
|
||||
'type' => 'wordpress-plugin',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
@@ -20,9 +20,9 @@
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'automattic/jetpack-admin-ui' => array(
|
||||
'pretty_version' => 'v0.2.23',
|
||||
'version' => '0.2.23.0',
|
||||
'reference' => '2684f3ee3b458074d95e727e70ae994802501688',
|
||||
'pretty_version' => 'v0.2.25',
|
||||
'version' => '0.2.25.0',
|
||||
'reference' => 'd9566f47ab310d675779273eeead6d0ca64fff82',
|
||||
'type' => 'jetpack-library',
|
||||
'install_path' => __DIR__ . '/../automattic/jetpack-admin-ui',
|
||||
'aliases' => array(),
|
||||
@@ -47,9 +47,9 @@
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'automattic/jetpack-connection' => array(
|
||||
'pretty_version' => 'v1.58.1',
|
||||
'version' => '1.58.1.0',
|
||||
'reference' => 'f578d8fe7ef6fdb9ecd60c64645cac8bc6809a89',
|
||||
'pretty_version' => 'v1.60.1',
|
||||
'version' => '1.60.1.0',
|
||||
'reference' => 'fc99f0a4d8839b69341a25f9059b872d426f3e9d',
|
||||
'type' => 'jetpack-library',
|
||||
'install_path' => __DIR__ . '/../automattic/jetpack-connection',
|
||||
'aliases' => array(),
|
||||
@@ -83,9 +83,9 @@
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'automattic/jetpack-status' => array(
|
||||
'pretty_version' => 'v1.18.5',
|
||||
'version' => '1.18.5.0',
|
||||
'reference' => 'fe08772e2005b8cd78ec5e0d416b73a04ae57c10',
|
||||
'pretty_version' => 'v1.19.0',
|
||||
'version' => '1.19.0.0',
|
||||
'reference' => '3281c2311752e9df1b2809d8feacb7bf7b9b7b8d',
|
||||
'type' => 'jetpack-library',
|
||||
'install_path' => __DIR__ . '/../automattic/jetpack-status',
|
||||
'aliases' => array(),
|
||||
@@ -113,8 +113,8 @@
|
||||
),
|
||||
),
|
||||
'woocommerce/woocommerce-blocks' => array(
|
||||
'pretty_version' => '11.4.9',
|
||||
'version' => '11.4.9.0',
|
||||
'pretty_version' => '11.6.2',
|
||||
'version' => '11.6.2.0',
|
||||
'reference' => NULL,
|
||||
'type' => 'wordpress-plugin',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
|
||||
@@ -11,7 +11,7 @@ return array(
|
||||
'path' => $vendorDir . '/automattic/jetpack-a8c-mc-stats/src/class-a8c-mc-stats.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Admin_UI\\Admin_Menu' => array(
|
||||
'version' => '0.2.23.0',
|
||||
'version' => '0.2.25.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-admin-ui/src/class-admin-menu.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
|
||||
@@ -23,95 +23,95 @@ return array(
|
||||
'path' => $vendorDir . '/automattic/jetpack-config/src/class-config.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Client' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-client.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Connection_Notice' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-connection-notice.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Error_Handler' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-error-handler.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Initial_State' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-initial-state.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Manager' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-manager.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Manager_Interface' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/interface-manager.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-nonce-handler.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Package_Version' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-package-version.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-package-version-tracker.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Plugin' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-plugin.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-plugin-storage.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\REST_Connector' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-rest-connector.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-rest-authentication.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Secrets' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-secrets.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-server-sandbox.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Tokens' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-tokens.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-tokens-locks.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Urls' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-urls.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Utils' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-utils.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Webhooks' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-webhooks.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-xmlrpc-async-call.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-xmlrpc-connector.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Constants' => array(
|
||||
@@ -119,27 +119,27 @@ return array(
|
||||
'path' => $vendorDir . '/automattic/jetpack-constants/src/class-constants.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\CookieState' => array(
|
||||
'version' => '1.18.5.0',
|
||||
'version' => '1.19.0.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-status/src/class-cookiestate.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Errors' => array(
|
||||
'version' => '1.18.5.0',
|
||||
'version' => '1.19.0.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-status/src/class-errors.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Files' => array(
|
||||
'version' => '1.18.5.0',
|
||||
'version' => '1.19.0.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-status/src/class-files.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Heartbeat' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-heartbeat.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Modules' => array(
|
||||
'version' => '1.18.5.0',
|
||||
'version' => '1.19.0.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-status/src/class-modules.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Paths' => array(
|
||||
'version' => '1.18.5.0',
|
||||
'version' => '1.19.0.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-status/src/class-paths.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Redirect' => array(
|
||||
@@ -151,55 +151,55 @@ return array(
|
||||
'path' => $vendorDir . '/automattic/jetpack-roles/src/class-roles.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Status' => array(
|
||||
'version' => '1.18.5.0',
|
||||
'version' => '1.19.0.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-status/src/class-status.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Status\\Cache' => array(
|
||||
'version' => '1.18.5.0',
|
||||
'version' => '1.19.0.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-status/src/class-cache.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Status\\Host' => array(
|
||||
'version' => '1.18.5.0',
|
||||
'version' => '1.19.0.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-status/src/class-host.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Status\\Visitor' => array(
|
||||
'version' => '1.18.5.0',
|
||||
'version' => '1.19.0.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-status/src/class-visitor.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Terms_Of_Service' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-terms-of-service.php'
|
||||
),
|
||||
'Automattic\\Jetpack\\Tracking' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/src/class-tracking.php'
|
||||
),
|
||||
'Jetpack_IXR_Client' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php'
|
||||
),
|
||||
'Jetpack_IXR_ClientMulticall' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php'
|
||||
),
|
||||
'Jetpack_Options' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-options.php'
|
||||
),
|
||||
'Jetpack_Signature' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-signature.php'
|
||||
),
|
||||
'Jetpack_Tracks_Client' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php'
|
||||
),
|
||||
'Jetpack_Tracks_Event' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php'
|
||||
),
|
||||
'Jetpack_XMLRPC_Server' => array(
|
||||
'version' => '1.58.1.0',
|
||||
'version' => '1.60.1.0',
|
||||
'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php'
|
||||
),
|
||||
);
|
||||
|
||||
@@ -7,11 +7,11 @@ $baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'fcd5d7d87e03ff4f5b5a66c2b8968671' => array(
|
||||
'version' => '11.4.9.0',
|
||||
'version' => '11.6.2.0',
|
||||
'path' => $baseDir . '/src/StoreApi/deprecated.php'
|
||||
),
|
||||
'd0f16a186498c2ba04f1d0064fecf9cf' => array(
|
||||
'version' => '11.4.9.0',
|
||||
'version' => '11.6.2.0',
|
||||
'path' => $baseDir . '/src/StoreApi/functions.php'
|
||||
),
|
||||
);
|
||||
|
||||
@@ -11,15 +11,15 @@ return array(
|
||||
'path' => array( $vendorDir . '/composer/installers/src/Composer/Installers' )
|
||||
),
|
||||
'Automattic\\WooCommerce\\StoreApi\\' => array(
|
||||
'version' => '11.4.9.0',
|
||||
'version' => '11.6.2.0',
|
||||
'path' => array( $baseDir . '/src/StoreApi' )
|
||||
),
|
||||
'Automattic\\WooCommerce\\Blocks\\Tests\\' => array(
|
||||
'version' => '11.4.9.0',
|
||||
'version' => '11.6.2.0',
|
||||
'path' => array( $baseDir . '/tests/php' )
|
||||
),
|
||||
'Automattic\\WooCommerce\\Blocks\\' => array(
|
||||
'version' => '11.4.9.0',
|
||||
'version' => '11.6.2.0',
|
||||
'path' => array( $baseDir . '/src' )
|
||||
),
|
||||
'Automattic\\Jetpack\\Autoloader\\' => array(
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @package automattic/jetpack-autoloader
|
||||
*/
|
||||
|
||||
namespace Automattic\Jetpack\Autoloader\jpbfd39cb280a7918f42140da76d572201\al2_12_0;
|
||||
namespace Automattic\Jetpack\Autoloader\jp38946ab8ac8f160ec94a4d2f32c752a2\al2_12_0;
|
||||
|
||||
// phpcs:ignore
|
||||
|
||||
|
||||
Reference in New Issue
Block a user