From dfa5e4beea316e461eeb0fdcf5478686b65561cc Mon Sep 17 00:00:00 2001 From: "gocardless-ci-robot[bot]" <123969075+gocardless-ci-robot[bot]@users.noreply.github.com> Date: Thu, 13 Aug 2026 12:36:43 +0000 Subject: [PATCH 1/2] Changes generated by 3ef975abbc26a301b860fde553ef52d2e30cc273 This commit was automatically created from gocardless/client-library-templates@3ef975abbc26a301b860fde553ef52d2e30cc273 by the `push-files` action. Workflow run: https://github.com/gocardless/client-library-templates/actions/runs/31700648476 --- src/services/mandateImportEntryService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/mandateImportEntryService.ts b/src/services/mandateImportEntryService.ts index ca678a3c..8d9ac347 100644 --- a/src/services/mandateImportEntryService.ts +++ b/src/services/mandateImportEntryService.ts @@ -54,7 +54,7 @@ interface MandateImportEntryListRequest { // One of: // - // - `sucessfully_processed`: the entry has been imported and the associated + // - `successfully_processed`: the entry has been imported and the associated // records created. // - `unsuccessfully_processed`: the entry could not be processed due to an // error, see the 'processing_errors' value From 8bbd14af3595d1dd0f28241621ea1cd11dbd3e75 Mon Sep 17 00:00:00 2001 From: "gocardless-ci-robot[bot]" <123969075+gocardless-ci-robot[bot]@users.noreply.github.com> Date: Thu, 13 Aug 2026 12:37:27 +0000 Subject: [PATCH 2/2] Changes generated by 9d3692a34c78748afb62c0f79700294dc933bf13 This commit was automatically created from gocardless/client-library-templates@9d3692a34c78748afb62c0f79700294dc933bf13 by the `push-files` action. Workflow run: https://github.com/gocardless/client-library-templates/actions/runs/31700707786 --- CHANGELOG.md | 6 ++++++ package-lock.json | 4 ++-- package.json | 2 +- src/constants.ts | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49e2c2a3..69abbeea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## 8.6.1 (2026-08-13) + +### Fixes + +- Fix typo in mandate_import_entry status description + ## 8.6.0 (2026-08-11) ### Features diff --git a/package-lock.json b/package-lock.json index 1cd2b3fc..ceb6c65e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gocardless-nodejs", - "version": "8.6.0", + "version": "8.6.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "gocardless-nodejs", - "version": "8.6.0", + "version": "8.6.1", "license": "MIT", "dependencies": { "got": "^11.8.6", diff --git a/package.json b/package.json index 20ba3516..383d42b3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gocardless-nodejs", - "version": "8.6.0", + "version": "8.6.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 8a835432..7cc88d08 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -3,7 +3,7 @@ enum Environments { Sandbox = 'SANDBOX', } -const CLIENT_VERSION = '8.6.0'; +const CLIENT_VERSION = '8.6.1'; const API_VERSION = '2015-07-06'; export { Environments, CLIENT_VERSION, API_VERSION };