From 7dc1f0f781074aaa738345529f5d30bc5ce5f1f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carmen=20Maym=C3=B3?= <45061744+mmaymo@users.noreply.github.com> Date: Mon, 7 Oct 2024 08:54:08 +0200 Subject: [PATCH 1/6] Update version to 7.8.1 --- mollie-payments-for-woocommerce.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mollie-payments-for-woocommerce.php b/mollie-payments-for-woocommerce.php index f1280f8b..14f34873 100644 --- a/mollie-payments-for-woocommerce.php +++ b/mollie-payments-for-woocommerce.php @@ -3,7 +3,7 @@ * Plugin Name: Mollie Payments for WooCommerce * Plugin URI: https://www.mollie.com * Description: Accept payments in WooCommerce with the official Mollie plugin - * Version: 7.8.1-beta + * Version: 7.8.1 * Author: Mollie * Author URI: https://www.mollie.com * Requires at least: 5.0 From 8da3ad6ae3a61f3fe08daf532d361352b0213f0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carmen=20Maym=C3=B3?= <45061744+mmaymo@users.noreply.github.com> Date: Mon, 7 Oct 2024 09:12:10 +0200 Subject: [PATCH 2/6] Update readme.txt changelog --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 5c0a8fd4..89d08f3d 100644 --- a/readme.txt +++ b/readme.txt @@ -222,7 +222,7 @@ Automatic updates should work like a charm; as always though, ensure you backup == Changelog == -= 7.8.1-beta - 01-09-2024 = += 7.8.1 - 07-09-2024 = * Feature Flag - Initiative - Swish payment method. * Fixed - Unable to make PayPal payments when surcharge is enabled on product and cart pages. From 54f325cac252b6fa0366c470cd90383bc8065832 Mon Sep 17 00:00:00 2001 From: carmenmaymo Date: Fri, 4 Oct 2024 11:04:15 +0200 Subject: [PATCH 3/6] Do not scope WCS_Retry_Manager --- scoper.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scoper.inc.php b/scoper.inc.php index ccb1eb52..25e761d6 100644 --- a/scoper.inc.php +++ b/scoper.inc.php @@ -55,7 +55,8 @@ 'Automattic', '^WooCommerce', 'Inpsyde\Assets', - 'Mollie' + 'Mollie', + '^WCS_Retry_Manager' ], // list 'exclude-constants' => array_merge($wp_constants, [ 'WC_VERSION', From 869c5caecff0b49dcebf107a0ab9935b7071ea2f Mon Sep 17 00:00:00 2001 From: carmenmaymo Date: Tue, 8 Oct 2024 12:27:57 +0200 Subject: [PATCH 4/6] Scope the class --- scoper.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoper.inc.php b/scoper.inc.php index 25e761d6..ffab50e8 100644 --- a/scoper.inc.php +++ b/scoper.inc.php @@ -56,7 +56,6 @@ '^WooCommerce', 'Inpsyde\Assets', 'Mollie', - '^WCS_Retry_Manager' ], // list 'exclude-constants' => array_merge($wp_constants, [ 'WC_VERSION', @@ -67,6 +66,7 @@ 'exclude-classes' => array_merge($wp_classes, [ 'WooCommerce', '/^WC_/', + '^WCS_Retry_Manager' ]), // list 'exclude-functions' => array_merge($wp_functions, [ '/^wc/', From e248b6868fdfccfee323de4b708b17a35f2413e7 Mon Sep 17 00:00:00 2001 From: carmenmaymo Date: Tue, 8 Oct 2024 12:33:16 +0200 Subject: [PATCH 5/6] Change naming of the class --- scoper.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoper.inc.php b/scoper.inc.php index ffab50e8..91b8b402 100644 --- a/scoper.inc.php +++ b/scoper.inc.php @@ -66,7 +66,7 @@ 'exclude-classes' => array_merge($wp_classes, [ 'WooCommerce', '/^WC_/', - '^WCS_Retry_Manager' + '\WCS_Retry_Manager' ]), // list 'exclude-functions' => array_merge($wp_functions, [ '/^wc/', From 52d100523c9582338aa4ce12933290b935b0e2ee Mon Sep 17 00:00:00 2001 From: carmenmaymo Date: Tue, 8 Oct 2024 13:22:44 +0200 Subject: [PATCH 6/6] update version and changelog --- mollie-payments-for-woocommerce.php | 2 +- readme.txt | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mollie-payments-for-woocommerce.php b/mollie-payments-for-woocommerce.php index 14f34873..2085bf53 100644 --- a/mollie-payments-for-woocommerce.php +++ b/mollie-payments-for-woocommerce.php @@ -3,7 +3,7 @@ * Plugin Name: Mollie Payments for WooCommerce * Plugin URI: https://www.mollie.com * Description: Accept payments in WooCommerce with the official Mollie plugin - * Version: 7.8.1 + * Version: 7.8.2 * Author: Mollie * Author URI: https://www.mollie.com * Requires at least: 5.0 diff --git a/readme.txt b/readme.txt index 89d08f3d..a1364ad7 100644 --- a/readme.txt +++ b/readme.txt @@ -222,6 +222,10 @@ Automatic updates should work like a charm; as always though, ensure you backup == Changelog == += 7.8.2 - 08-09-2024 = + +* Fixed - Subscription renewal status on-hold instead of active + = 7.8.1 - 07-09-2024 = * Feature Flag - Initiative - Swish payment method.