Version Description
- 2022-12-02 =
- Fix - Minor patch fix to cron functionality that does not appear to have front-end ramifications for customers.
Download this release
Release Info
| Developer | automattic |
| Plugin | |
| Version | 5.1.1 |
| Comparing to | |
| See all releases | |
Code changes from version 5.1.0 to 5.1.1
- changelog.txt +3 -0
- includes/class-wc-payments-blocks-payment-method.php +5 -1
- languages/woocommerce-payments.pot +2 -2
- readme.txt +4 -1
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.php +6 -6
- vendor/composer/jetpack_autoload_classmap.php +31 -31
- 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-php-autoloader.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-shutdown-handler.php +1 -1
- vendor/jetpack-autoloader/class-version-loader.php +1 -1
- vendor/jetpack-autoloader/class-version-selector.php +1 -1
- woocommerce-payments.php +1 -1
changelog.txt
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
*** WooCommerce Payments Changelog ***
|
| 2 |
|
|
|
|
|
|
|
|
|
|
| 3 |
= 5.1.0 - 2022-11-30 =
|
| 4 |
* Add - Add a counter of pending authorizations to Uncaptured tab in Transactions page.
|
| 5 |
* Add - Added support for a WooPay express checkout button on checkout blocks. This feature is currently behind a feature flag and is not yet publicly available.
|
| 1 |
*** WooCommerce Payments Changelog ***
|
| 2 |
|
| 3 |
+
= 5.1.1 - 2022-12-02 =
|
| 4 |
+
* Fix - Minor patch fix to cron functionality that does not appear to have front-end ramifications for customers.
|
| 5 |
+
|
| 6 |
= 5.1.0 - 2022-11-30 =
|
| 7 |
* Add - Add a counter of pending authorizations to Uncaptured tab in Transactions page.
|
| 8 |
* Add - Added support for a WooPay express checkout button on checkout blocks. This feature is currently behind a feature flag and is not yet publicly available.
|
includes/class-wc-payments-blocks-payment-method.php
CHANGED
|
@@ -114,9 +114,13 @@ class WC_Payments_Blocks_Payment_Method extends AbstractPaymentMethodType {
|
|
| 114 |
* @return string
|
| 115 |
*/
|
| 116 |
public function maybe_add_card_testing_token( $content ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
$fraud_prevention_service = Fraud_Prevention_Service::get_instance();
|
| 118 |
// phpcs:ignore WordPress.Security.NonceVerification.Missing,WordPress.Security.ValidatedSanitizedInput.MissingUnslash,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
| 119 |
-
if ( $fraud_prevention_service->is_enabled()
|
| 120 |
$content .= '<input type="hidden" name="wcpay-fraud-prevention-token" id="wcpay-fraud-prevention-token" value="' . esc_attr( Fraud_Prevention_Service::get_instance()->get_token() ) . '">';
|
| 121 |
}
|
| 122 |
return $content;
|
| 114 |
* @return string
|
| 115 |
*/
|
| 116 |
public function maybe_add_card_testing_token( $content ) {
|
| 117 |
+
if ( ! wp_script_is( 'WCPAY_BLOCKS_CHECKOUT' ) ) {
|
| 118 |
+
return $content;
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
$fraud_prevention_service = Fraud_Prevention_Service::get_instance();
|
| 122 |
// phpcs:ignore WordPress.Security.NonceVerification.Missing,WordPress.Security.ValidatedSanitizedInput.MissingUnslash,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
| 123 |
+
if ( $fraud_prevention_service->is_enabled() ) {
|
| 124 |
$content .= '<input type="hidden" name="wcpay-fraud-prevention-token" id="wcpay-fraud-prevention-token" value="' . esc_attr( Fraud_Prevention_Service::get_instance()->get_token() ) . '">';
|
| 125 |
}
|
| 126 |
return $content;
|
languages/woocommerce-payments.pot
CHANGED
|
@@ -2,10 +2,10 @@
|
|
| 2 |
# This file is distributed under the same license as the WooCommerce Payments package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: WooCommerce Payments 5.1.
|
| 6 |
"Report-Msgid-Bugs-To: "
|
| 7 |
"https://wordpress.org/support/plugin/woocommerce-payments\n"
|
| 8 |
-
"POT-Creation-Date: 2022-
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 2 |
# This file is distributed under the same license as the WooCommerce Payments package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: WooCommerce Payments 5.1.1\n"
|
| 6 |
"Report-Msgid-Bugs-To: "
|
| 7 |
"https://wordpress.org/support/plugin/woocommerce-payments\n"
|
| 8 |
+
"POT-Creation-Date: 2022-12-02 08:33:30+00:00\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Tags: payment gateway, payment, apple pay, credit card, google pay
|
|
| 4 |
Requires at least: 5.9
|
| 5 |
Tested up to: 6.1
|
| 6 |
Requires PHP: 7.0
|
| 7 |
-
Stable tag: 5.1.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -98,6 +98,9 @@ Please note that our support for the checkout block is still experimental and th
|
|
| 98 |
|
| 99 |
== Changelog ==
|
| 100 |
|
|
|
|
|
|
|
|
|
|
| 101 |
= 5.1.0 - 2022-11-30 =
|
| 102 |
* Add - Add a counter of pending authorizations to Uncaptured tab in Transactions page.
|
| 103 |
* Add - Added support for a WooPay express checkout button on checkout blocks. This feature is currently behind a feature flag and is not yet publicly available.
|
| 4 |
Requires at least: 5.9
|
| 5 |
Tested up to: 6.1
|
| 6 |
Requires PHP: 7.0
|
| 7 |
+
Stable tag: 5.1.1
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 98 |
|
| 99 |
== Changelog ==
|
| 100 |
|
| 101 |
+
= 5.1.1 - 2022-12-02 =
|
| 102 |
+
* Fix - Minor patch fix to cron functionality that does not appear to have front-end ramifications for customers.
|
| 103 |
+
|
| 104 |
= 5.1.0 - 2022-11-30 =
|
| 105 |
* Add - Add a counter of pending authorizations to Uncaptured tab in Transactions page.
|
| 106 |
* Add - Added support for a WooPay express checkout button on checkout blocks. This feature is currently behind a feature flag and is not yet publicly available.
|
vendor/autoload.php
CHANGED
|
@@ -22,4 +22,4 @@ if (PHP_VERSION_ID < 50600) {
|
|
| 22 |
|
| 23 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 24 |
|
| 25 |
-
return
|
| 22 |
|
| 23 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 24 |
|
| 25 |
+
return ComposerAutoloaderInit0207f080bce8e671de8c57bc36b0f737::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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -24,18 +24,18 @@ class ComposerAutoloaderInitf8c869bb3928ff6f2ac6be82fd08cd3f
|
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
-
spl_autoload_register(array('
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
| 29 |
-
spl_autoload_unregister(array('
|
| 30 |
|
| 31 |
require __DIR__ . '/autoload_static.php';
|
| 32 |
-
call_user_func(\Composer\Autoload\
|
| 33 |
|
| 34 |
$loader->register(true);
|
| 35 |
|
| 36 |
-
$includeFiles = \Composer\Autoload\
|
| 37 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 38 |
-
|
| 39 |
}
|
| 40 |
|
| 41 |
return $loader;
|
|
@@ -47,7 +47,7 @@ class ComposerAutoloaderInitf8c869bb3928ff6f2ac6be82fd08cd3f
|
|
| 47 |
* @param string $file
|
| 48 |
* @return void
|
| 49 |
*/
|
| 50 |
-
function
|
| 51 |
{
|
| 52 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 53 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit0207f080bce8e671de8c57bc36b0f737
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
+
spl_autoload_register(array('ComposerAutoloaderInit0207f080bce8e671de8c57bc36b0f737', 'loadClassLoader'), true, true);
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
| 29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit0207f080bce8e671de8c57bc36b0f737', 'loadClassLoader'));
|
| 30 |
|
| 31 |
require __DIR__ . '/autoload_static.php';
|
| 32 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit0207f080bce8e671de8c57bc36b0f737::getInitializer($loader));
|
| 33 |
|
| 34 |
$loader->register(true);
|
| 35 |
|
| 36 |
+
$includeFiles = \Composer\Autoload\ComposerStaticInit0207f080bce8e671de8c57bc36b0f737::$files;
|
| 37 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 38 |
+
composerRequire0207f080bce8e671de8c57bc36b0f737($fileIdentifier, $file);
|
| 39 |
}
|
| 40 |
|
| 41 |
return $loader;
|
| 47 |
* @param string $file
|
| 48 |
* @return void
|
| 49 |
*/
|
| 50 |
+
function composerRequire0207f080bce8e671de8c57bc36b0f737($fileIdentifier, $file)
|
| 51 |
{
|
| 52 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 53 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
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 |
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/..' . '/automattic/jetpack-assets/actions.php',
|
|
@@ -292,9 +292,9 @@ class ComposerStaticInitf8c869bb3928ff6f2ac6be82fd08cd3f
|
|
| 292 |
public static function getInitializer(ClassLoader $loader)
|
| 293 |
{
|
| 294 |
return \Closure::bind(function () use ($loader) {
|
| 295 |
-
$loader->prefixLengthsPsr4 =
|
| 296 |
-
$loader->prefixDirsPsr4 =
|
| 297 |
-
$loader->classMap =
|
| 298 |
|
| 299 |
}, null, ClassLoader::class);
|
| 300 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInit0207f080bce8e671de8c57bc36b0f737
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/..' . '/automattic/jetpack-assets/actions.php',
|
| 292 |
public static function getInitializer(ClassLoader $loader)
|
| 293 |
{
|
| 294 |
return \Closure::bind(function () use ($loader) {
|
| 295 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit0207f080bce8e671de8c57bc36b0f737::$prefixLengthsPsr4;
|
| 296 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit0207f080bce8e671de8c57bc36b0f737::$prefixDirsPsr4;
|
| 297 |
+
$loader->classMap = ComposerStaticInit0207f080bce8e671de8c57bc36b0f737::$classMap;
|
| 298 |
|
| 299 |
}, null, ClassLoader::class);
|
| 300 |
}
|
vendor/composer/installed.php
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
<?php return array(
|
| 2 |
'root' => array(
|
| 3 |
'name' => 'woocommerce/payments',
|
| 4 |
-
'pretty_version' => 'dev-release/5.1.
|
| 5 |
-
'version' => 'dev-release/5.1.
|
| 6 |
-
'reference' => '
|
| 7 |
'type' => 'wordpress-plugin',
|
| 8 |
'install_path' => __DIR__ . '/../../',
|
| 9 |
'aliases' => array(),
|
|
@@ -194,9 +194,9 @@
|
|
| 194 |
),
|
| 195 |
),
|
| 196 |
'woocommerce/payments' => array(
|
| 197 |
-
'pretty_version' => 'dev-release/5.1.
|
| 198 |
-
'version' => 'dev-release/5.1.
|
| 199 |
-
'reference' => '
|
| 200 |
'type' => 'wordpress-plugin',
|
| 201 |
'install_path' => __DIR__ . '/../../',
|
| 202 |
'aliases' => array(),
|
| 1 |
<?php return array(
|
| 2 |
'root' => array(
|
| 3 |
'name' => 'woocommerce/payments',
|
| 4 |
+
'pretty_version' => 'dev-release/5.1.1',
|
| 5 |
+
'version' => 'dev-release/5.1.1',
|
| 6 |
+
'reference' => 'eda34ba54532a3e8302e081bb7cabead13661e89',
|
| 7 |
'type' => 'wordpress-plugin',
|
| 8 |
'install_path' => __DIR__ . '/../../',
|
| 9 |
'aliases' => array(),
|
| 194 |
),
|
| 195 |
),
|
| 196 |
'woocommerce/payments' => array(
|
| 197 |
+
'pretty_version' => 'dev-release/5.1.1',
|
| 198 |
+
'version' => 'dev-release/5.1.1',
|
| 199 |
+
'reference' => 'eda34ba54532a3e8302e081bb7cabead13661e89',
|
| 200 |
'type' => 'wordpress-plugin',
|
| 201 |
'install_path' => __DIR__ . '/../../',
|
| 202 |
'aliases' => array(),
|
vendor/composer/jetpack_autoload_classmap.php
CHANGED
|
@@ -7,127 +7,127 @@ $baseDir = dirname($vendorDir);
|
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'WCPay\\MultiCurrency\\AdminNotices' => array(
|
| 10 |
-
'version' => 'dev-release/5.1.
|
| 11 |
'path' => $baseDir . '/includes/multi-currency/AdminNotices.php'
|
| 12 |
),
|
| 13 |
'WCPay\\MultiCurrency\\Notes\\NoteMultiCurrencyAvailable' => array(
|
| 14 |
-
'version' => 'dev-release/5.1.
|
| 15 |
'path' => $baseDir . '/includes/multi-currency/Notes/NoteMultiCurrencyAvailable.php'
|
| 16 |
),
|
| 17 |
'WCPay\\MultiCurrency\\StorefrontIntegration' => array(
|
| 18 |
-
'version' => 'dev-release/5.1.
|
| 19 |
'path' => $baseDir . '/includes/multi-currency/StorefrontIntegration.php'
|
| 20 |
),
|
| 21 |
'WCPay\\MultiCurrency\\Tracking' => array(
|
| 22 |
-
'version' => 'dev-release/5.1.
|
| 23 |
'path' => $baseDir . '/includes/multi-currency/Tracking.php'
|
| 24 |
),
|
| 25 |
'WCPay\\MultiCurrency\\RestController' => array(
|
| 26 |
-
'version' => 'dev-release/5.1.
|
| 27 |
'path' => $baseDir . '/includes/multi-currency/RestController.php'
|
| 28 |
),
|
| 29 |
'WCPay\\MultiCurrency\\MultiCurrency' => array(
|
| 30 |
-
'version' => 'dev-release/5.1.
|
| 31 |
'path' => $baseDir . '/includes/multi-currency/MultiCurrency.php'
|
| 32 |
),
|
| 33 |
'WCPay\\MultiCurrency\\CurrencySwitcherBlock' => array(
|
| 34 |
-
'version' => 'dev-release/5.1.
|
| 35 |
'path' => $baseDir . '/includes/multi-currency/CurrencySwitcherBlock.php'
|
| 36 |
),
|
| 37 |
'WCPay\\MultiCurrency\\SettingsOnboardCta' => array(
|
| 38 |
-
'version' => 'dev-release/5.1.
|
| 39 |
'path' => $baseDir . '/includes/multi-currency/SettingsOnboardCta.php'
|
| 40 |
),
|
| 41 |
'WCPay\\MultiCurrency\\CountryFlags' => array(
|
| 42 |
-
'version' => 'dev-release/5.1.
|
| 43 |
'path' => $baseDir . '/includes/multi-currency/CountryFlags.php'
|
| 44 |
),
|
| 45 |
'WCPay\\MultiCurrency\\PaymentMethodsCompatibility' => array(
|
| 46 |
-
'version' => 'dev-release/5.1.
|
| 47 |
'path' => $baseDir . '/includes/multi-currency/PaymentMethodsCompatibility.php'
|
| 48 |
),
|
| 49 |
'WCPay\\MultiCurrency\\BackendCurrencies' => array(
|
| 50 |
-
'version' => 'dev-release/5.1.
|
| 51 |
'path' => $baseDir . '/includes/multi-currency/BackendCurrencies.php'
|
| 52 |
),
|
| 53 |
'WCPay\\MultiCurrency\\Geolocation' => array(
|
| 54 |
-
'version' => 'dev-release/5.1.
|
| 55 |
'path' => $baseDir . '/includes/multi-currency/Geolocation.php'
|
| 56 |
),
|
| 57 |
'WCPay\\MultiCurrency\\UserSettings' => array(
|
| 58 |
-
'version' => 'dev-release/5.1.
|
| 59 |
'path' => $baseDir . '/includes/multi-currency/UserSettings.php'
|
| 60 |
),
|
| 61 |
'WCPay\\MultiCurrency\\Settings' => array(
|
| 62 |
-
'version' => 'dev-release/5.1.
|
| 63 |
'path' => $baseDir . '/includes/multi-currency/Settings.php'
|
| 64 |
),
|
| 65 |
'WCPay\\MultiCurrency\\CurrencySwitcherWidget' => array(
|
| 66 |
-
'version' => 'dev-release/5.1.
|
| 67 |
'path' => $baseDir . '/includes/multi-currency/CurrencySwitcherWidget.php'
|
| 68 |
),
|
| 69 |
'WCPay\\MultiCurrency\\FrontendCurrencies' => array(
|
| 70 |
-
'version' => 'dev-release/5.1.
|
| 71 |
'path' => $baseDir . '/includes/multi-currency/FrontendCurrencies.php'
|
| 72 |
),
|
| 73 |
'WCPay\\MultiCurrency\\FrontendPrices' => array(
|
| 74 |
-
'version' => 'dev-release/5.1.
|
| 75 |
'path' => $baseDir . '/includes/multi-currency/FrontendPrices.php'
|
| 76 |
),
|
| 77 |
'WCPay\\MultiCurrency\\Currency' => array(
|
| 78 |
-
'version' => 'dev-release/5.1.
|
| 79 |
'path' => $baseDir . '/includes/multi-currency/Currency.php'
|
| 80 |
),
|
| 81 |
'WCPay\\MultiCurrency\\Analytics' => array(
|
| 82 |
-
'version' => 'dev-release/5.1.
|
| 83 |
'path' => $baseDir . '/includes/multi-currency/Analytics.php'
|
| 84 |
),
|
| 85 |
'WCPay\\MultiCurrency\\Utils' => array(
|
| 86 |
-
'version' => 'dev-release/5.1.
|
| 87 |
'path' => $baseDir . '/includes/multi-currency/Utils.php'
|
| 88 |
),
|
| 89 |
'WCPay\\MultiCurrency\\Compatibility' => array(
|
| 90 |
-
'version' => 'dev-release/5.1.
|
| 91 |
'path' => $baseDir . '/includes/multi-currency/Compatibility.php'
|
| 92 |
),
|
| 93 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceNameYourPrice' => array(
|
| 94 |
-
'version' => 'dev-release/5.1.
|
| 95 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceNameYourPrice.php'
|
| 96 |
),
|
| 97 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceUPS' => array(
|
| 98 |
-
'version' => 'dev-release/5.1.
|
| 99 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceUPS.php'
|
| 100 |
),
|
| 101 |
'WCPay\\MultiCurrency\\Compatibility\\BaseCompatibility' => array(
|
| 102 |
-
'version' => 'dev-release/5.1.
|
| 103 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/BaseCompatibility.php'
|
| 104 |
),
|
| 105 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceBookings' => array(
|
| 106 |
-
'version' => 'dev-release/5.1.
|
| 107 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceBookings.php'
|
| 108 |
),
|
| 109 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommercePointsAndRewards' => array(
|
| 110 |
-
'version' => 'dev-release/5.1.
|
| 111 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommercePointsAndRewards.php'
|
| 112 |
),
|
| 113 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceProductAddOns' => array(
|
| 114 |
-
'version' => 'dev-release/5.1.
|
| 115 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceProductAddOns.php'
|
| 116 |
),
|
| 117 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceDeposits' => array(
|
| 118 |
-
'version' => 'dev-release/5.1.
|
| 119 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceDeposits.php'
|
| 120 |
),
|
| 121 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceFedEx' => array(
|
| 122 |
-
'version' => 'dev-release/5.1.
|
| 123 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceFedEx.php'
|
| 124 |
),
|
| 125 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceSubscriptions' => array(
|
| 126 |
-
'version' => 'dev-release/5.1.
|
| 127 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceSubscriptions.php'
|
| 128 |
),
|
| 129 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommercePreOrders' => array(
|
| 130 |
-
'version' => 'dev-release/5.1.
|
| 131 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommercePreOrders.php'
|
| 132 |
),
|
| 133 |
'MyCLabs\\Enum\\Enum' => array(
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'WCPay\\MultiCurrency\\AdminNotices' => array(
|
| 10 |
+
'version' => 'dev-release/5.1.1',
|
| 11 |
'path' => $baseDir . '/includes/multi-currency/AdminNotices.php'
|
| 12 |
),
|
| 13 |
'WCPay\\MultiCurrency\\Notes\\NoteMultiCurrencyAvailable' => array(
|
| 14 |
+
'version' => 'dev-release/5.1.1',
|
| 15 |
'path' => $baseDir . '/includes/multi-currency/Notes/NoteMultiCurrencyAvailable.php'
|
| 16 |
),
|
| 17 |
'WCPay\\MultiCurrency\\StorefrontIntegration' => array(
|
| 18 |
+
'version' => 'dev-release/5.1.1',
|
| 19 |
'path' => $baseDir . '/includes/multi-currency/StorefrontIntegration.php'
|
| 20 |
),
|
| 21 |
'WCPay\\MultiCurrency\\Tracking' => array(
|
| 22 |
+
'version' => 'dev-release/5.1.1',
|
| 23 |
'path' => $baseDir . '/includes/multi-currency/Tracking.php'
|
| 24 |
),
|
| 25 |
'WCPay\\MultiCurrency\\RestController' => array(
|
| 26 |
+
'version' => 'dev-release/5.1.1',
|
| 27 |
'path' => $baseDir . '/includes/multi-currency/RestController.php'
|
| 28 |
),
|
| 29 |
'WCPay\\MultiCurrency\\MultiCurrency' => array(
|
| 30 |
+
'version' => 'dev-release/5.1.1',
|
| 31 |
'path' => $baseDir . '/includes/multi-currency/MultiCurrency.php'
|
| 32 |
),
|
| 33 |
'WCPay\\MultiCurrency\\CurrencySwitcherBlock' => array(
|
| 34 |
+
'version' => 'dev-release/5.1.1',
|
| 35 |
'path' => $baseDir . '/includes/multi-currency/CurrencySwitcherBlock.php'
|
| 36 |
),
|
| 37 |
'WCPay\\MultiCurrency\\SettingsOnboardCta' => array(
|
| 38 |
+
'version' => 'dev-release/5.1.1',
|
| 39 |
'path' => $baseDir . '/includes/multi-currency/SettingsOnboardCta.php'
|
| 40 |
),
|
| 41 |
'WCPay\\MultiCurrency\\CountryFlags' => array(
|
| 42 |
+
'version' => 'dev-release/5.1.1',
|
| 43 |
'path' => $baseDir . '/includes/multi-currency/CountryFlags.php'
|
| 44 |
),
|
| 45 |
'WCPay\\MultiCurrency\\PaymentMethodsCompatibility' => array(
|
| 46 |
+
'version' => 'dev-release/5.1.1',
|
| 47 |
'path' => $baseDir . '/includes/multi-currency/PaymentMethodsCompatibility.php'
|
| 48 |
),
|
| 49 |
'WCPay\\MultiCurrency\\BackendCurrencies' => array(
|
| 50 |
+
'version' => 'dev-release/5.1.1',
|
| 51 |
'path' => $baseDir . '/includes/multi-currency/BackendCurrencies.php'
|
| 52 |
),
|
| 53 |
'WCPay\\MultiCurrency\\Geolocation' => array(
|
| 54 |
+
'version' => 'dev-release/5.1.1',
|
| 55 |
'path' => $baseDir . '/includes/multi-currency/Geolocation.php'
|
| 56 |
),
|
| 57 |
'WCPay\\MultiCurrency\\UserSettings' => array(
|
| 58 |
+
'version' => 'dev-release/5.1.1',
|
| 59 |
'path' => $baseDir . '/includes/multi-currency/UserSettings.php'
|
| 60 |
),
|
| 61 |
'WCPay\\MultiCurrency\\Settings' => array(
|
| 62 |
+
'version' => 'dev-release/5.1.1',
|
| 63 |
'path' => $baseDir . '/includes/multi-currency/Settings.php'
|
| 64 |
),
|
| 65 |
'WCPay\\MultiCurrency\\CurrencySwitcherWidget' => array(
|
| 66 |
+
'version' => 'dev-release/5.1.1',
|
| 67 |
'path' => $baseDir . '/includes/multi-currency/CurrencySwitcherWidget.php'
|
| 68 |
),
|
| 69 |
'WCPay\\MultiCurrency\\FrontendCurrencies' => array(
|
| 70 |
+
'version' => 'dev-release/5.1.1',
|
| 71 |
'path' => $baseDir . '/includes/multi-currency/FrontendCurrencies.php'
|
| 72 |
),
|
| 73 |
'WCPay\\MultiCurrency\\FrontendPrices' => array(
|
| 74 |
+
'version' => 'dev-release/5.1.1',
|
| 75 |
'path' => $baseDir . '/includes/multi-currency/FrontendPrices.php'
|
| 76 |
),
|
| 77 |
'WCPay\\MultiCurrency\\Currency' => array(
|
| 78 |
+
'version' => 'dev-release/5.1.1',
|
| 79 |
'path' => $baseDir . '/includes/multi-currency/Currency.php'
|
| 80 |
),
|
| 81 |
'WCPay\\MultiCurrency\\Analytics' => array(
|
| 82 |
+
'version' => 'dev-release/5.1.1',
|
| 83 |
'path' => $baseDir . '/includes/multi-currency/Analytics.php'
|
| 84 |
),
|
| 85 |
'WCPay\\MultiCurrency\\Utils' => array(
|
| 86 |
+
'version' => 'dev-release/5.1.1',
|
| 87 |
'path' => $baseDir . '/includes/multi-currency/Utils.php'
|
| 88 |
),
|
| 89 |
'WCPay\\MultiCurrency\\Compatibility' => array(
|
| 90 |
+
'version' => 'dev-release/5.1.1',
|
| 91 |
'path' => $baseDir . '/includes/multi-currency/Compatibility.php'
|
| 92 |
),
|
| 93 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceNameYourPrice' => array(
|
| 94 |
+
'version' => 'dev-release/5.1.1',
|
| 95 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceNameYourPrice.php'
|
| 96 |
),
|
| 97 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceUPS' => array(
|
| 98 |
+
'version' => 'dev-release/5.1.1',
|
| 99 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceUPS.php'
|
| 100 |
),
|
| 101 |
'WCPay\\MultiCurrency\\Compatibility\\BaseCompatibility' => array(
|
| 102 |
+
'version' => 'dev-release/5.1.1',
|
| 103 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/BaseCompatibility.php'
|
| 104 |
),
|
| 105 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceBookings' => array(
|
| 106 |
+
'version' => 'dev-release/5.1.1',
|
| 107 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceBookings.php'
|
| 108 |
),
|
| 109 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommercePointsAndRewards' => array(
|
| 110 |
+
'version' => 'dev-release/5.1.1',
|
| 111 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommercePointsAndRewards.php'
|
| 112 |
),
|
| 113 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceProductAddOns' => array(
|
| 114 |
+
'version' => 'dev-release/5.1.1',
|
| 115 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceProductAddOns.php'
|
| 116 |
),
|
| 117 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceDeposits' => array(
|
| 118 |
+
'version' => 'dev-release/5.1.1',
|
| 119 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceDeposits.php'
|
| 120 |
),
|
| 121 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceFedEx' => array(
|
| 122 |
+
'version' => 'dev-release/5.1.1',
|
| 123 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceFedEx.php'
|
| 124 |
),
|
| 125 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommerceSubscriptions' => array(
|
| 126 |
+
'version' => 'dev-release/5.1.1',
|
| 127 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceSubscriptions.php'
|
| 128 |
),
|
| 129 |
'WCPay\\MultiCurrency\\Compatibility\\WooCommercePreOrders' => array(
|
| 130 |
+
'version' => 'dev-release/5.1.1',
|
| 131 |
'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommercePreOrders.php'
|
| 132 |
),
|
| 133 |
'MyCLabs\\Enum\\Enum' => 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-php-autoloader.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-shutdown-handler.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 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\jp0207f080bce8e671de8c57bc36b0f737;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
woocommerce-payments.php
CHANGED
|
@@ -12,7 +12,7 @@
|
|
| 12 |
* WC tested up to: 7.1.0
|
| 13 |
* Requires at least: 5.9
|
| 14 |
* Requires PHP: 7.0
|
| 15 |
-
* Version: 5.1.
|
| 16 |
*
|
| 17 |
* @package WooCommerce\Payments
|
| 18 |
*/
|
| 12 |
* WC tested up to: 7.1.0
|
| 13 |
* Requires at least: 5.9
|
| 14 |
* Requires PHP: 7.0
|
| 15 |
+
* Version: 5.1.1
|
| 16 |
*
|
| 17 |
* @package WooCommerce\Payments
|
| 18 |
*/
|
