Releases: zf-fr/zfr-stripe
Releases · zf-fr/zfr-stripe
v2.2.3
- Fix a bug when filtering invoice items by date.
v2.2.2
- Add support for filtering invoice items if they are proration or not through the
proration
parameter. Please note that this feature IS NOT documented and officially supported by Stripe, and may be removed without caution.
v2.2.1
- Add support for
object_id
when retrieving events. This allows to filter events by customer. Please note that this feature IS NOT documented and officially supported by Stripe, but as it powers Stripe dashboard, it should not be removed.
v2.2.0
- The
getInvoiceLineItems
was not working correctly when pagination.
- [BC] For consistency with other resources, the
id
parameter for retrieving invoice line items has been rename invoice
.
v2.1.0
- [BC] Set default Stripe API to "2014-09-08" version.
v2.0.4
- Fix docblock to allow auto-completion on
getInvoiceLineItemsIterator
v2.0.3
- Balance transactions history for fee refund can be retrieved using the "fee_refund" type (Stripe documentation was wrong)
v2.0.2
- Fix
updateApplicationFeeRefund
method
v2.0.1
- Fix error with exception name
v2.0.0
- [BC] PHP minimum dependency has been raised to PHP 5.4
- [BC] Any descriptor before 2014-03-28 has been removed. If you need a previous version, please use 1.x branch.
- Add new method to update coupons.
- Add missing recipient card endpoints.
- API version can now be changed by using the same client.
- After some talk with Stripe developers, I realized I could simplify how versioning is done inside ZfrStripe. Starting from v2, I will reuse the same descriptor until an endpoint actually changes (for instance, in January 2014 the endpoint to get customer's subscriptions changed from "/customers/cus_abc/subscription" to "/customers/cus_abc_subscriptions"). However, if a new endpoint is introduced, it can actually be accessed even for older versions so that we do not need to duplicate the whole descriptor.