Skip to content

Commit 0022ec8

Browse files
authored
Merge pull request #96 from gocardless/release/2.9.8
Release/2.9.8
2 parents 2d05e0b + 6a20742 commit 0022ec8

File tree

7 files changed

+19
-9
lines changed

7 files changed

+19
-9
lines changed

.github/workflows/qit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
path: phpcompat-result.txt
128128

129129
- name: Run security test
130-
if: "${{ inputs.tests == 'security' || contains(github.event.pull_request.labels.*.name, 'needs: qit security test') && ( success() || failure() ) }}"
130+
if: "${{ ( ( inputs.tests == 'default' || inputs.tests == 'security' ) || contains(github.event.pull_request.labels.*.name, 'needs: qit default tests') || contains(github.event.pull_request.labels.*.name, 'needs: qit security test') ) && ( success() || failure() ) }}"
131131
id: run-security-test
132132
run: ./vendor/bin/qit run:security ${{ github.event.repository.name }} --zip=${{ github.event.repository.name }}.zip --wait > security-result.txt
133133

@@ -139,7 +139,7 @@ jobs:
139139
path: security-result.txt
140140

141141
- name: Run malware test
142-
if: "${{ inputs.tests == 'malware' || contains(github.event.pull_request.labels.*.name, 'needs: qit malware test') && ( success() || failure() ) }}"
142+
if: "${{ ( ( inputs.tests == 'default' || inputs.tests == 'malware' ) || contains(github.event.pull_request.labels.*.name, 'needs: qit default tests') || contains(github.event.pull_request.labels.*.name, 'needs: qit malware test') ) && ( success() || failure() ) }}"
143143
id: run-malware-test
144144
run: ./vendor/bin/qit run:malware ${{ github.event.repository.name }} --zip=${{ github.event.repository.name }}.zip --wait > malware-result.txt
145145

changelog.txt

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

3+
2025-10-07 - version 2.9.8
4+
* Fix - Automatically disconnect the GoCardless account and display a reconnect notice when the token becomes invalid or inactive.
5+
* Dev - Bump WooCommerce "tested up to" version 10.2.
6+
* Dev - Bump WooCommerce minimum supported version to 10.0.
7+
38
2025-08-05 - version 2.9.7
49
* Add - Improved subscription cancellation by cancelling "Pending Submission" payments and preventing retries on non-cancellable payments.
510
* Fix - Ensure webhook events are handled properly without any issues.

includes/class-wc-gocardless-order-admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ public function get_connection_notice() {
581581
/**
582582
* Display notice for access token unauthorized.
583583
*
584-
* @since x.x.x
584+
* @since 2.9.8
585585
*/
586586
public function display_access_token_unauthorized_notice() {
587587
// Check if option is set to display notice.

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.7",
3+
"version": "2.9.8",
44
"description": "GoCardless for WooCommerce",
55
"homepage": "https://woocommerce.com/products/gocardless/",
66
"license": "GPL-3.0-or-later",

readme.txt

Lines changed: 6 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.7
5+
Stable tag: 2.9.8
66
License: GPL-3.0-or-later
77
License URI: https://spdx.org/licenses/GPL-3.0-or-later.html
88

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

141141
== Changelog ==
142142

143+
= 2.9.8 - 2025-10-07 =
144+
* Fix - Automatically disconnect the GoCardless account and display a reconnect notice when the token becomes invalid or inactive.
145+
* Dev - Bump WooCommerce "tested up to" version 10.2.
146+
* Dev - Bump WooCommerce minimum supported version to 10.0.
147+
143148
= 2.9.7 - 2025-08-05 =
144149
* Add - Improved subscription cancellation by cancelling "Pending Submission" payments and preventing retries on non-cancellable payments.
145150
* Fix - Ensure webhook events are handled properly without any issues.

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.7
6+
* Version: 2.9.8
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.7'; // WRCS: DEFINED_VERSION.
41+
public $version = '2.9.8'; // WRCS: DEFINED_VERSION.
4242

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

0 commit comments

Comments
 (0)