Skip to content

Commit 4052cb5

Browse files
authored
Merge pull request #84 from gocardless/release/2.9.7
Release/2.9.7
2 parents 5e42d03 + 8a5f707 commit 4052cb5

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

changelog.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
*** GoCardless for WooCommerce Changelog ***
22

3+
2025-08-05 - version 2.9.7
4+
* Add - Improved subscription cancellation by cancelling "Pending Submission" payments and preventing retries on non-cancellable payments.
5+
* Fix - Ensure webhook events are handled properly without any issues.
6+
* Dev - Bump WordPress minimum supported version to 6.7.
7+
* Dev - Bump WooCommerce "tested up to" version 10.1.
8+
* Dev - Bump WooCommerce minimum supported version to 9.9.
9+
310
2025-07-02 - version 2.9.6
411
* Add - Respond with an error to the GoCardless webhook call if the scheduling action fails.
512
* Add - A notice indicating that GoCardless is connected in sandbox mode if the merchant is connected to a sandbox account.

includes/class-wc-gocardless-gateway-addons.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ public function validate_subscription_payment_meta( $payment_method_id, $payment
334334
* If the payment is pending submission, we can cancel it.
335335
* Otherwise, update the retry_if_possible to false to avoid the payment being retried (except for paid_out and cancelled payment states).
336336
*
337-
* @since x.x.x
337+
* @since 2.9.7
338338
*
339339
* @param WC_Subscription $subscription Subscription object.
340340
*/

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "woocommerce-gateway-gocardless",
3-
"version": "2.9.6",
3+
"version": "2.9.7",
44
"description": "GoCardless for WooCommerce",
55
"homepage": "https://woocommerce.com/products/gocardless/",
66
"license": "GPL-3.0-or-later",

readme.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributors: gocardless, woocommerce, automattic
33
Tags: gocardless, woocommerce, direct debit, instant bank pay
44
Tested up to: 6.8
5-
Stable tag: 2.9.6
5+
Stable tag: 2.9.7
66
License: GPL-3.0-or-later
77
License URI: https://spdx.org/licenses/GPL-3.0-or-later.html
88

@@ -140,6 +140,13 @@ Yes, it uses [GoCardless](https://gocardless.com/) ([privacy policy](https://goc
140140

141141
== Changelog ==
142142

143+
= 2.9.7 - 2025-08-05 =
144+
* Add - Improved subscription cancellation by cancelling "Pending Submission" payments and preventing retries on non-cancellable payments.
145+
* Fix - Ensure webhook events are handled properly without any issues.
146+
* Dev - Bump WordPress minimum supported version to 6.7.
147+
* Dev - Bump WooCommerce "tested up to" version 10.1.
148+
* Dev - Bump WooCommerce minimum supported version to 9.9.
149+
143150
= 2.9.6 - 2025-07-02 =
144151
* Add - Respond with an error to the GoCardless webhook call if the scheduling action fails.
145152
* Add - A notice indicating that GoCardless is connected in sandbox mode if the merchant is connected to a sandbox account.

woocommerce-gateway-gocardless.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: GoCardless for WooCommerce
44
* Plugin URI: https://www.woocommerce.com/products/gocardless/
55
* Description: Extends both WooCommerce and WooCommerce Subscriptions with the GoCardless Payment Gateway. A GoCardless merchant account is required.
6-
* Version: 2.9.6
6+
* Version: 2.9.7
77
* Requires at least: 6.7
88
* Requires PHP: 7.4
99
* PHP tested up to: 8.3
@@ -38,7 +38,7 @@ class WC_GoCardless {
3838
*
3939
* @var string
4040
*/
41-
public $version = '2.9.6'; // WRCS: DEFINED_VERSION.
41+
public $version = '2.9.7'; // WRCS: DEFINED_VERSION.
4242

4343
/**
4444
* Plugin's absolute path.

0 commit comments

Comments
 (0)