Releases: zf-fr/zfr-stripe
Releases · zf-fr/zfr-stripe
v3.5.2
v3.5.1
v3.5.0
v3.4.0
v3.3.0
v3.2.0
v3.1.0
v3.0.0
- [BC] For all descriptors,
closeDispute
andupdateDispute
now uses the new endpoints that do not require a charge ID but instead a dispute
ID. In previous versions:
$stripeClient->closeDispute(['charge' => 'ch_abc']);
In new version:
$stripeClient->closeDispute(['id' => 'dp_abc']);
Also, new endpoints have been added that allow to retrieve a specific dispute by its id, as well as retrieving all disputes.
- [BC] Descriptor cleanup: older descriptors have been removed. ZfrStripe now supports Stripe API version from 2015-02-18. If you are using an older
version of the API, you should stay on 2.x branch.