Skip to content

Releases: recurly/recurly-client-php

2.12.21

22 Apr 17:25
Compare
Choose a tag to compare

Full Changelog

Merged Pull Requests

4.2.0

21 Apr 20:08
Compare
Choose a tag to compare

Full Changelog

Merged Pull Requests

4.1.0

15 Apr 17:01
Compare
Choose a tag to compare

Full Changelog

Merged Pull Requests

Release 4.0.1

23 Mar 15:16
d25fc77
Compare
Choose a tag to compare

Changelog

Unreleased

Full Changelog

Merged pull requests:

Release 4.0.0

01 Mar 21:40
55dfc3e
Compare
Choose a tag to compare

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

  • Require query string parameters to be specified under the params key of the $options parameter. [#522]

    3.x

    $options = [
      'limit' => 200
    ];
    $accounts = $client->listAccounts($options);

    4.x

    $options = [
      'params' => [
        'limit' => 200
      ],
      'headers' => [
        'Accept-Language' => 'fr'
      ]
    ];
    $accounts = $client->listAccounts($options);

Implemented enhancements:

  • Updating operations to accept generic request options instead of just query parameters #522 (douglasmiller)

Merged pull requests:

  • Updating changelog script and changelog generator config for 4.x release #582 (douglasmiller)
  • Null checking variable before calling property_exists to prevent Warning #526 (douglasmiller)
  • Mon Jul 6 14:54:15 UTC 2020 Upgrade API version v2019-10-10 #515 (douglasmiller)

Release 2.12.20 -February 22, 2021

22 Feb 21:21
0d35a0e
Compare
Choose a tag to compare
  • PHPDoc: fix type of invoice type should be string instead of int #575
  • Update language to match sunset policy #576
  • Transaction: update phpdoc for invoice property #578
  • PHPDoc: fix type of invoice origin - should be string instead of int #580

Release 3.11.0

22 Jan 18:22
ba18ac5
Compare
Choose a tag to compare

Changelog

Unreleased

Full Changelog

Implemented enhancements:

Merged pull requests:

Release 2.12.19 - November 23, 2020

23 Nov 22:23
a16201d
Compare
Choose a tag to compare
  • Implement Pager#take #562
  • Augment and patch iban implementation #567
  • Add item_state and external_sku to phpdocs #568
  • Update readme to include headers memo #570

Release 3.10.0

06 Nov 21:53
92102b1
Compare
Choose a tag to compare

Changelog

Unreleased

Full Changelog

Implemented enhancements:

Release 2.12.18 - November 5, 2020

05 Nov 21:36
5020d41
Compare
Choose a tag to compare
  • Support item-specific coupons #563