Releases: recurly/recurly-client-php
Releases · recurly/recurly-client-php
2.12.21
Merged Pull Requests
- Wallet and Backup Payment #604 (joannasese)
- Correct changelog year from 2020 to 2021 #584 (joannasese)
4.2.0
Merged Pull Requests
- Generated Latest Changes for v2021-02-25 #606 (recurly-integrations)
4.1.0
Merged Pull Requests
- Generated Latest Changes for v2021-02-25 (Backup Payment Method) #603 (recurly-integrations)
- Generated Latest Changes for v2021-02-25 #599 (recurly-integrations)
- Generated Latest Changes for v2021-02-25 (Usage Percentage on Tiers) #598 (recurly-integrations)
Release 4.0.1
Changelog
Unreleased
Merged pull requests:
- Generated Latest Changes for v2021-02-25 #595 (recurly-integrations)
- Sync updates not ported from 3.x client #590 (douglasmiller)
- Replace empty() with is_null() #588 (joannasese)
- Replace empty() with is_null() #587 (joannasese)
Release 4.0.0
Changelog
Unreleased
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
Release 3.11.0
Changelog
Unreleased
Implemented enhancements:
- Latest Changes for 2019-10-10 #577 (douglasmiller)
- Latest Changes for 2019-10-10 #569 (douglasmiller)
Merged pull requests:
- Update readme to include memo on headers #571 (joannasese)
Release 2.12.19 - November 23, 2020
Release 3.10.0
Changelog
Unreleased
Implemented enhancements:
- Latest Changes for 2019-10-10 (Wallet, Item Coupons) #564 (douglasmiller)
- Implement Pager#take #561 (joannasese)
Release 2.12.18 - November 5, 2020
- Support item-specific coupons #563