Skip to content

Releases: Salamek/zasilkovna

3.4.1

20 Aug 12:34
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.3.1...3.4.1

3.3.1

03 Feb 09:52
Compare
Choose a tag to compare

What's Changed

  • Change carrierPickupPoint to string by @SiViN in #32

New Contributors

  • @SiViN made their first contribution in #32

Full Changelog: 3.3...3.3.1

3.3

29 Oct 09:05
Compare
Choose a tag to compare
3.3

What's Changed

New Contributors

Full Changelog: 3.2...3.3

New release

08 Mar 15:53
Compare
Choose a tag to compare

What is new

  • Fixed some issues with v4 branch api compatibility (Undefined index & co.)
  • Implemented new properties provided by v4 branch api (BranchStatus, displayFrontend, creditCardPayment)
  • ZasilkovnaBranch::getNameStreet() is now deprecated, use ZasilkovnaBranch::getName() instead

3.1.4

02 Mar 22:08
Compare
Choose a tag to compare

What is new

  • Fixed compatibility with PHP 7.4
  • Uses v4 of zasilkovna branch

Full Changelog: 3.1.3...3.1.4

Fixing release

09 Feb 16:09
Compare
Choose a tag to compare

What's Changed

  • Update ZasilkovnaBranch.php by @ne2d in #27

New Contributors

  • @ne2d made their first contribution in #27

Full Changelog: 3.1.2...3.1.3

Fixing release

19 Apr 14:35
Compare
Choose a tag to compare

Fixes

  • Fixes crash when using supported PHP version due to usage of mixed type (PHP 8 only)

3.1.1

14 Feb 14:14
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.1...3.1.1

Fixing release (BC Break)

02 Feb 08:08
Compare
Choose a tag to compare

Fixes

  • Fixes inconsistency in ApiRest::packetsLabelsPdf (#7), array $packetIds is now array of strings (same as SoapRest::packetsLabelsPdf):

Simply put, change your code from:

$packetIds = ['id' => [
    "ID1",
    "ID2"
]];
ApiRest::packetsLabelsPdf($packetIds, ...);

To

$packetIds =[
    "ID1",
    "ID2"
];
ApiRest::packetsLabelsPdf($packetIds, ...);

This fix is OFC a BC break

New release (BC break)

02 Feb 01:40
Compare
Choose a tag to compare

Features

  • $packetId is now string (or string[] in functions where it makes sense). This is BC break in parameter type!
  • Add native support for find nearest branches. (@janbarasek)
  • API Key validation. (@janbarasek)
  • Storage is now optional for Branch (@janbarasek)
  • Lazy load branches for better performance. (@janbarasek)
  • Email and phone checks in PacketAttributes (@Salamek @janbarasek)

Fixes