Releases: mollie/mollie-api-php
Release v2.32.0
- Removed the Guzzle dependency for improved compatibility.
- Extracted Http calls into adapters. If present, Guzzle 6 or 7 will automatically be used. If Guzzle is not present, curl will be used as a fallback.
- It's possible to override the Http adapter with your own.
Release v2.31.1
Fixed pagination settings on $payment->listRefunds()
- thanks @johannesdr-tb!
Release v2.31.0
- You can now update an Order Line's sku field.
Release v2.31.1 Alpha
We're urging you to test this release as soon as possible.
This is an "alpha" pre-release covering PR #545 - on top of PR #538 .
Essentially this PR is non-breaking, unless you're using dependency injection to instantiate the MollieApiClient
.
You can test it by setting the following in your composer.json
file:
"mollie/mollie-api-php": "2.31.1-alpha",
and run composer update
.
Release v2.30.2
Added the Organization.vatRegulation
field.
Release v2.30.1
Fixed some docblocks.
Release v2.31.0 alpha
We're urging you to test this release as soon as possible.
This is an "alpha" pre-release covering PR #538 .
Essentially this PR is non-breaking, unless you're using dependency injection to instantiate the MollieApiClient
.
You can test it by setting the following in your composer.json
file:
"mollie-api-php": "2.31.0-alpha",
and run composer update
.
Release v2.30.0
Release v2.29.0
- Added missing fields to the
Payment
andOrderLine
resources (thanks @ciungulete) - Marked
PaymentMethod::INGHOMEPAY
as deprecated. February 1st 2021, support foringhomepay
will be discontinued. More info here.
Release v2.28.0
- Added list methods to the
paymentRefunds
endpoint. - Fixed the
applicationFee
method on the Payment resource. - Documentation: some relative url paths were modified for consistency in the included code examples.
Thanks @ciungulete!