Skip to content

v2.0.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@EdieLemoine EdieLemoine released this 28 Nov 08:25
· 795 commits to develop since this release
5f3298c

Features

  • Implement Laravel collections and helpers

Improvements

  • #78 fix reference ids having to be unique
  • Performance boost for multiple shipments (up to 3 times faster)

Things that no longer work

  • Set consignment by reference.

Example:

$myParcelCollection->addConsignment($consignment);
$myParcelCollection->createConcepts()->setLatestData();
$consignment->getStatus();

Now you need to re-collect the consignment

$myParcelCollection->addConsignment($consignment);
$consignment = $myParcelCollection->createConcepts()->setLatestData()->first();
$consignment->getStatus();