Releases: picqer/bol-retailer-php-client
Releases · picqer/bol-retailer-php-client
v1.3.2
This release implements __isset
in the AbstractModel
class, which allows you to use the isset
and empty
functions on properties of models.
v1.3.1
Changelog
- Throw a better exception when getting 404/429 on retrieving order
v1.3.0
Changelog
- Throw a better exception when an authentication error occurs (#9).
v1.2.0
Changelog
- Add support for exporting offers (#3)
- Add support for cancelling order items and improve returns (#8)
v1.1.0
Changelog
- Add support for handling rate limit response from the Bol.com Retailer API (#7)
- Add support for handling returns (#5)
v1.0.3
New: Add support for configuring a user agent when making API calls:
<?php
Picqer\BolRetailer\Client::setUserAgent('some-user-agent-string');
Remove a specific version requirement for the JSON extension
The Composer configuration used to require ext-json
version ^1.5
. This is not necessary, so the requirement has been changed to *
.
v1.0.1
Fix a bug that occurred when shipments for a specific order were requested:
$shipments = Shipment::all(1, 'some-order-id');
This now works as expected.