Skip to content

Releases: joecampo/laravel-shipstation

5.1.3

14 Jun 14:19
Compare
Choose a tag to compare

What's Changed

  • Bump Guzzle dependency

5.1.2

05 May 13:43
Compare
Choose a tag to compare

What's Changed

  • Changed sleep() call to usleep() as sleep only accepts an integer. This throws a deprecation notice in PHP 8.1+

Full Changelog: 5.1.1...5.1.2

5.1.1

29 Mar 22:55
Compare
Choose a tag to compare

What's Changed

  • Removed Composer lock file

Full Changelog: 5.1.0...5.1.1

5.1.0

25 Feb 12:20
f02eba9
Compare
Choose a tag to compare

What's Changed

Full Changelog: 5.0.1...5.1.0

5.0.1

06 Dec 17:59
Compare
Choose a tag to compare

Fixes

Fix operator precedence to avoid div/0 error in rate limit check h/t @smartens80

5.0.0

11 Sep 14:36
7593cb4
Compare
Choose a tag to compare

Laravel 8

4.2.0

19 May 22:04
1bc7dc5
Compare
Choose a tag to compare

Added

  • Partner key support

4.1.0

19 May 19:21
a2095cc
Compare
Choose a tag to compare

Added

The following methods were added to give access to rate limiting info:

getMaxAllowedRequests(): int
getRemainingRequests(): int
getSecondsUntilReset(): int
isRateLimited(): bool

4.0.0

10 Oct 13:07
bf3ca41
Compare
Choose a tag to compare
  • Created config setting for API URL
    • Must update your shipstation.php config file in app/config to add apiURL key and set a SS_URL variable in your .env https://ssapi.shipstation.com is the production API.

For production

  • Update shipstation.php config in app/config to include: 'apiURL' => env('SS_URL', 'https://ssapi.shipstation.com'),
  • Add to .env: SS_URL=https://ssapi.shipstation.com

3.1.2

16 Mar 13:05
933cbb7
Compare
Choose a tag to compare

Fixed a 'Division by Zero' error in the sleepIfRateLimited()