Skip to content

Release 4.0.0

Choose a tag to compare

@douglasmiller douglasmiller released this 01 Mar 21:30
b5bfefe

Changelog

Unreleased

Full Changelog

Major Version Release

The 4.x major version of the client pairs with the v2021-02-25 API version. This version of the client and the API contain breaking changes that should be considered before upgrading your integration.

Breaking Changes in the API

All changes to the core API are documented in the Developer Portal changelog

Breaking Changes in Client

  • Convert float to decimal [#562]

  • Return the Empty response object over void [#565]

  • Fix deserialization of unknown enum values [#571]

  • Add OptionalParams and per-operation implementations [#582]

    3.x

    var accounts = client.ListAccounts(limit: 200);

    4.x

    var optionalParams = new ListAccountsParams()
    {
        Limit = 200
    };
    var accounts = client.ListAccounts(optionalParams);
  • Add support for List types in optional query params instead of needing to generate a comma separated string. [#584]

    3.x

    var accounts = client.ListAccounts(ids: "account-id-1,account-id-2,account-id-3");

    4.x

    var optionalParams = new ListAccountsParams()
    {
        Ids = new List<string>() {
          "account-id-1",
          "account-id-2",
          "account-id-3",
        }
    };
    var accounts = client.ListAccounts(optionalParams);

Implemented enhancements:

Merged pull requests: