mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Bump 2.7.0 version
This commit is contained in:
parent
e0afc257b9
commit
8a8e10a0b1
4 changed files with 29 additions and 5 deletions
|
@ -1,5 +1,17 @@
|
|||
*** Changelog ***
|
||||
|
||||
= 2.7.0 - xxxx-xx-xx =
|
||||
* Fix - Zero sum subscriptions cause CANNOT_BE_ZERO_OR_NEGATIVE when using Vault v3 #2152
|
||||
* Fix - Incorrect Pricing Issue with Variable Subscriptions in PayPal Subscriptions Mode #2156
|
||||
* Fix - Wrong return_url in multisite setup when using subdomains #2157
|
||||
* Enhancement - Add the data-page-type attribute for JS SDK #2161
|
||||
* Enhancement - Save Card Last Digits in order meta for Advanced Card Payments #2149
|
||||
* Enhancement - Refactor the Pay Later Messaging block and add dedicated Cart/Checkout blocks #2153
|
||||
* Enhancement - "Next Payment" status not updated when using PayPal Subscriptions #2091
|
||||
* Enhancement - Optimize default settings for new store configurations #2158
|
||||
* Enhancement - Improve tooltip information for tagline #2154
|
||||
* Enhancement - Improve error message on certain exceptions #1354
|
||||
|
||||
= 2.6.1 - 2024-04-09 =
|
||||
* Fix - Payment tokens fixes and adjustments #2106
|
||||
* Fix - Pay upon Invoice: Add input validation to Experience Context fields #2092
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "woocommerce-paypal-payments",
|
||||
"version": "2.6.1",
|
||||
"version": "2.7.0",
|
||||
"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.5
|
||||
Requires PHP: 7.2
|
||||
Stable tag: 2.6.1
|
||||
Stable tag: 2.7.0
|
||||
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.7.0 - xxxx-xx-xx =
|
||||
* Fix - Zero sum subscriptions cause CANNOT_BE_ZERO_OR_NEGATIVE when using Vault v3 #2152
|
||||
* Fix - Incorrect Pricing Issue with Variable Subscriptions in PayPal Subscriptions Mode #2156
|
||||
* Fix - Wrong return_url in multisite setup when using subdomains #2157
|
||||
* Enhancement - Add the data-page-type attribute for JS SDK #2161
|
||||
* Enhancement - Save Card Last Digits in order meta for Advanced Card Payments #2149
|
||||
* Enhancement - Refactor the Pay Later Messaging block and add dedicated Cart/Checkout blocks #2153
|
||||
* Enhancement - "Next Payment" status not updated when using PayPal Subscriptions #2091
|
||||
* Enhancement - Optimize default settings for new store configurations #2158
|
||||
* Enhancement - Improve tooltip information for tagline #2154
|
||||
* Enhancement - Improve error message on certain exceptions #1354
|
||||
|
||||
= 2.6.1 - 2024-04-09 =
|
||||
* Fix - Payment tokens fixes and adjustments #2106
|
||||
* Fix - Pay upon Invoice: Add input validation to Experience Context fields #2092
|
||||
|
|
|
@ -3,14 +3,14 @@
|
|||
* 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.6.1
|
||||
* Version: 2.7.0
|
||||
* Author: WooCommerce
|
||||
* Author URI: https://woocommerce.com/
|
||||
* License: GPL-2.0
|
||||
* Requires PHP: 7.2
|
||||
* Requires Plugins: woocommerce
|
||||
* WC requires at least: 3.9
|
||||
* WC tested up to: 8.7
|
||||
* WC tested up to: 8.8
|
||||
* Text Domain: woocommerce-paypal-payments
|
||||
*
|
||||
* @package WooCommerce\PayPalCommerce
|
||||
|
@ -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-04-03' );
|
||||
define( 'PAYPAL_INTEGRATION_DATE', '2024-04-22' );
|
||||
|
||||
! 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