mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
Merge pull request #2494 from woocommerce/release/2.8.3-rc1
Release 2.8.3-rc1
This commit is contained in:
commit
44fde3c703
4 changed files with 38 additions and 4 deletions
|
@ -1,5 +1,22 @@
|
|||
*** Changelog ***
|
||||
|
||||
= 2.8.3 - xxxx-xx-xx =
|
||||
* Fix - Google Pay: Prevent field validation from being triggered on checkout page load #2474
|
||||
* Fix - Do not add tax info into order meta during order creation #2471
|
||||
* Fix - PayPal declares subscription support when for Subscription mode is set Disable PayPal for subscription #2425
|
||||
* Fix - PayPal js files loaded on non PayPal pages #2411
|
||||
* Fix - Google Pay: Fix the incorrect popup triggering #2414
|
||||
* Fix - Add tax configurator when programmatically creating WC orders #2431
|
||||
* Fix - Shipping callback compatibility with WC Name Your Price plugin #2402
|
||||
* Fix - Uncaught Error: Cannot use object of type ...\Settings as array in .../AbstractPaymentMethodType.php (3253) #2334
|
||||
* Fix - Prevent displaying smart button multiple times on variable product page #2420
|
||||
* Fix - Prevent enabling Standard Card Button when ACDC is enabled #2404
|
||||
* Fix - Use client credentials for user tokens #2491
|
||||
* Fix - Apple Pay: Fix the shipping callback #2492
|
||||
* Enhancement - Separate Google Pay button for Classic Checkout #2430
|
||||
* Enhancement - Add Apple Pay and Google Pay support for China, simplify country-currency matrix #2468
|
||||
* Enhancement - Add AMEX support for Advanced Card Processing in China #2469
|
||||
|
||||
= 2.8.2 - 2024-07-22 =
|
||||
* Fix - Sold individually checkbox automatically disabled after adding product to the cart more than once #2415
|
||||
* Fix - All products "Sold individually" when PayPal Subscriptions selected as Subscriptions Mode #2400
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "woocommerce-paypal-payments",
|
||||
"version": "2.8.2",
|
||||
"version": "2.8.3",
|
||||
"description": "WooCommerce PayPal Payments",
|
||||
"repository": "https://github.com/woocommerce/woocommerce-paypal-payments",
|
||||
"license": "GPL-2.0",
|
||||
|
|
19
readme.txt
19
readme.txt
|
@ -4,7 +4,7 @@ Tags: woocommerce, paypal, payments, ecommerce, checkout, cart, pay later, apple
|
|||
Requires at least: 5.3
|
||||
Tested up to: 6.6
|
||||
Requires PHP: 7.2
|
||||
Stable tag: 2.8.2
|
||||
Stable tag: 2.8.3
|
||||
License: GPLv2
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
@ -179,6 +179,23 @@ If you encounter issues with the PayPal buttons not appearing after an update, p
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 2.8.3 - xxxx-xx-xx =
|
||||
* Fix - Google Pay: Prevent field validation from being triggered on checkout page load #2474
|
||||
* Fix - Do not add tax info into order meta during order creation #2471
|
||||
* Fix - PayPal declares subscription support when for Subscription mode is set Disable PayPal for subscription #2425
|
||||
* Fix - PayPal js files loaded on non PayPal pages #2411
|
||||
* Fix - Google Pay: Fix the incorrect popup triggering #2414
|
||||
* Fix - Add tax configurator when programmatically creating WC orders #2431
|
||||
* Fix - Shipping callback compatibility with WC Name Your Price plugin #2402
|
||||
* Fix - Uncaught Error: Cannot use object of type ...\Settings as array in .../AbstractPaymentMethodType.php (3253) #2334
|
||||
* Fix - Prevent displaying smart button multiple times on variable product page #2420
|
||||
* Fix - Prevent enabling Standard Card Button when ACDC is enabled #2404
|
||||
* Fix - Use client credentials for user tokens #2491
|
||||
* Fix - Apple Pay: Fix the shipping callback #2492
|
||||
* Enhancement - Separate Google Pay button for Classic Checkout #2430
|
||||
* Enhancement - Add Apple Pay and Google Pay support for China, simplify country-currency matrix #2468
|
||||
* Enhancement - Add AMEX support for Advanced Card Processing in China #2469
|
||||
|
||||
= 2.8.2 - 2024-07-22 =
|
||||
* Fix - Sold individually checkbox automatically disabled after adding product to the cart more than once #2415
|
||||
* Fix - All products "Sold individually" when PayPal Subscriptions selected as Subscriptions Mode #2400
|
||||
|
|
|
@ -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.8.2
|
||||
* Version: 2.8.3
|
||||
* Author: WooCommerce
|
||||
* Author URI: https://woocommerce.com/
|
||||
* License: GPL-2.0
|
||||
|
@ -26,7 +26,7 @@ define( 'PAYPAL_API_URL', 'https://api-m.paypal.com' );
|
|||
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-07-17' );
|
||||
define( 'PAYPAL_INTEGRATION_DATE', '2024-08-07' );
|
||||
define( 'PPCP_PAYPAL_BN_CODE', 'Woo_PPCP' );
|
||||
|
||||
! defined( 'CONNECT_WOO_CLIENT_ID' ) && define( 'CONNECT_WOO_CLIENT_ID', 'AcCAsWta_JTL__OfpjspNyH7c1GGHH332fLwonA5CwX4Y10mhybRZmHLA0GdRbwKwjQIhpDQy0pluX_P' );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue