diff --git a/changelog.txt b/changelog.txt index 330bde17c..aff541f84 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,29 @@ *** Changelog *** += 2.9.3 - xxxx-xx-xx = +* Fix - Multi-currency support #2667 +* Fix - "0.00" amount in Google Pay for virtual products #2636 +* Fix - Unsuccessfully payment from product page with Apple Pay button #2643 +* Fix - Button Unlinking PayPal Subscriptions plan does not showing for simple subscription #2618 +* Fix - Declare tokenization for ACDC only when vaulting enabled #2581 +* Fix - Classic shortcode block type checks #2608 +* Fix - PUI error in editor #2580 +* Fix - Add a new namespaced script loader for ApplePay #2682 #2675 +* Fix - Axo Block: Fix the Fastlane modal info message text overflow issue #2663 +* Fix - Add Custom Placeholder Handling when rendering the card fields #2651 +* Fix - Use the PayPal icons instead of WC ones #2639 +* Fix - Google Pay preview config and style #2661 +* Fix - Improve context detection #2631 +* Fix - Check that get_the_ID is valid before using #2573 +* Fix - Axo Block: Always display the Fastlane watermark in the includeAdditionalInfo mode #2690 +* Fix - Axo Block: Display card fields for authenticated cardless profiles #2672 +* Fix - Google Pay: Fix button preview in the editor #2688 +* Enhancement - Enhancement - Add Fastlane support for Checkout block +* Enhancement - Multiple calls to POST /v1/oauth2/token?grant_type=client_credentials&response_type=id_token #2671 +* Enhancement - Fastlane update shipping options & taxes when changing address #2665 +* Enhancement - Axo: Remove Axo from the Checkout block in the editor and add an ACDC card preview #2662 +* Enhancement - Set email when creating order for express payment #2577 + = 2.9.2 - 2024-10-01 = * Enhancement - Add Fastlane support for Classic Checkout * Fix - Fatal error when Pay Later messaging configurator was disabled with a code snippet diff --git a/modules/ppcp-api-client/services.php b/modules/ppcp-api-client/services.php index a3850bd7c..f838a8450 100644 --- a/modules/ppcp-api-client/services.php +++ b/modules/ppcp-api-client/services.php @@ -716,7 +716,6 @@ 'FR' => $mastercard_visa_amex, 'GB' => $mastercard_visa_amex, 'GR' => $mastercard_visa_amex, - 'HK' => $mastercard_visa_amex, 'HU' => $mastercard_visa_amex, 'IE' => $mastercard_visa_amex, 'IT' => $mastercard_visa_amex, @@ -746,7 +745,6 @@ 'SE' => $mastercard_visa_amex, 'SI' => $mastercard_visa_amex, 'SK' => $mastercard_visa_amex, - 'SG' => $mastercard_visa_amex, 'JP' => array( 'mastercard' => array(), 'visa' => array(), diff --git a/modules/ppcp-applepay/services.php b/modules/ppcp-applepay/services.php index 4667e6183..c88f98e22 100644 --- a/modules/ppcp-applepay/services.php +++ b/modules/ppcp-applepay/services.php @@ -191,7 +191,6 @@ static function( ContainerInterface $container ): AppleProductStatus { 'FR', // France 'DE', // Germany 'GR', // Greece - 'HK', // Hong Kong 'HU', // Hungary 'IE', // Ireland 'IT', // Italy @@ -205,7 +204,6 @@ static function( ContainerInterface $container ): AppleProductStatus { 'PL', // Poland 'PT', // Portugal 'RO', // Romania - 'SG', // Singapore 'SK', // Slovakia 'SI', // Slovenia 'ES', // Spain diff --git a/modules/ppcp-card-fields/services.php b/modules/ppcp-card-fields/services.php index d1bf340b3..1e32cc4f6 100644 --- a/modules/ppcp-card-fields/services.php +++ b/modules/ppcp-card-fields/services.php @@ -43,7 +43,6 @@ 'FR', 'DE', 'GR', - 'HK', 'HU', 'IE', 'IT', @@ -57,7 +56,6 @@ 'PT', 'RO', 'SK', - 'SG', 'SI', 'ES', 'SE', diff --git a/modules/ppcp-googlepay/services.php b/modules/ppcp-googlepay/services.php index 8b594db2e..96a264bbe 100644 --- a/modules/ppcp-googlepay/services.php +++ b/modules/ppcp-googlepay/services.php @@ -106,7 +106,6 @@ static function( ContainerInterface $container ): ApmProductStatus { 'FR', // France 'DE', // Germany 'GR', // Greece - 'HK', // Hong Kong 'HU', // Hungary 'IE', // Ireland 'IT', // Italy @@ -120,7 +119,6 @@ static function( ContainerInterface $container ): ApmProductStatus { 'PL', // Poland 'PT', // Portugal 'RO', // Romania - 'SG', // Singapore 'SK', // Slovakia 'SI', // Slovenia 'ES', // Spain diff --git a/modules/ppcp-save-payment-methods/services.php b/modules/ppcp-save-payment-methods/services.php index 0a45589d3..6792c2e1b 100644 --- a/modules/ppcp-save-payment-methods/services.php +++ b/modules/ppcp-save-payment-methods/services.php @@ -72,7 +72,6 @@ 'FR' => $default_currencies, 'DE' => $default_currencies, 'GR' => $default_currencies, - 'HK' => $default_currencies, 'HU' => $default_currencies, 'IE' => $default_currencies, 'IT' => $default_currencies, @@ -87,7 +86,6 @@ 'PT' => $default_currencies, 'RO' => $default_currencies, 'SK' => $default_currencies, - 'SG' => $default_currencies, 'SI' => $default_currencies, 'ES' => $default_currencies, 'SE' => $default_currencies, diff --git a/package.json b/package.json index d16e0d7b1..ca061c7c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "woocommerce-paypal-payments", - "version": "2.9.2", + "version": "2.9.3", "description": "WooCommerce PayPal Payments", "repository": "https://github.com/woocommerce/woocommerce-paypal-payments", "license": "GPL-2.0", diff --git a/readme.txt b/readme.txt index 63f20d26c..bfb8ebcb6 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: woocommerce, paypal, payments, ecommerce, credit card Requires at least: 6.3 Tested up to: 6.6 Requires PHP: 7.4 -Stable tag: 2.9.2 +Stable tag: 2.9.3 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -179,6 +179,30 @@ If you encounter issues with the PayPal buttons not appearing after an update, p == Changelog == += 2.9.3 - xxxx-xx-xx = +* Fix - Multi-currency support #2667 +* Fix - "0.00" amount in Google Pay for virtual products #2636 +* Fix - Unsuccessfully payment from product page with Apple Pay button #2643 +* Fix - Button Unlinking PayPal Subscriptions plan does not showing for simple subscription #2618 +* Fix - Declare tokenization for ACDC only when vaulting enabled #2581 +* Fix - Classic shortcode block type checks #2608 +* Fix - PUI error in editor #2580 +* Fix - Add a new namespaced script loader for ApplePay #2682 #2675 +* Fix - Axo Block: Fix the Fastlane modal info message text overflow issue #2663 +* Fix - Add Custom Placeholder Handling when rendering the card fields #2651 +* Fix - Use the PayPal icons instead of WC ones #2639 +* Fix - Google Pay preview config and style #2661 +* Fix - Improve context detection #2631 +* Fix - Check that get_the_ID is valid before using #2573 +* Fix - Axo Block: Always display the Fastlane watermark in the includeAdditionalInfo mode #2690 +* Fix - Axo Block: Display card fields for authenticated cardless profiles #2672 +* Fix - Google Pay: Fix button preview in the editor #2688 +* Enhancement - Enhancement - Add Fastlane support for Checkout block +* Enhancement - Multiple calls to POST /v1/oauth2/token?grant_type=client_credentials&response_type=id_token #2671 +* Enhancement - Fastlane update shipping options & taxes when changing address #2665 +* Enhancement - Axo: Remove Axo from the Checkout block in the editor and add an ACDC card preview #2662 +* Enhancement - Set email when creating order for express payment #2577 + = 2.9.2 - 2024-10-01 = * Enhancement - Add Fastlane support for Classic Checkout * Fix - Fatal error when Pay Later messaging configurator was disabled with a code snippet diff --git a/woocommerce-paypal-payments.php b/woocommerce-paypal-payments.php index 87e847804..2bad469be 100644 --- a/woocommerce-paypal-payments.php +++ b/woocommerce-paypal-payments.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce PayPal Payments * Plugin URI: https://woocommerce.com/products/woocommerce-paypal-payments/ * Description: PayPal's latest complete payments processing solution. Accept PayPal, Pay Later, credit/debit cards, alternative digital wallets local payment types and bank accounts. Turn on only PayPal options or process a full suite of payment methods. Enable global transaction with extensive currency and country coverage. - * Version: 2.9.2 + * Version: 2.9.3 * Author: WooCommerce * Author URI: https://woocommerce.com/ * License: GPL-2.0 @@ -26,7 +26,7 @@ define( 'PAYPAL_URL', 'https://www.paypal.com' ); define( 'PAYPAL_SANDBOX_API_URL', 'https://api-m.sandbox.paypal.com' ); define( 'PAYPAL_SANDBOX_URL', 'https://www.sandbox.paypal.com' ); -define( 'PAYPAL_INTEGRATION_DATE', '2024-09-30' ); +define( 'PAYPAL_INTEGRATION_DATE', '2024-10-11' ); define( 'PPCP_PAYPAL_BN_CODE', 'Woo_PPCP' ); ! defined( 'CONNECT_WOO_CLIENT_ID' ) && define( 'CONNECT_WOO_CLIENT_ID', 'AcCAsWta_JTL__OfpjspNyH7c1GGHH332fLwonA5CwX4Y10mhybRZmHLA0GdRbwKwjQIhpDQy0pluX_P' );