Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
<!-- This file is generated, please add to it using `knope document-change` in the client-library-templates repo -->
# Changelog

## 10.0.0 (2026-09-14)

### Breaking Changes

#### Add typed nullable references for billing request template fields

`mandate_request_verify`, `mandate_currency`, and `payment_currency` on
`billing_request_template` are now generated as typed nullable fields instead
of untyped objects. For example, `mandate_request_verify` is now typed as
`MandateRequestVerify` (or the language equivalent) rather than a generic
object type.

This is a breaking change — code that accesses these fields using untyped
patterns (e.g. casting from `Object` in Java) will need to be updated to
use the new typed accessors.

## 9.1.0 (2026-09-11)

### Features
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gocardless-nodejs",
"version": "9.1.0",
"version": "10.0.0",
"description": "Node.js client for the GoCardless API - a powerful, simple solution for the collection of recurring bank-to-bank payments",
"author": "GoCardless Ltd <client-libraries@gocardless.com>",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ enum Environments {
Sandbox = 'SANDBOX',
}

const CLIENT_VERSION = '9.1.0';
const CLIENT_VERSION = '10.0.0';
const API_VERSION = '2015-07-06';

export { Environments, CLIENT_VERSION, API_VERSION };
Loading