diff --git a/changelog.txt b/changelog.txt index d795329a8..23fb61d74 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/package.json b/package.json index f7deecb41..8531886d9 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/readme.txt b/readme.txt index 8b9923c0e..0c042ee29 100644 --- a/readme.txt +++ b/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 diff --git a/woocommerce-paypal-payments.php b/woocommerce-paypal-payments.php index 8c44791b0..ffe844db6 100644 --- a/woocommerce-paypal-payments.php +++ b/woocommerce-paypal-payments.php @@ -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' ) );