Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Releases: gnikyt/laravel-shopify

v5.0.1

20 Dec 21:53
Compare
Choose a tag to compare

Ability for manual or automatic migrations.

'manual_migrations' => (bool) env('SHOPIFY_MANUAL_MIGRATIONS', false),

Explanation:

This option option allows you to use:
`php artisan vendor:publish --tag=migrations` to push migrations
to your app's folder so you're free to modify before migrating.

Besides this, a fix was implemented to handle redirect responses.

v5.0.0

20 Dec 14:51
c303f21
Compare
Choose a tag to compare

Possible breaking changes if you've extended the package.

+All code has been refactored to make use of Laravel more "properly"

  • Code moved to use Facades
  • Tests re-wrote to use Facades and factories
  • Services created to aide in re-use (BillingPlan, UsageCharge, AuthShopHandler)
  • Controller code thinned out to interact with services and provide responses
  • Request validators added (AuthShop, StoreUsageCharge)

Be sure to read the Changelog and Upgrade wiki docs.

v4.2.1

22 Nov 04:15
Compare
Choose a tag to compare
  • Merged PR #140 to allow for any shop object to use the jobs

v4.2.0

15 Nov 02:51
Compare
Choose a tag to compare
  • Moved Shop model logic into a trait (issue #137). The base shop model now uses a trait from Traits/ShopModelTrait
  • ShopObserver was changed to accept any object due to the above change as well

v4.1.0

02 Nov 11:53
Compare
Choose a tag to compare
  • Through BasicShopifyAPI library, added abilities to handle built-in rate limiting. See usage for more information.

v4.0.6

19 Oct 01:38
98d5c6f
Compare
Choose a tag to compare
  • Fixed charge_id casting to string
  • Merged #129 to solve #128

v4.0.5

12 Oct 04:32
Compare
Choose a tag to compare

Fixed issue #122 where plan_id was not being cleared on uninstall of app (through the AppUninstalledJob), which caused re-installs to not show the billing screen.

v4.0.4

09 Oct 01:28
Compare
Choose a tag to compare
  • Patch for #115 to allow for string or int of Shopify charge ID.
  • Merged PR #119 to fix POST requests to proxy apps

v4.0.3

05 Oct 18:01
Compare
Choose a tag to compare

Fix for #115, where Laravel/Shopify is returning a string for charge ID, now it is casted as an int.

v4.0.2

24 Sep 20:41
Compare
Choose a tag to compare
  • Ability for multiple after-authenticate jobs, #106