From d1c7d55011cfb339999ef59c705149891e8d354e 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:12 +0000 Subject: [PATCH 1/2] Changes generated by 06e1db9336d88fbe5d375e07d42976ba47cda1ac This commit was automatically created from gocardless/client-library-templates@06e1db9336d88fbe5d375e07d42976ba47cda1ac by the `push-files` action. Workflow run: https://github.com/gocardless/client-library-templates/actions/runs/34237550319 --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index b9fcf77b..1e8b8ad2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4119,9 +4119,9 @@ } }, "node_modules/ignore": { - "version": "7.0.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.8.tgz", - "integrity": "sha512-YYNsSlXBjMk92SKnkwvB5LOVSa6OznlFUGcsvrFgNJbJCd0M1XKeFVRc8ZByeCqz32FivYNHJVooLmdqrmvp/Q==", + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.9.tgz", + "integrity": "sha512-brTTsvFRt5C1gGHtPst/281UjPD5t9fBqbgoMPlVWy11ZLTPfu7HxK4ZYqO9H7o/yC9rSTCI85EaQ4OoY12qYw==", "dev": true, "license": "MIT", "engines": { From 36edb01e085e3077bc387fff51df6a236b5a5187 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:53 +0000 Subject: [PATCH 2/2] 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/34237625858 --- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/constants.ts | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70060126..233984e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog +## 9.0.1 (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. + ## 9.0.0 (2026-09-07) ### Breaking Changes diff --git a/package-lock.json b/package-lock.json index 1e8b8ad2..0bdc9a67 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gocardless-nodejs", - "version": "9.0.0", + "version": "9.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "gocardless-nodejs", - "version": "9.0.0", + "version": "9.0.1", "license": "MIT", "dependencies": { "got": "^11.8.6", diff --git a/package.json b/package.json index fc77a437..2c26b8b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gocardless-nodejs", - "version": "9.0.0", + "version": "9.0.1", "description": "Node.js client for the GoCardless API - a powerful, simple solution for the collection of recurring bank-to-bank payments", "author": "GoCardless Ltd ", "repository": { diff --git a/src/constants.ts b/src/constants.ts index 4993e20d..1d86ee3f 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -3,7 +3,7 @@ enum Environments { Sandbox = 'SANDBOX', } -const CLIENT_VERSION = '9.0.0'; +const CLIENT_VERSION = '9.0.1'; const API_VERSION = '2015-07-06'; export { Environments, CLIENT_VERSION, API_VERSION };