Releases: mollie/mollie-api-php
Releases · mollie/mollie-api-php
Release v2.50.0
What's Changed
- Added update multiple order lines endpoint by @sandervanhooft in #654
Full Changelog: v2.49.2...v2.50.0
Release v2.49.2
What's Changed
- Fixed #658 mandateCollection.whereStatus count by @sandervanhooft in #660
Full Changelog: v2.49.1...v2.49.2
Release v2.49.1
What's Changed
- Fixed issue #656 by @sandervanhooft in #657
- Updated php version of syntax code check by @sandervanhooft in #655
Full Changelog: v2.49.0...v2.49.1
Release v2.49.0
This release introduces support for the Mollie Balances endpoints. Read more about this shiny new (beta) feature set here.
What's Changed
- Introduce balance API endpoints by @sandervanhooft in #652
- Update of phpstan version by @N-M in #647
- Fixed call to undefined function in example list payment links by @reboot1983 in #651
New Contributors
- @reboot1983 made their first contribution in #651
Full Changelog: v2.48.0...v2.49.0
Release v2.48.0
What's Changed
- Fixed PHP 7.2 Compatibility Check by @Jubeki in #646
- Added Support for PHP8.2 by @ciungulete in #645
New Contributors
Full Changelog: v2.47.0...v2.48.0
Release v2.47.0
What's Changed
- Dropped PHP 7.0 & PHP 7.1 support by @ciungulete in #644
- Fixed PhpStan tests by @ciungulete in #635
- Apply some of phpstan level 6 fixes and code style changes by @N-M in #638
New Contributors
Full Changelog: v2.46.0...v2.47.0
Release v2.46.0
What's Changed
- Added the brand new "in3" payment method by @it-can in #637
- Removed Properties from Base Resources by @ciungulete in #632
- Improved static analyses from Phpstan to lvl5 by @ciungulete in #633
Full Changelog: v2.45.0...v2.46.0
Release v2.45.0
What's Changed
- Added ApiException.getPlainMessage by @sandervanhooft in #630
- Complete documentation of Method status types by @BrechtBonte in #625
New Contributors
- @BrechtBonte made their first contribution in #625
Full Changelog: v2.44.1...v2.45.0
Release v2.balances-beta.0
The Mollie Balance API and the implementation in this package is subject to change and not ready for live production environments.
This PR introduces the following Balance endpoints:
Balance
- Get Balance:
$mollie->balances->get($id, $parameters = []);
- Get Primary Balance:
$mollie->balances->primary($parameters = []);
- Get Balance Page:
$mollie->balances->page($from = null, $limit = null, array $parameters = []);
Balance Report
- Get Balance Report:
$mollie->balanceReports->getForBalanceId($id, $parameters = []);
$mollie->balanceReports->getForBalance($balance, $parameters = []);
- Get Primary Balance Report:
$mollie->balanceReports->getForPrimaryBalance($parameters = []);
Balance Transactions
- List Balance Transactions:
$mollie->balanceTransactions->listForId($balanceId, $parameters = []);
$mollie->balanceTransactions->listFor($balance, $parameters = []);
- List Primary Balance Transactions:
$mollie->balanceTransactions->listForPrimary($parameters = []);
Release v2.44.1
What's Changed
- Deprecate categoryCode from profile.update by @sandervanhooft in #623
Full Changelog: v2.44.0...v2.44.1