mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Bump 2.0.5 version
This commit is contained in:
parent
fdaea78ac0
commit
7372f1b3a6
4 changed files with 30 additions and 6 deletions
|
@ -1,5 +1,17 @@
|
|||
*** Changelog ***
|
||||
|
||||
= 2.0.5 - TBD =
|
||||
* Fix - Performance issue #1182
|
||||
* Fix - Webhooks not registered when onboarding with manual credentials #1223
|
||||
* Fix - Cross Site Request Forgery (CSRF) can invalidate merchant credentials #1339
|
||||
* Fix - Boolean false type sent as empty value when setting cache #1313
|
||||
* Enhancement - Save and display vaulted payment methods in WC Payment Token API #1059
|
||||
* Enhancement - Cache webhook verification results #1379
|
||||
* Enhancement - Refresh checkout totals after validation if needed #1294
|
||||
* Enhancement - Improve Divi and Elementor Pro compatibility #1254
|
||||
* Feature preview - Add express cart/checkout block #1346
|
||||
* Feature preview - Integrate PayPal Subscriptions API #1217
|
||||
|
||||
= 2.0.4 - 2023-04-03 =
|
||||
* Fix - Allow Pay Later in mini-cart #1221
|
||||
* Fix - Duplicated auth error when credentials become wrong #1229
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "woocommerce-paypal-payments",
|
||||
"version": "2.0.4",
|
||||
"version": "2.0.5",
|
||||
"description": "WooCommerce PayPal Payments",
|
||||
"repository": "https://github.com/woocommerce/woocommerce-paypal-payments",
|
||||
"license": "GPL-2.0",
|
||||
|
|
16
readme.txt
16
readme.txt
|
@ -2,9 +2,9 @@
|
|||
Contributors: woocommerce, automattic, inpsyde
|
||||
Tags: woocommerce, paypal, payments, ecommerce, e-commerce, store, sales, sell, shop, shopping, cart, checkout
|
||||
Requires at least: 5.3
|
||||
Tested up to: 6.1
|
||||
Tested up to: 6.2
|
||||
Requires PHP: 7.2
|
||||
Stable tag: 2.0.4
|
||||
Stable tag: 2.0.5
|
||||
License: GPLv2
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
@ -81,6 +81,18 @@ Follow the steps below to connect the plugin to your PayPal account:
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 2.0.5 - TBD =
|
||||
* Fix - Performance issue #1182
|
||||
* Fix - Webhooks not registered when onboarding with manual credentials #1223
|
||||
* Fix - Cross Site Request Forgery (CSRF) can invalidate merchant credentials #1339
|
||||
* Fix - Boolean false type sent as empty value when setting cache #1313
|
||||
* Enhancement - Save and display vaulted payment methods in WC Payment Token API #1059
|
||||
* Enhancement - Cache webhook verification results #1379
|
||||
* Enhancement - Refresh checkout totals after validation if needed #1294
|
||||
* Enhancement - Improve Divi and Elementor Pro compatibility #1254
|
||||
* Feature preview - Add express cart/checkout block #1346
|
||||
* Feature preview - Integrate PayPal Subscriptions API #1217
|
||||
|
||||
= 2.0.4 - 2023-04-03 =
|
||||
* Fix - Allow Pay Later in mini-cart #1221
|
||||
* Fix - Duplicated auth error when credentials become wrong #1229
|
||||
|
|
|
@ -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.0.4
|
||||
* Version: 2.0.5
|
||||
* 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: 7.5
|
||||
* WC tested up to: 7.7
|
||||
* Text Domain: woocommerce-paypal-payments
|
||||
*
|
||||
* @package WooCommerce\PayPalCommerce
|
||||
|
@ -23,7 +23,7 @@ use WooCommerce\PayPalCommerce\WcGateway\Settings\Settings;
|
|||
|
||||
define( 'PAYPAL_API_URL', 'https://api.paypal.com' );
|
||||
define( 'PAYPAL_SANDBOX_API_URL', 'https://api.sandbox.paypal.com' );
|
||||
define( 'PAYPAL_INTEGRATION_DATE', '2023-03-20' );
|
||||
define( 'PAYPAL_INTEGRATION_DATE', '2023-05-17' );
|
||||
|
||||
define( 'PPCP_FLAG_SUBSCRIPTIONS_API', apply_filters( 'ppcp_flag_subscriptions_api', getenv( 'PPCP_FLAG_SUBSCRIPTIONS_API' ) === '1' ) );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue