mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
Bump 2.5.3 version
This commit is contained in:
parent
3ac5c8ca90
commit
c6474e7497
4 changed files with 29 additions and 5 deletions
|
@ -1,5 +1,17 @@
|
|||
*** Changelog ***
|
||||
|
||||
= 2.5.4 - xxxx-xx-xx =
|
||||
* Fix - Cannot enable Apple Pay when API credentials were manually created #2015
|
||||
* Fix - Cart simulation type error #1943
|
||||
* Enhancement - Apple Pay recurring payments #1986
|
||||
* Enhancement - Use Pay Later Messaging configurator #1924
|
||||
* Enhancement - Real Time Account Updater (RTAU) integration #2027
|
||||
* Enhancement - Prepare the SKU for sending to PayPal #2033
|
||||
* Enhancement - Store the Card Brand in Address Verification Result instead of 3DS authentication result #2026
|
||||
* Enhancement - Update country eligibility for AdvancedCard Processing, Apple Pay, Google Pay #2019
|
||||
* Enhancement - Disable PayPal Vaulting setting instead of hiding it when Reference Transactions not available #2029
|
||||
* Enhancement - Store three d secure enrollment status and authentication status responses in wc order #1980
|
||||
|
||||
= 2.5.3 - 2024-02-06 =
|
||||
* Fix - Free trial subscription products using PayPal Vaulting when PayPal Subscriptions configured as Subscriptions Mode #1979
|
||||
* Fix - Pay by link - Germany - PayPal buttons are not visible on Pay for order page #2014
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "woocommerce-paypal-payments",
|
||||
"version": "2.5.3",
|
||||
"version": "2.5.4",
|
||||
"description": "WooCommerce PayPal Payments",
|
||||
"repository": "https://github.com/woocommerce/woocommerce-paypal-payments",
|
||||
"license": "GPL-2.0",
|
||||
|
|
14
readme.txt
14
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.4
|
||||
Requires PHP: 7.2
|
||||
Stable tag: 2.5.3
|
||||
Stable tag: 2.5.4
|
||||
License: GPLv2
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
@ -179,6 +179,18 @@ If you encounter issues with the PayPal buttons not appearing after an update, p
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 2.5.4 - xxxx-xx-xx =
|
||||
* Fix - Cannot enable Apple Pay when API credentials were manually created #2015
|
||||
* Fix - Cart simulation type error #1943
|
||||
* Enhancement - Apple Pay recurring payments #1986
|
||||
* Enhancement - Use Pay Later Messaging configurator #1924
|
||||
* Enhancement - Real Time Account Updater (RTAU) integration #2027
|
||||
* Enhancement - Prepare the SKU for sending to PayPal #2033
|
||||
* Enhancement - Store the Card Brand in Address Verification Result instead of 3DS authentication result #2026
|
||||
* Enhancement - Update country eligibility for AdvancedCard Processing, Apple Pay, Google Pay #2019
|
||||
* Enhancement - Disable PayPal Vaulting setting instead of hiding it when Reference Transactions not available #2029
|
||||
* Enhancement - Store three d secure enrollment status and authentication status responses in wc order #1980
|
||||
|
||||
= 2.5.3 - 2024-02-06 =
|
||||
* Fix - Free trial subscription products using PayPal Vaulting when PayPal Subscriptions configured as Subscriptions Mode #1979
|
||||
* Fix - Pay by link - Germany - PayPal buttons are not visible on Pay for order page #2014
|
||||
|
|
|
@ -3,13 +3,13 @@
|
|||
* 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.5.3
|
||||
* Version: 2.5.4
|
||||
* Author: WooCommerce
|
||||
* Author URI: https://woocommerce.com/
|
||||
* License: GPL-2.0
|
||||
* Requires PHP: 7.2
|
||||
* WC requires at least: 3.9
|
||||
* WC tested up to: 8.5
|
||||
* WC tested up to: 8.6
|
||||
* Text Domain: woocommerce-paypal-payments
|
||||
*
|
||||
* @package WooCommerce\PayPalCommerce
|
||||
|
@ -25,7 +25,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-02-01' );
|
||||
define( 'PAYPAL_INTEGRATION_DATE', '2024-02-16' );
|
||||
|
||||
! defined( 'CONNECT_WOO_CLIENT_ID' ) && define( 'CONNECT_WOO_CLIENT_ID', 'AcCAsWta_JTL__OfpjspNyH7c1GGHH332fLwonA5CwX4Y10mhybRZmHLA0GdRbwKwjQIhpDQy0pluX_P' );
|
||||
! defined( 'CONNECT_WOO_SANDBOX_CLIENT_ID' ) && define( 'CONNECT_WOO_SANDBOX_CLIENT_ID', 'AYmOHbt1VHg-OZ_oihPdzKEVbU3qg0qXonBcAztuzniQRaKE0w1Hr762cSFwd4n8wxOl-TCWohEa0XM_' );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue