Version Description
- Release date: January 19, 2021
Enhancements
- Synchronization: improvements to the way data is synchronized back to WordPress.com.
Download this release
Release Info
| Developer | jeherve |
| Plugin | |
| Version | 9.3.2 |
| Comparing to | |
| See all releases | |
Code changes from version 9.3.1 to 9.3.2
- changelog.txt +8 -0
- jetpack.php +2 -2
- readme.txt +8 -0
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +1 -1
- vendor/automattic/jetpack-sync/src/class-lock.php +13 -6
- vendor/automattic/jetpack-sync/src/class-replicastore.php +5 -1
- vendor/automattic/jetpack-sync/src/class-sender.php +6 -0
- vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php +15 -3
- vendor/automattic/jetpack-sync/src/modules/class-full-sync.php +15 -3
- vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php +10 -2
- vendor/composer/InstalledVersions.php +5 -5
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +5 -5
- vendor/composer/installed.json +12 -12
- vendor/composer/installed.php +5 -5
- vendor/composer/jetpack_autoload_classmap.php +44 -44
- vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
- vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
- vendor/jetpack-autoloader/class-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-container.php +1 -1
- vendor/jetpack-autoloader/class-hook-manager.php +1 -1
- vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
- vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
- vendor/jetpack-autoloader/class-path-processor.php +1 -1
- vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
- vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
- vendor/jetpack-autoloader/class-version-loader.php +1 -1
- vendor/jetpack-autoloader/class-version-selector.php +1 -1
changelog.txt
CHANGED
|
@@ -2,6 +2,14 @@
|
|
| 2 |
|
| 3 |
**This is a list detailing changes for all Jetpack releases.**
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
= 9.3.1 =
|
| 6 |
|
| 7 |
* Release date: January 14, 2021
|
| 2 |
|
| 3 |
**This is a list detailing changes for all Jetpack releases.**
|
| 4 |
|
| 5 |
+
= 9.3.2 =
|
| 6 |
+
|
| 7 |
+
* Release date: January 19, 2021
|
| 8 |
+
|
| 9 |
+
**Enhancements**
|
| 10 |
+
|
| 11 |
+
* Synchronization: improvements to the way data is synchronized back to WordPress.com.
|
| 12 |
+
|
| 13 |
= 9.3.1 =
|
| 14 |
|
| 15 |
* Release date: January 14, 2021
|
jetpack.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
* Plugin URI: https://jetpack.com
|
| 5 |
* Description: Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users.
|
| 6 |
* Author: Automattic
|
| 7 |
-
* Version: 9.3.
|
| 8 |
* Author URI: https://jetpack.com
|
| 9 |
* License: GPL2+
|
| 10 |
* Text Domain: jetpack
|
|
@@ -16,7 +16,7 @@
|
|
| 16 |
|
| 17 |
define( 'JETPACK__MINIMUM_WP_VERSION', '5.5' );
|
| 18 |
define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
|
| 19 |
-
define( 'JETPACK__VERSION', '9.3.
|
| 20 |
|
| 21 |
/**
|
| 22 |
* Constant used to fetch the connection owner token
|
| 4 |
* Plugin URI: https://jetpack.com
|
| 5 |
* Description: Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users.
|
| 6 |
* Author: Automattic
|
| 7 |
+
* Version: 9.3.2
|
| 8 |
* Author URI: https://jetpack.com
|
| 9 |
* License: GPL2+
|
| 10 |
* Text Domain: jetpack
|
| 16 |
|
| 17 |
define( 'JETPACK__MINIMUM_WP_VERSION', '5.5' );
|
| 18 |
define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' );
|
| 19 |
+
define( 'JETPACK__VERSION', '9.3.2' );
|
| 20 |
|
| 21 |
/**
|
| 22 |
* Constant used to fetch the connection owner token
|
readme.txt
CHANGED
|
@@ -239,6 +239,14 @@ Our Cookie and Consent Banner can help you comply with GDPR. The European Union
|
|
| 239 |
|
| 240 |
== Changelog ==
|
| 241 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 242 |
= 9.3.1 =
|
| 243 |
|
| 244 |
* Release date: January 14, 2021
|
| 239 |
|
| 240 |
== Changelog ==
|
| 241 |
|
| 242 |
+
= 9.3.2 =
|
| 243 |
+
|
| 244 |
+
* Release date: January 19, 2021
|
| 245 |
+
|
| 246 |
+
**Enhancements**
|
| 247 |
+
|
| 248 |
+
* Synchronization: improvements to the way data is synchronized back to WordPress.com.
|
| 249 |
+
|
| 250 |
= 9.3.1 =
|
| 251 |
|
| 252 |
* Release date: January 14, 2021
|
vendor/autoload.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInite12a77269bbc61c939280ef237e26c51::getLoader();
|
vendor/autoload_packages.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/automattic/jetpack-sync/src/class-lock.php
CHANGED
|
@@ -22,12 +22,14 @@ class Lock {
|
|
| 22 |
|
| 23 |
/**
|
| 24 |
* Default Lifetime of the lock.
|
|
|
|
|
|
|
| 25 |
*
|
| 26 |
* @access public
|
| 27 |
*
|
| 28 |
* @var int
|
| 29 |
*/
|
| 30 |
-
const LOCK_TRANSIENT_EXPIRY =
|
| 31 |
|
| 32 |
/**
|
| 33 |
* Attempt to lock.
|
|
@@ -42,14 +44,16 @@ class Lock {
|
|
| 42 |
public function attempt( $name, $expiry = self::LOCK_TRANSIENT_EXPIRY ) {
|
| 43 |
$name = self::LOCK_PREFIX . $name;
|
| 44 |
$locked_time = get_option( $name );
|
|
|
|
| 45 |
if ( $locked_time ) {
|
| 46 |
if ( microtime( true ) < $locked_time ) {
|
| 47 |
return false;
|
| 48 |
}
|
| 49 |
}
|
| 50 |
-
|
|
|
|
| 51 |
|
| 52 |
-
return
|
| 53 |
}
|
| 54 |
|
| 55 |
/**
|
|
@@ -57,9 +61,12 @@ class Lock {
|
|
| 57 |
*
|
| 58 |
* @access public
|
| 59 |
*
|
| 60 |
-
* @param string
|
|
|
|
| 61 |
*/
|
| 62 |
-
public function remove( $name ) {
|
| 63 |
-
|
|
|
|
|
|
|
| 64 |
}
|
| 65 |
}
|
| 22 |
|
| 23 |
/**
|
| 24 |
* Default Lifetime of the lock.
|
| 25 |
+
* This is the expiration value as such we are setting it high to handle cases where there are
|
| 26 |
+
* long running requests. Short expiration value leads to concurrent requests and performance issues.
|
| 27 |
*
|
| 28 |
* @access public
|
| 29 |
*
|
| 30 |
* @var int
|
| 31 |
*/
|
| 32 |
+
const LOCK_TRANSIENT_EXPIRY = 300; // Seconds.
|
| 33 |
|
| 34 |
/**
|
| 35 |
* Attempt to lock.
|
| 44 |
public function attempt( $name, $expiry = self::LOCK_TRANSIENT_EXPIRY ) {
|
| 45 |
$name = self::LOCK_PREFIX . $name;
|
| 46 |
$locked_time = get_option( $name );
|
| 47 |
+
|
| 48 |
if ( $locked_time ) {
|
| 49 |
if ( microtime( true ) < $locked_time ) {
|
| 50 |
return false;
|
| 51 |
}
|
| 52 |
}
|
| 53 |
+
$locked_time = microtime( true ) + $expiry;
|
| 54 |
+
update_option( $name, $locked_time );
|
| 55 |
|
| 56 |
+
return $locked_time;
|
| 57 |
}
|
| 58 |
|
| 59 |
/**
|
| 61 |
*
|
| 62 |
* @access public
|
| 63 |
*
|
| 64 |
+
* @param string $name lock name.
|
| 65 |
+
* @param bool|float $lock_expiration lock expiration.
|
| 66 |
*/
|
| 67 |
+
public function remove( $name, $lock_expiration = false ) {
|
| 68 |
+
if ( true === $lock_expiration || (string) get_option( self::LOCK_PREFIX . $name ) === (string) $lock_expiration ) {
|
| 69 |
+
delete_option( self::LOCK_PREFIX . $name );
|
| 70 |
+
}
|
| 71 |
}
|
| 72 |
}
|
vendor/automattic/jetpack-sync/src/class-replicastore.php
CHANGED
|
@@ -1279,7 +1279,11 @@ class Replicastore implements Replicastore_Interface {
|
|
| 1279 |
return $range_edges;
|
| 1280 |
}
|
| 1281 |
|
| 1282 |
-
$object_count = $range_edges['item_count'];
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1283 |
|
| 1284 |
$bucket_size = (int) ceil( $object_count / $buckets );
|
| 1285 |
$previous_max_id = max( 0, $range_edges['min_range'] );
|
| 1279 |
return $range_edges;
|
| 1280 |
}
|
| 1281 |
|
| 1282 |
+
$object_count = (int) $range_edges['item_count'];
|
| 1283 |
+
|
| 1284 |
+
if ( 0 === $object_count ) {
|
| 1285 |
+
return array();
|
| 1286 |
+
}
|
| 1287 |
|
| 1288 |
$bucket_size = (int) ceil( $object_count / $buckets );
|
| 1289 |
$previous_max_id = max( 0, $range_edges['min_range'] );
|
vendor/automattic/jetpack-sync/src/class-sender.php
CHANGED
|
@@ -263,6 +263,12 @@ class Sender {
|
|
| 263 |
if ( ! Settings::get_setting( 'full_sync_sender_enabled' ) ) {
|
| 264 |
return;
|
| 265 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 266 |
$this->continue_full_sync_enqueue();
|
| 267 |
// immediate full sync sends data in continue_full_sync_enqueue.
|
| 268 |
if ( false === strpos( get_class( $sync_module ), 'Full_Sync_Immediately' ) ) {
|
| 263 |
if ( ! Settings::get_setting( 'full_sync_sender_enabled' ) ) {
|
| 264 |
return;
|
| 265 |
}
|
| 266 |
+
|
| 267 |
+
// Don't sync if request is marked as read only.
|
| 268 |
+
if ( Constants::is_true( 'JETPACK_SYNC_READ_ONLY' ) ) {
|
| 269 |
+
return new \WP_Error( 'jetpack_sync_read_only' );
|
| 270 |
+
}
|
| 271 |
+
|
| 272 |
$this->continue_full_sync_enqueue();
|
| 273 |
// immediate full sync sends data in continue_full_sync_enqueue.
|
| 274 |
if ( false === strpos( get_class( $sync_module ), 'Full_Sync_Immediately' ) ) {
|
vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php
CHANGED
|
@@ -194,7 +194,7 @@ class Full_Sync_Immediately extends Module {
|
|
| 194 |
*/
|
| 195 |
public function reset_data() {
|
| 196 |
$this->clear_status();
|
| 197 |
-
( new Lock() )->remove( self::LOCK_NAME );
|
| 198 |
}
|
| 199 |
|
| 200 |
/**
|
|
@@ -330,13 +330,25 @@ class Full_Sync_Immediately extends Module {
|
|
| 330 |
* @access public
|
| 331 |
*/
|
| 332 |
public function continue_sending() {
|
| 333 |
-
|
|
|
|
| 334 |
return;
|
| 335 |
}
|
| 336 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 337 |
$this->send();
|
| 338 |
|
| 339 |
-
|
|
|
|
| 340 |
}
|
| 341 |
|
| 342 |
/**
|
| 194 |
*/
|
| 195 |
public function reset_data() {
|
| 196 |
$this->clear_status();
|
| 197 |
+
( new Lock() )->remove( self::LOCK_NAME, true );
|
| 198 |
}
|
| 199 |
|
| 200 |
/**
|
| 330 |
* @access public
|
| 331 |
*/
|
| 332 |
public function continue_sending() {
|
| 333 |
+
// Return early if Full Sync is not running.
|
| 334 |
+
if ( ! $this->is_started() || $this->get_status()['finished'] ) {
|
| 335 |
return;
|
| 336 |
}
|
| 337 |
|
| 338 |
+
// Obtain send Lock.
|
| 339 |
+
$lock = new Lock();
|
| 340 |
+
$lock_expiration = $lock->attempt( self::LOCK_NAME );
|
| 341 |
+
|
| 342 |
+
// Return if unable to obtain lock.
|
| 343 |
+
if ( false === $lock_expiration ) {
|
| 344 |
+
return;
|
| 345 |
+
}
|
| 346 |
+
|
| 347 |
+
// Send Full Sync actions.
|
| 348 |
$this->send();
|
| 349 |
|
| 350 |
+
// Remove lock.
|
| 351 |
+
$lock->remove( self::LOCK_NAME, $lock_expiration );
|
| 352 |
}
|
| 353 |
|
| 354 |
/**
|
vendor/automattic/jetpack-sync/src/modules/class-full-sync.php
CHANGED
|
@@ -175,13 +175,25 @@ class Full_Sync extends Module {
|
|
| 175 |
* @param array $configs Full sync configuration for all sync modules.
|
| 176 |
*/
|
| 177 |
public function continue_enqueuing( $configs = null ) {
|
| 178 |
-
|
|
|
|
| 179 |
return;
|
| 180 |
}
|
| 181 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
$this->enqueue( $configs );
|
| 183 |
|
| 184 |
-
|
|
|
|
| 185 |
}
|
| 186 |
|
| 187 |
/**
|
|
@@ -612,7 +624,7 @@ class Full_Sync extends Module {
|
|
| 612 |
public function reset_data() {
|
| 613 |
$this->clear_status();
|
| 614 |
$this->delete_config();
|
| 615 |
-
( new Lock() )->remove( self::ENQUEUE_LOCK_NAME );
|
| 616 |
|
| 617 |
$listener = Listener::get_instance();
|
| 618 |
$listener->get_full_sync_queue()->reset();
|
| 175 |
* @param array $configs Full sync configuration for all sync modules.
|
| 176 |
*/
|
| 177 |
public function continue_enqueuing( $configs = null ) {
|
| 178 |
+
// Return early if not in progress.
|
| 179 |
+
if ( ! $this->get_status_option( 'started' ) || $this->get_status_option( 'queue_finished' ) ) {
|
| 180 |
return;
|
| 181 |
}
|
| 182 |
|
| 183 |
+
// Attempt to obtain lock.
|
| 184 |
+
$lock = new Lock();
|
| 185 |
+
$lock_expiration = $lock->attempt( self::ENQUEUE_LOCK_NAME );
|
| 186 |
+
|
| 187 |
+
// Return if unable to obtain lock.
|
| 188 |
+
if ( false === $lock_expiration ) {
|
| 189 |
+
return;
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
// enqueue full sync actions.
|
| 193 |
$this->enqueue( $configs );
|
| 194 |
|
| 195 |
+
// Remove lock.
|
| 196 |
+
$lock->remove( self::ENQUEUE_LOCK_NAME, $lock_expiration );
|
| 197 |
}
|
| 198 |
|
| 199 |
/**
|
| 624 |
public function reset_data() {
|
| 625 |
$this->clear_status();
|
| 626 |
$this->delete_config();
|
| 627 |
+
( new Lock() )->remove( self::ENQUEUE_LOCK_NAME, true );
|
| 628 |
|
| 629 |
$listener = Listener::get_instance();
|
| 630 |
$listener->get_full_sync_queue()->reset();
|
vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php
CHANGED
|
@@ -422,7 +422,14 @@ class Table_Checksum {
|
|
| 422 |
$salt = $wpdb->prepare( '%s', $this->salt ); // TODO escape or prepare statement.
|
| 423 |
|
| 424 |
// Prepare the compound key.
|
| 425 |
-
$key_fields =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 426 |
|
| 427 |
// Prepare the checksum fields.
|
| 428 |
$checksum_fields_string = implode( ',', array_merge( $this->checksum_fields, array( $salt ) ) );
|
|
@@ -431,7 +438,7 @@ class Table_Checksum {
|
|
| 431 |
if ( $granular_result ) {
|
| 432 |
// TODO uniq the fields as sometimes(most) range_index is the key and there's no need to select the same field twice.
|
| 433 |
$additional_fields = "
|
| 434 |
-
{$this->range_field} as range_index,
|
| 435 |
{$key_fields},
|
| 436 |
";
|
| 437 |
}
|
|
@@ -469,6 +476,7 @@ class Table_Checksum {
|
|
| 469 |
if ( $granular_result ) {
|
| 470 |
$query .= "
|
| 471 |
GROUP BY {$key_fields}
|
|
|
|
| 472 |
";
|
| 473 |
}
|
| 474 |
|
| 422 |
$salt = $wpdb->prepare( '%s', $this->salt ); // TODO escape or prepare statement.
|
| 423 |
|
| 424 |
// Prepare the compound key.
|
| 425 |
+
$key_fields = array();
|
| 426 |
+
|
| 427 |
+
// Prefix the fields with the table name, to avoid clashes in queries with sub-queries (e.g. meta tables).
|
| 428 |
+
foreach ( $this->key_fields as $field ) {
|
| 429 |
+
$key_fields[] = $this->table . '.' . $field;
|
| 430 |
+
}
|
| 431 |
+
|
| 432 |
+
$key_fields = implode( ',', $key_fields );
|
| 433 |
|
| 434 |
// Prepare the checksum fields.
|
| 435 |
$checksum_fields_string = implode( ',', array_merge( $this->checksum_fields, array( $salt ) ) );
|
| 438 |
if ( $granular_result ) {
|
| 439 |
// TODO uniq the fields as sometimes(most) range_index is the key and there's no need to select the same field twice.
|
| 440 |
$additional_fields = "
|
| 441 |
+
{$this->table}.{$this->range_field} as range_index,
|
| 442 |
{$key_fields},
|
| 443 |
";
|
| 444 |
}
|
| 476 |
if ( $granular_result ) {
|
| 477 |
$query .= "
|
| 478 |
GROUP BY {$key_fields}
|
| 479 |
+
LIMIT 9999999
|
| 480 |
";
|
| 481 |
}
|
| 482 |
|
vendor/composer/InstalledVersions.php
CHANGED
|
@@ -29,7 +29,7 @@ private static $installed = array (
|
|
| 29 |
'aliases' =>
|
| 30 |
array (
|
| 31 |
),
|
| 32 |
-
'reference' => '
|
| 33 |
'name' => 'automattic/jetpack',
|
| 34 |
),
|
| 35 |
'versions' =>
|
|
@@ -41,7 +41,7 @@ private static $installed = array (
|
|
| 41 |
'aliases' =>
|
| 42 |
array (
|
| 43 |
),
|
| 44 |
-
'reference' => '
|
| 45 |
),
|
| 46 |
'automattic/jetpack-a8c-mc-stats' =>
|
| 47 |
array (
|
|
@@ -243,12 +243,12 @@ private static $installed = array (
|
|
| 243 |
),
|
| 244 |
'automattic/jetpack-sync' =>
|
| 245 |
array (
|
| 246 |
-
'pretty_version' => 'v1.19.
|
| 247 |
-
'version' => '1.19.
|
| 248 |
'aliases' =>
|
| 249 |
array (
|
| 250 |
),
|
| 251 |
-
'reference' => '
|
| 252 |
),
|
| 253 |
'automattic/jetpack-terms-of-service' =>
|
| 254 |
array (
|
| 29 |
'aliases' =>
|
| 30 |
array (
|
| 31 |
),
|
| 32 |
+
'reference' => 'b977eff5338271f4a9dc73b3014d6f43385b74fc',
|
| 33 |
'name' => 'automattic/jetpack',
|
| 34 |
),
|
| 35 |
'versions' =>
|
| 41 |
'aliases' =>
|
| 42 |
array (
|
| 43 |
),
|
| 44 |
+
'reference' => 'b977eff5338271f4a9dc73b3014d6f43385b74fc',
|
| 45 |
),
|
| 46 |
'automattic/jetpack-a8c-mc-stats' =>
|
| 47 |
array (
|
| 243 |
),
|
| 244 |
'automattic/jetpack-sync' =>
|
| 245 |
array (
|
| 246 |
+
'pretty_version' => 'v1.19.4',
|
| 247 |
+
'version' => '1.19.4.0',
|
| 248 |
'aliases' =>
|
| 249 |
array (
|
| 250 |
),
|
| 251 |
+
'reference' => '2748a94b6731a1bf757824737f31ee3088ff8871',
|
| 252 |
),
|
| 253 |
'automattic/jetpack-terms-of-service' =>
|
| 254 |
array (
|
vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -24,15 +24,15 @@ class ComposerAutoloaderInit0c2a830fc5e83fd354fddd8ce525ab7d
|
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
-
spl_autoload_register(array('
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 29 |
-
spl_autoload_unregister(array('
|
| 30 |
|
| 31 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 32 |
if ($useStaticLoader) {
|
| 33 |
require __DIR__ . '/autoload_static.php';
|
| 34 |
|
| 35 |
-
call_user_func(\Composer\Autoload\
|
| 36 |
} else {
|
| 37 |
$classMap = require __DIR__ . '/autoload_classmap.php';
|
| 38 |
if ($classMap) {
|
|
@@ -44,19 +44,19 @@ class ComposerAutoloaderInit0c2a830fc5e83fd354fddd8ce525ab7d
|
|
| 44 |
$loader->register(true);
|
| 45 |
|
| 46 |
if ($useStaticLoader) {
|
| 47 |
-
$includeFiles = Composer\Autoload\
|
| 48 |
} else {
|
| 49 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 50 |
}
|
| 51 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 52 |
-
|
| 53 |
}
|
| 54 |
|
| 55 |
return $loader;
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
-
function
|
| 60 |
{
|
| 61 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 62 |
require $file;
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInite12a77269bbc61c939280ef237e26c51
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
+
spl_autoload_register(array('ComposerAutoloaderInite12a77269bbc61c939280ef237e26c51', 'loadClassLoader'), true, true);
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInite12a77269bbc61c939280ef237e26c51', 'loadClassLoader'));
|
| 30 |
|
| 31 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 32 |
if ($useStaticLoader) {
|
| 33 |
require __DIR__ . '/autoload_static.php';
|
| 34 |
|
| 35 |
+
call_user_func(\Composer\Autoload\ComposerStaticInite12a77269bbc61c939280ef237e26c51::getInitializer($loader));
|
| 36 |
} else {
|
| 37 |
$classMap = require __DIR__ . '/autoload_classmap.php';
|
| 38 |
if ($classMap) {
|
| 44 |
$loader->register(true);
|
| 45 |
|
| 46 |
if ($useStaticLoader) {
|
| 47 |
+
$includeFiles = Composer\Autoload\ComposerStaticInite12a77269bbc61c939280ef237e26c51::$files;
|
| 48 |
} else {
|
| 49 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 50 |
}
|
| 51 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 52 |
+
composerRequiree12a77269bbc61c939280ef237e26c51($fileIdentifier, $file);
|
| 53 |
}
|
| 54 |
|
| 55 |
return $loader;
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
+
function composerRequiree12a77269bbc61c939280ef237e26c51($fileIdentifier, $file)
|
| 60 |
{
|
| 61 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 62 |
require $file;
|
vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'bce4ecd6aabb2a2948e06d0e2c4ea9a6' => __DIR__ . '/..' . '/automattic/jetpack-connection/legacy/load-ixr.php',
|
|
@@ -150,10 +150,10 @@ class ComposerStaticInit0c2a830fc5e83fd354fddd8ce525ab7d
|
|
| 150 |
public static function getInitializer(ClassLoader $loader)
|
| 151 |
{
|
| 152 |
return \Closure::bind(function () use ($loader) {
|
| 153 |
-
$loader->prefixLengthsPsr4 =
|
| 154 |
-
$loader->prefixDirsPsr4 =
|
| 155 |
-
$loader->prefixesPsr0 =
|
| 156 |
-
$loader->classMap =
|
| 157 |
|
| 158 |
}, null, ClassLoader::class);
|
| 159 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInite12a77269bbc61c939280ef237e26c51
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'bce4ecd6aabb2a2948e06d0e2c4ea9a6' => __DIR__ . '/..' . '/automattic/jetpack-connection/legacy/load-ixr.php',
|
| 150 |
public static function getInitializer(ClassLoader $loader)
|
| 151 |
{
|
| 152 |
return \Closure::bind(function () use ($loader) {
|
| 153 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInite12a77269bbc61c939280ef237e26c51::$prefixLengthsPsr4;
|
| 154 |
+
$loader->prefixDirsPsr4 = ComposerStaticInite12a77269bbc61c939280ef237e26c51::$prefixDirsPsr4;
|
| 155 |
+
$loader->prefixesPsr0 = ComposerStaticInite12a77269bbc61c939280ef237e26c51::$prefixesPsr0;
|
| 156 |
+
$loader->classMap = ComposerStaticInite12a77269bbc61c939280ef237e26c51::$classMap;
|
| 157 |
|
| 158 |
}, null, ClassLoader::class);
|
| 159 |
}
|
vendor/composer/installed.json
CHANGED
|
@@ -865,27 +865,27 @@
|
|
| 865 |
},
|
| 866 |
{
|
| 867 |
"name": "automattic/jetpack-sync",
|
| 868 |
-
"version": "v1.19.
|
| 869 |
-
"version_normalized": "1.19.
|
| 870 |
"source": {
|
| 871 |
"type": "git",
|
| 872 |
"url": "https://github.com/Automattic/jetpack-sync.git",
|
| 873 |
-
"reference": "
|
| 874 |
},
|
| 875 |
"dist": {
|
| 876 |
"type": "zip",
|
| 877 |
-
"url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/
|
| 878 |
-
"reference": "
|
| 879 |
"shasum": ""
|
| 880 |
},
|
| 881 |
"require": {
|
| 882 |
-
"automattic/jetpack-connection": "
|
| 883 |
-
"automattic/jetpack-constants": "
|
| 884 |
-
"automattic/jetpack-options": "
|
| 885 |
-
"automattic/jetpack-roles": "
|
| 886 |
-
"automattic/jetpack-status": "
|
| 887 |
},
|
| 888 |
-
"time": "
|
| 889 |
"type": "library",
|
| 890 |
"installation-source": "dist",
|
| 891 |
"autoload": {
|
|
@@ -899,7 +899,7 @@
|
|
| 899 |
],
|
| 900 |
"description": "Everything needed to allow syncing to the WP.com infrastructure.",
|
| 901 |
"support": {
|
| 902 |
-
"source": "https://github.com/Automattic/jetpack-sync/tree/v1.19.
|
| 903 |
},
|
| 904 |
"install-path": "../automattic/jetpack-sync"
|
| 905 |
},
|
| 865 |
},
|
| 866 |
{
|
| 867 |
"name": "automattic/jetpack-sync",
|
| 868 |
+
"version": "v1.19.4",
|
| 869 |
+
"version_normalized": "1.19.4.0",
|
| 870 |
"source": {
|
| 871 |
"type": "git",
|
| 872 |
"url": "https://github.com/Automattic/jetpack-sync.git",
|
| 873 |
+
"reference": "2748a94b6731a1bf757824737f31ee3088ff8871"
|
| 874 |
},
|
| 875 |
"dist": {
|
| 876 |
"type": "zip",
|
| 877 |
+
"url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/2748a94b6731a1bf757824737f31ee3088ff8871",
|
| 878 |
+
"reference": "2748a94b6731a1bf757824737f31ee3088ff8871",
|
| 879 |
"shasum": ""
|
| 880 |
},
|
| 881 |
"require": {
|
| 882 |
+
"automattic/jetpack-connection": "1.22.0",
|
| 883 |
+
"automattic/jetpack-constants": "1.6.0",
|
| 884 |
+
"automattic/jetpack-options": "1.10.0",
|
| 885 |
+
"automattic/jetpack-roles": "1.4.0",
|
| 886 |
+
"automattic/jetpack-status": "1.7.0"
|
| 887 |
},
|
| 888 |
+
"time": "2021-01-18T17:35:29+00:00",
|
| 889 |
"type": "library",
|
| 890 |
"installation-source": "dist",
|
| 891 |
"autoload": {
|
| 899 |
],
|
| 900 |
"description": "Everything needed to allow syncing to the WP.com infrastructure.",
|
| 901 |
"support": {
|
| 902 |
+
"source": "https://github.com/Automattic/jetpack-sync/tree/v1.19.4"
|
| 903 |
},
|
| 904 |
"install-path": "../automattic/jetpack-sync"
|
| 905 |
},
|
vendor/composer/installed.php
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
'aliases' =>
|
| 7 |
array (
|
| 8 |
),
|
| 9 |
-
'reference' => '
|
| 10 |
'name' => 'automattic/jetpack',
|
| 11 |
),
|
| 12 |
'versions' =>
|
|
@@ -18,7 +18,7 @@
|
|
| 18 |
'aliases' =>
|
| 19 |
array (
|
| 20 |
),
|
| 21 |
-
'reference' => '
|
| 22 |
),
|
| 23 |
'automattic/jetpack-a8c-mc-stats' =>
|
| 24 |
array (
|
|
@@ -220,12 +220,12 @@
|
|
| 220 |
),
|
| 221 |
'automattic/jetpack-sync' =>
|
| 222 |
array (
|
| 223 |
-
'pretty_version' => 'v1.19.
|
| 224 |
-
'version' => '1.19.
|
| 225 |
'aliases' =>
|
| 226 |
array (
|
| 227 |
),
|
| 228 |
-
'reference' => '
|
| 229 |
),
|
| 230 |
'automattic/jetpack-terms-of-service' =>
|
| 231 |
array (
|
| 6 |
'aliases' =>
|
| 7 |
array (
|
| 8 |
),
|
| 9 |
+
'reference' => 'b977eff5338271f4a9dc73b3014d6f43385b74fc',
|
| 10 |
'name' => 'automattic/jetpack',
|
| 11 |
),
|
| 12 |
'versions' =>
|
| 18 |
'aliases' =>
|
| 19 |
array (
|
| 20 |
),
|
| 21 |
+
'reference' => 'b977eff5338271f4a9dc73b3014d6f43385b74fc',
|
| 22 |
),
|
| 23 |
'automattic/jetpack-a8c-mc-stats' =>
|
| 24 |
array (
|
| 220 |
),
|
| 221 |
'automattic/jetpack-sync' =>
|
| 222 |
array (
|
| 223 |
+
'pretty_version' => 'v1.19.4',
|
| 224 |
+
'version' => '1.19.4.0',
|
| 225 |
'aliases' =>
|
| 226 |
array (
|
| 227 |
),
|
| 228 |
+
'reference' => '2748a94b6731a1bf757824737f31ee3088ff8871',
|
| 229 |
),
|
| 230 |
'automattic/jetpack-terms-of-service' =>
|
| 231 |
array (
|
vendor/composer/jetpack_autoload_classmap.php
CHANGED
|
@@ -75,179 +75,179 @@ return array(
|
|
| 75 |
'path' => $baseDir . '/src/class-tracking.php'
|
| 76 |
),
|
| 77 |
'Automattic\\Jetpack\\Sync\\Defaults' => array(
|
| 78 |
-
'version' => '1.19.
|
| 79 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-defaults.php'
|
| 80 |
),
|
| 81 |
'Automattic\\Jetpack\\Sync\\Sender' => array(
|
| 82 |
-
'version' => '1.19.
|
| 83 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-sender.php'
|
| 84 |
),
|
| 85 |
'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array(
|
| 86 |
-
'version' => '1.19.
|
| 87 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/interface-replicastore.php'
|
| 88 |
),
|
| 89 |
'Automattic\\Jetpack\\Sync\\Replicastore' => array(
|
| 90 |
-
'version' => '1.19.
|
| 91 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-replicastore.php'
|
| 92 |
),
|
| 93 |
'Automattic\\Jetpack\\Sync\\Actions' => array(
|
| 94 |
-
'version' => '1.19.
|
| 95 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-actions.php'
|
| 96 |
),
|
| 97 |
'Automattic\\Jetpack\\Sync\\Functions' => array(
|
| 98 |
-
'version' => '1.19.
|
| 99 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-functions.php'
|
| 100 |
),
|
| 101 |
'Automattic\\Jetpack\\Sync\\Utils' => array(
|
| 102 |
-
'version' => '1.19.
|
| 103 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-utils.php'
|
| 104 |
),
|
| 105 |
'Automattic\\Jetpack\\Sync\\Lock' => array(
|
| 106 |
-
'version' => '1.19.
|
| 107 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-lock.php'
|
| 108 |
),
|
| 109 |
'Automattic\\Jetpack\\Sync\\Codec_Interface' => array(
|
| 110 |
-
'version' => '1.19.
|
| 111 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/interface-codec.php'
|
| 112 |
),
|
| 113 |
'Automattic\\Jetpack\\Sync\\Main' => array(
|
| 114 |
-
'version' => '1.19.
|
| 115 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-main.php'
|
| 116 |
),
|
| 117 |
'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array(
|
| 118 |
-
'version' => '1.19.
|
| 119 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-queue-buffer.php'
|
| 120 |
),
|
| 121 |
'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => array(
|
| 122 |
-
'version' => '1.19.
|
| 123 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/replicastore/class-table-checksum.php'
|
| 124 |
),
|
| 125 |
'Automattic\\Jetpack\\Sync\\Users' => array(
|
| 126 |
-
'version' => '1.19.
|
| 127 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-users.php'
|
| 128 |
),
|
| 129 |
'Automattic\\Jetpack\\Sync\\Simple_Codec' => array(
|
| 130 |
-
'version' => '1.19.
|
| 131 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-simple-codec.php'
|
| 132 |
),
|
| 133 |
'Automattic\\Jetpack\\Sync\\Queue' => array(
|
| 134 |
-
'version' => '1.19.
|
| 135 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-queue.php'
|
| 136 |
),
|
| 137 |
'Automattic\\Jetpack\\Sync\\Modules' => array(
|
| 138 |
-
'version' => '1.19.
|
| 139 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-modules.php'
|
| 140 |
),
|
| 141 |
'Automattic\\Jetpack\\Sync\\Listener' => array(
|
| 142 |
-
'version' => '1.19.
|
| 143 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-listener.php'
|
| 144 |
),
|
| 145 |
'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array(
|
| 146 |
-
'version' => '1.19.
|
| 147 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-posts.php'
|
| 148 |
),
|
| 149 |
'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array(
|
| 150 |
-
'version' => '1.19.
|
| 151 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-attachments.php'
|
| 152 |
),
|
| 153 |
'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => array(
|
| 154 |
-
'version' => '1.19.
|
| 155 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php'
|
| 156 |
),
|
| 157 |
'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array(
|
| 158 |
-
'version' => '1.19.
|
| 159 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-woocommerce.php'
|
| 160 |
),
|
| 161 |
'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array(
|
| 162 |
-
'version' => '1.19.
|
| 163 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-wp-super-cache.php'
|
| 164 |
),
|
| 165 |
'Automattic\\Jetpack\\Sync\\Modules\\Module' => array(
|
| 166 |
-
'version' => '1.19.
|
| 167 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-module.php'
|
| 168 |
),
|
| 169 |
'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array(
|
| 170 |
-
'version' => '1.19.
|
| 171 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-plugins.php'
|
| 172 |
),
|
| 173 |
'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array(
|
| 174 |
-
'version' => '1.19.
|
| 175 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-menus.php'
|
| 176 |
),
|
| 177 |
'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array(
|
| 178 |
-
'version' => '1.19.
|
| 179 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-stats.php'
|
| 180 |
),
|
| 181 |
'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array(
|
| 182 |
-
'version' => '1.19.
|
| 183 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-meta.php'
|
| 184 |
),
|
| 185 |
'Automattic\\Jetpack\\Sync\\Modules\\Users' => array(
|
| 186 |
-
'version' => '1.19.
|
| 187 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-users.php'
|
| 188 |
),
|
| 189 |
'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array(
|
| 190 |
-
'version' => '1.19.
|
| 191 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-comments.php'
|
| 192 |
),
|
| 193 |
'Automattic\\Jetpack\\Sync\\Modules\\Options' => array(
|
| 194 |
-
'version' => '1.19.
|
| 195 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-options.php'
|
| 196 |
),
|
| 197 |
'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array(
|
| 198 |
-
'version' => '1.19.
|
| 199 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-constants.php'
|
| 200 |
),
|
| 201 |
'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array(
|
| 202 |
-
'version' => '1.19.
|
| 203 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-term-relationships.php'
|
| 204 |
),
|
| 205 |
'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array(
|
| 206 |
-
'version' => '1.19.
|
| 207 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-terms.php'
|
| 208 |
),
|
| 209 |
'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array(
|
| 210 |
-
'version' => '1.19.
|
| 211 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-themes.php'
|
| 212 |
),
|
| 213 |
'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array(
|
| 214 |
-
'version' => '1.19.
|
| 215 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-network-options.php'
|
| 216 |
),
|
| 217 |
'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array(
|
| 218 |
-
'version' => '1.19.
|
| 219 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-protect.php'
|
| 220 |
),
|
| 221 |
'Automattic\\Jetpack\\Sync\\Modules\\Import' => array(
|
| 222 |
-
'version' => '1.19.
|
| 223 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-import.php'
|
| 224 |
),
|
| 225 |
'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array(
|
| 226 |
-
'version' => '1.19.
|
| 227 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-callables.php'
|
| 228 |
),
|
| 229 |
'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array(
|
| 230 |
-
'version' => '1.19.
|
| 231 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-full-sync.php'
|
| 232 |
),
|
| 233 |
'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array(
|
| 234 |
-
'version' => '1.19.
|
| 235 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-updates.php'
|
| 236 |
),
|
| 237 |
'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array(
|
| 238 |
-
'version' => '1.19.
|
| 239 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-json-deflate-array-codec.php'
|
| 240 |
),
|
| 241 |
'Automattic\\Jetpack\\Sync\\Settings' => array(
|
| 242 |
-
'version' => '1.19.
|
| 243 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-settings.php'
|
| 244 |
),
|
| 245 |
'Automattic\\Jetpack\\Sync\\Health' => array(
|
| 246 |
-
'version' => '1.19.
|
| 247 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-health.php'
|
| 248 |
),
|
| 249 |
'Automattic\\Jetpack\\Sync\\Server' => array(
|
| 250 |
-
'version' => '1.19.
|
| 251 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-server.php'
|
| 252 |
),
|
| 253 |
'Automattic\\Jetpack\\Licensing' => array(
|
| 75 |
'path' => $baseDir . '/src/class-tracking.php'
|
| 76 |
),
|
| 77 |
'Automattic\\Jetpack\\Sync\\Defaults' => array(
|
| 78 |
+
'version' => '1.19.4.0',
|
| 79 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-defaults.php'
|
| 80 |
),
|
| 81 |
'Automattic\\Jetpack\\Sync\\Sender' => array(
|
| 82 |
+
'version' => '1.19.4.0',
|
| 83 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-sender.php'
|
| 84 |
),
|
| 85 |
'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array(
|
| 86 |
+
'version' => '1.19.4.0',
|
| 87 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/interface-replicastore.php'
|
| 88 |
),
|
| 89 |
'Automattic\\Jetpack\\Sync\\Replicastore' => array(
|
| 90 |
+
'version' => '1.19.4.0',
|
| 91 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-replicastore.php'
|
| 92 |
),
|
| 93 |
'Automattic\\Jetpack\\Sync\\Actions' => array(
|
| 94 |
+
'version' => '1.19.4.0',
|
| 95 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-actions.php'
|
| 96 |
),
|
| 97 |
'Automattic\\Jetpack\\Sync\\Functions' => array(
|
| 98 |
+
'version' => '1.19.4.0',
|
| 99 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-functions.php'
|
| 100 |
),
|
| 101 |
'Automattic\\Jetpack\\Sync\\Utils' => array(
|
| 102 |
+
'version' => '1.19.4.0',
|
| 103 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-utils.php'
|
| 104 |
),
|
| 105 |
'Automattic\\Jetpack\\Sync\\Lock' => array(
|
| 106 |
+
'version' => '1.19.4.0',
|
| 107 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-lock.php'
|
| 108 |
),
|
| 109 |
'Automattic\\Jetpack\\Sync\\Codec_Interface' => array(
|
| 110 |
+
'version' => '1.19.4.0',
|
| 111 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/interface-codec.php'
|
| 112 |
),
|
| 113 |
'Automattic\\Jetpack\\Sync\\Main' => array(
|
| 114 |
+
'version' => '1.19.4.0',
|
| 115 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-main.php'
|
| 116 |
),
|
| 117 |
'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array(
|
| 118 |
+
'version' => '1.19.4.0',
|
| 119 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-queue-buffer.php'
|
| 120 |
),
|
| 121 |
'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => array(
|
| 122 |
+
'version' => '1.19.4.0',
|
| 123 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/replicastore/class-table-checksum.php'
|
| 124 |
),
|
| 125 |
'Automattic\\Jetpack\\Sync\\Users' => array(
|
| 126 |
+
'version' => '1.19.4.0',
|
| 127 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-users.php'
|
| 128 |
),
|
| 129 |
'Automattic\\Jetpack\\Sync\\Simple_Codec' => array(
|
| 130 |
+
'version' => '1.19.4.0',
|
| 131 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-simple-codec.php'
|
| 132 |
),
|
| 133 |
'Automattic\\Jetpack\\Sync\\Queue' => array(
|
| 134 |
+
'version' => '1.19.4.0',
|
| 135 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-queue.php'
|
| 136 |
),
|
| 137 |
'Automattic\\Jetpack\\Sync\\Modules' => array(
|
| 138 |
+
'version' => '1.19.4.0',
|
| 139 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-modules.php'
|
| 140 |
),
|
| 141 |
'Automattic\\Jetpack\\Sync\\Listener' => array(
|
| 142 |
+
'version' => '1.19.4.0',
|
| 143 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-listener.php'
|
| 144 |
),
|
| 145 |
'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array(
|
| 146 |
+
'version' => '1.19.4.0',
|
| 147 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-posts.php'
|
| 148 |
),
|
| 149 |
'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array(
|
| 150 |
+
'version' => '1.19.4.0',
|
| 151 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-attachments.php'
|
| 152 |
),
|
| 153 |
'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => array(
|
| 154 |
+
'version' => '1.19.4.0',
|
| 155 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php'
|
| 156 |
),
|
| 157 |
'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array(
|
| 158 |
+
'version' => '1.19.4.0',
|
| 159 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-woocommerce.php'
|
| 160 |
),
|
| 161 |
'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array(
|
| 162 |
+
'version' => '1.19.4.0',
|
| 163 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-wp-super-cache.php'
|
| 164 |
),
|
| 165 |
'Automattic\\Jetpack\\Sync\\Modules\\Module' => array(
|
| 166 |
+
'version' => '1.19.4.0',
|
| 167 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-module.php'
|
| 168 |
),
|
| 169 |
'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array(
|
| 170 |
+
'version' => '1.19.4.0',
|
| 171 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-plugins.php'
|
| 172 |
),
|
| 173 |
'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array(
|
| 174 |
+
'version' => '1.19.4.0',
|
| 175 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-menus.php'
|
| 176 |
),
|
| 177 |
'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array(
|
| 178 |
+
'version' => '1.19.4.0',
|
| 179 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-stats.php'
|
| 180 |
),
|
| 181 |
'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array(
|
| 182 |
+
'version' => '1.19.4.0',
|
| 183 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-meta.php'
|
| 184 |
),
|
| 185 |
'Automattic\\Jetpack\\Sync\\Modules\\Users' => array(
|
| 186 |
+
'version' => '1.19.4.0',
|
| 187 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-users.php'
|
| 188 |
),
|
| 189 |
'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array(
|
| 190 |
+
'version' => '1.19.4.0',
|
| 191 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-comments.php'
|
| 192 |
),
|
| 193 |
'Automattic\\Jetpack\\Sync\\Modules\\Options' => array(
|
| 194 |
+
'version' => '1.19.4.0',
|
| 195 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-options.php'
|
| 196 |
),
|
| 197 |
'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array(
|
| 198 |
+
'version' => '1.19.4.0',
|
| 199 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-constants.php'
|
| 200 |
),
|
| 201 |
'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array(
|
| 202 |
+
'version' => '1.19.4.0',
|
| 203 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-term-relationships.php'
|
| 204 |
),
|
| 205 |
'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array(
|
| 206 |
+
'version' => '1.19.4.0',
|
| 207 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-terms.php'
|
| 208 |
),
|
| 209 |
'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array(
|
| 210 |
+
'version' => '1.19.4.0',
|
| 211 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-themes.php'
|
| 212 |
),
|
| 213 |
'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array(
|
| 214 |
+
'version' => '1.19.4.0',
|
| 215 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-network-options.php'
|
| 216 |
),
|
| 217 |
'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array(
|
| 218 |
+
'version' => '1.19.4.0',
|
| 219 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-protect.php'
|
| 220 |
),
|
| 221 |
'Automattic\\Jetpack\\Sync\\Modules\\Import' => array(
|
| 222 |
+
'version' => '1.19.4.0',
|
| 223 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-import.php'
|
| 224 |
),
|
| 225 |
'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array(
|
| 226 |
+
'version' => '1.19.4.0',
|
| 227 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-callables.php'
|
| 228 |
),
|
| 229 |
'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array(
|
| 230 |
+
'version' => '1.19.4.0',
|
| 231 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-full-sync.php'
|
| 232 |
),
|
| 233 |
'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array(
|
| 234 |
+
'version' => '1.19.4.0',
|
| 235 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-updates.php'
|
| 236 |
),
|
| 237 |
'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array(
|
| 238 |
+
'version' => '1.19.4.0',
|
| 239 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-json-deflate-array-codec.php'
|
| 240 |
),
|
| 241 |
'Automattic\\Jetpack\\Sync\\Settings' => array(
|
| 242 |
+
'version' => '1.19.4.0',
|
| 243 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-settings.php'
|
| 244 |
),
|
| 245 |
'Automattic\\Jetpack\\Sync\\Health' => array(
|
| 246 |
+
'version' => '1.19.4.0',
|
| 247 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-health.php'
|
| 248 |
),
|
| 249 |
'Automattic\\Jetpack\\Sync\\Server' => array(
|
| 250 |
+
'version' => '1.19.4.0',
|
| 251 |
'path' => $vendorDir . '/automattic/jetpack-sync/src/class-server.php'
|
| 252 |
),
|
| 253 |
'Automattic\\Jetpack\\Licensing' => 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 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\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jpe12a77269bbc61c939280ef237e26c51;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
