Releases: gnikyt/laravel-shopify
Releases · gnikyt/laravel-shopify
v16.0.4
- Fix high usage of memory during installation (#703)
v16.0.3
- Fix make webhook stub use proper ShopDomain class (#681)
- Fix webhooks dispatch into specified queue (#682)
- Fix detection of offline token presence in shop model
v16.0.2
- Fix for browsers without requestStorageAccess (#679)
v16.0.1
- Excluded authentication and billing routes from ITP middleware to not disrupt the install flow (#678)
v16.0.0
- Resolution for ITP issues (#522 / #664)
- Dropped support for Laravel 5.x and 6.x in GitHub Actions (#664)
- Added support for PHP 8 (#664)
- Removed
ConfigAccessible
trait and ConfigHelper
service as they are no longer needed, getShopifyConfig
helper function is now the successor
v15.1.1
- Use ShopId interface throughout code instead of direct reference to class (#643 / #646)
- Fix for config array being empty on fresh Laravel 8 install (#649)
- Fix to check for already-existing deleted_at column (soft delete) on migration install (#642)
v15.1.0
- Added new config option
config_api_callback
(#629) to allow for having custom logic for accessing api_*
config such as api_key
, api_secret
etc
v15.0.0
- Fix to all jobs (#624) so that they now use basic scalar values to prevent serialization errors
- WebhookInstaller and ScripttagInstaller jobs no longer inject the action class, the action class is resolved in the handle method
Potential breaking change if you've overloaded the AppUninstall job, or have webhook jobs. See UPGRADING wiki entry for more information.
v14.0.3
- Adjustment to use Request::all() instead of Request::instance() for
api_init
to prevent serialization errors
v14.0.2
- Patch to add current request instance to be injected into
api_init