Skip to content

Releases: phpclassic/php-shopify

v1.1.10

07 Mar 05:12
Compare
Choose a tag to compare

Fixes:

  • Added the Collection resource #145
  • Shopify Collection #144
  • one extra line in code #149

v1.1.9

28 Feb 07:54
636ecf2
Compare
Choose a tag to compare

Fixes:

  • Make sure header keys are always lowercase #143

v1.1.8

18 Feb 15:12
Compare
Choose a tag to compare

Fixes:

  • Update default Shopify API version to '2020-01'

v1.1.7

17 Feb 08:08
16c3315
Compare
Choose a tag to compare

Important Bug Fix:

  • Bug solved for previous link in ShopifyResounce #140

v1.1.6

16 Feb 11:58
Compare
Choose a tag to compare

Cursor Based Pagination

  • Fixed issues to load next page
    Example code:
$productResource =  $shopify->getApi()->Product();
$products = $productResource->get(['limit'=>50]);
$nextPageProducts = $productResource->get($productResource->getNextPageParams());
/* in short: you need to reuse the resource to get the params before making another resource */**

v1.1.5

16 Feb 11:14
Compare
Choose a tag to compare

Features / Fixes:

  • Added last http code as exception code #133
  • Add support for handling cursor pagination in API 2019-07+ #134 #136

v1.1.4

07 Dec 07:04
Compare
Choose a tag to compare

Fixes:

  • Add parameter $variables to the GraphQL::post() #109
  • Typo fix #124
  • Reset config to it's initial values #129

v1.1.3

16 Aug 05:19
Compare
Choose a tag to compare

Fixes:

  • Added DraftOrder basics #106
  • Updated readme. Using graphql with private apps. #96
  • Remove credentials #103
  • DiscountCode 'lookup' not available? #107

v1.1.2

12 Jun 09:50
Compare
Choose a tag to compare

Bug Fix

  • Currency resource was not added properly.

v1.1.1

11 Jun 15:47
Compare
Choose a tag to compare

Bug Fixes

  • ProductListing resource added #17
  • Replace http_build_query with custom function #47