diff --git a/changelog.txt b/changelog.txt index 3323524cb..fa02fcf2c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,22 @@ *** Changelog *** += 2.0.3 - TBD = +* Fix - `DEVICE_DATA_NOT_AVAILABLE` error message when FraudNet is enabled #1177 +* Fix - Redirect to connection tab after manual credentials input #1201 +* Fix - Asking for address fields in checkout when not using them #1089 +* Fix - Validate before free trial #1170 +* Fix - Validate new user creation #1131 +* Enhancement - Save checkout form before free trial redirect #1135 +* Enhancement - Add filter for controlling the ditching of items/breakdown #1146 +* Enhancement - Add patch order data filter #1147 +* Enhancement - Add filter for disabling fees on wc order admin pages #1153 +* Enhancement - Use wp_loaded for fraudnet loading to avoid warnings #1172 +* Enhancement - reCaptcha for WooCommerce support #1093 +* Enhancement - Make it possible to hide missing funding resource Trustly #1155 +* Enhancement - Add white color option #1167 +* Enhancement - Checkout validation for other fields #861 +* Enhancement - Mention PUI only for German shops and add line breaks #1169 + = 2.0.2 - 2023-01-31 = * Fix - Do not call PayPal get order by ID if it does not exist #1029 * Fix - Type check error conflict with German Market #1056 diff --git a/readme.txt b/readme.txt index 72808d11b..a998cfc71 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: woocommerce, paypal, payments, ecommerce, e-commerce, store, sales, sell, Requires at least: 5.3 Tested up to: 6.1 Requires PHP: 7.2 -Stable tag: 2.0.2 +Stable tag: 2.0.3 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -81,6 +81,23 @@ Follow the steps below to connect the plugin to your PayPal account: == Changelog == += 2.0.3 = +* Fix - `DEVICE_DATA_NOT_AVAILABLE` error message when FraudNet is enabled #1177 +* Fix - Redirect to connection tab after manual credentials input #1201 +* Fix - Asking for address fields in checkout when not using them #1089 +* Fix - Validate before free trial #1170 +* Fix - Validate new user creation #1131 +* Enhancement - Save checkout form before free trial redirect #1135 +* Enhancement - Add filter for controlling the ditching of items/breakdown #1146 +* Enhancement - Add patch order data filter #1147 +* Enhancement - Add filter for disabling fees on wc order admin pages #1153 +* Enhancement - Use wp_loaded for fraudnet loading to avoid warnings #1172 +* Enhancement - reCaptcha for WooCommerce support #1093 +* Enhancement - Make it possible to hide missing funding resource Trustly #1155 +* Enhancement - Add white color option #1167 +* Enhancement - Checkout validation for other fields #861 +* Enhancement - Mention PUI only for German shops and add line breaks #1169 + = 2.0.2 = * Fix - Do not call PayPal get order by ID if it does not exist #1029 * Fix - Type check error conflict with German Market #1056 diff --git a/woocommerce-paypal-payments.php b/woocommerce-paypal-payments.php index 62e1562e6..52766dccf 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.2 + * Version: 2.0.3 * 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.2 + * WC tested up to: 7.4 * 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-01-11' ); +define( 'PAYPAL_INTEGRATION_DATE', '2023-02-21' ); define( 'PPCP_FLAG_SUBSCRIPTION', true );