From d06955ee491141ef360d9812b97919fce390d3a1 Mon Sep 17 00:00:00 2001 From: "gocardless-ci-robot[bot]" <123969075+gocardless-ci-robot[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2026 14:22:49 +0000 Subject: [PATCH] Changes generated by 0b1d9592bb7a1c1dce9545cc39f39475f92dfdce This commit was automatically created from gocardless/client-library-templates@0b1d9592bb7a1c1dce9545cc39f39475f92dfdce by the `push-files` action. Workflow run: https://github.com/gocardless/client-library-templates/actions/runs/34237625875 --- CHANGELOG.md | 8 ++++++++ composer.json | 2 +- composer.lock | 2 +- lib/Client.php | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b5622b0..5cad526c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog +## 8.1.4 (2026-09-08) + +### Fixes + +#### Remove incorrect Pro/Enterprise restriction from mandate and customer bank account endpoints + +The "Create a mandate", "Reinstate a mandate", and "Create a customer bank account" endpoints incorrectly stated they were restricted to GoCardless Pro and Enterprise accounts. Custom payment pages are available to any merchant — they are not package-restricted. + ## 8.1.3 (2026-09-07) ### Fixes diff --git a/composer.json b/composer.json index 54092d59..15289c8c 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "gocardless/gocardless-pro", "description": "GoCardless PHP Client Library", - "version": "8.1.3", + "version": "8.1.4", "keywords": [ "gocardless", "direct debit", diff --git a/composer.lock b/composer.lock index 5ef16507..a3c4a6cc 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "df97f1ac1504141b6aa782e34b770c49", + "content-hash": "6df74559ac30a14a79dfc6ca63cf63e3", "packages": [ { "name": "guzzlehttp/guzzle", diff --git a/lib/Client.php b/lib/Client.php index c0612bf7..5f007775 100644 --- a/lib/Client.php +++ b/lib/Client.php @@ -56,7 +56,7 @@ public function __construct($config) 'Content-Type' => 'application/json', 'Authorization' => "Bearer " . $access_token, 'GoCardless-Client-Library' => 'gocardless-pro-php', - 'GoCardless-Client-Version' => '8.1.3', + 'GoCardless-Client-Version' => '8.1.4', 'User-Agent' => $this->getUserAgent() ), 'http_errors' => false, @@ -764,7 +764,7 @@ private function getUserAgent() { $curlinfo = curl_version(); $uagent = array(); - $uagent[] = 'gocardless-pro-php/8.1.3'; + $uagent[] = 'gocardless-pro-php/8.1.4'; $uagent[] = 'schema-version/2015-07-06'; $uagent[] = 'GuzzleHttp/' . \GuzzleHttp\Client::MAJOR_VERSION; $uagent[] = 'php/' . phpversion();