mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Bump 2.4.0 version
This commit is contained in:
parent
27d15bfc8d
commit
5cb4136f5e
4 changed files with 34 additions and 5 deletions
|
@ -1,5 +1,20 @@
|
|||
*** Changelog ***
|
||||
|
||||
= 2.4.0 - xxxx-xx-xx =
|
||||
* Fix - Mini-Cart Bug cause of wrong DOM-Structure in v2.3.1 #1735
|
||||
* Fix - ACDC disappearing after plugin updates #1751
|
||||
* Fix - Subscription module hooks #1748
|
||||
* Fix - Ensure PayPal Subscriptions API products description is 1-127 characters #1738
|
||||
* Fix - Add validation on the Plan Name field to not accept a blank value #1754
|
||||
* Enhancement - Improve Pay Later messages and add Shop, Home locations #1770
|
||||
* Enhancement - Use api-m PayPal API URLs #1740
|
||||
* Enhancement - Google Pay Settings improvements #1719
|
||||
* Enhancement - Apple Pay transaction improvements #1767
|
||||
* Enhancement - Change default ACDC title #1750
|
||||
* Enhancement - Cart simulation improvements #1753
|
||||
* Enhancement - Billing schedule fields not greyed out when PayPal Subscriptions product is connected #1755
|
||||
* Enhancement - Check validation errors when submitting in block #1528
|
||||
|
||||
= 2.3.1 - 2023-09-26 =
|
||||
* Fix - Fatal error when saving product while WooCommerce Subscriptions plugin is not active #1731
|
||||
* Fix - Validate tracking data only for add/update Package Tracking #1729
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "woocommerce-paypal-payments",
|
||||
"version": "2.3.1",
|
||||
"version": "2.4.0",
|
||||
"description": "WooCommerce PayPal Payments",
|
||||
"repository": "https://github.com/woocommerce/woocommerce-paypal-payments",
|
||||
"license": "GPL-2.0",
|
||||
|
|
16
readme.txt
16
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.3
|
||||
Requires PHP: 7.2
|
||||
Stable tag: 2.3.1
|
||||
Stable tag: 2.4.0
|
||||
License: GPLv2
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
@ -180,6 +180,20 @@ If you encounter issues with the PayPal buttons not appearing after an update, p
|
|||
|
||||
== Changelog ==
|
||||
|
||||
* Fix - Mini-Cart Bug cause of wrong DOM-Structure in v2.3.1 #1735
|
||||
* Fix - ACDC disappearing after plugin updates #1751
|
||||
* Fix - Subscription module hooks #1748
|
||||
* Fix - Ensure PayPal Subscriptions API products description is 1-127 characters #1738
|
||||
* Fix - Add validation on the Plan Name field to not accept a blank value #1754
|
||||
* Enhancement - Improve Pay Later messages and add Shop, Home locations #1770
|
||||
* Enhancement - Use api-m PayPal API URLs #1740
|
||||
* Enhancement - Google Pay Settings improvements #1719
|
||||
* Enhancement - Apple Pay transaction improvements #1767
|
||||
* Enhancement - Change default ACDC title #1750
|
||||
* Enhancement - Cart simulation improvements #1753
|
||||
* Enhancement - Billing schedule fields not greyed out when PayPal Subscriptions product is connected #1755
|
||||
* Enhancement - Check validation errors when submitting in block #1528
|
||||
|
||||
= 2.3.1 - 2023-09-26 =
|
||||
* Fix - Fatal error when saving product while WooCommerce Subscriptions plugin is not active #1731
|
||||
* Fix - Validate tracking data only for add/update Package Tracking #1729
|
||||
|
|
|
@ -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.3.1
|
||||
* Version: 2.4.0
|
||||
* 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.1
|
||||
* WC tested up to: 8.2
|
||||
* Text Domain: woocommerce-paypal-payments
|
||||
*
|
||||
* @package WooCommerce\PayPalCommerce
|
||||
|
@ -23,7 +23,7 @@ use WooCommerce\PayPalCommerce\WcGateway\Settings\Settings;
|
|||
|
||||
define( 'PAYPAL_API_URL', 'https://api-m.paypal.com' );
|
||||
define( 'PAYPAL_SANDBOX_API_URL', 'https://api-m.sandbox.paypal.com' );
|
||||
define( 'PAYPAL_INTEGRATION_DATE', '2023-09-26' );
|
||||
define( 'PAYPAL_INTEGRATION_DATE', '2023-10-18' );
|
||||
|
||||
! 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