From 2197630d0405bee45c8e6542983e89d2ddb6138a Mon Sep 17 00:00:00 2001 From: Navdeep Singh Sidhu Date: Mon, 6 Mar 2023 16:53:42 -0600 Subject: [PATCH] Updated default API version to `2023-01` (#154) Updating default API version to `2023-01` to avoid deprecated calls when version is not specified. No breaking changes were observed. A separate MR will be created for changes related to FullfillmentOrder changes Co-authored-by: Navdeep Singh Sidhu --- src/Services/Base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/Base.php b/src/Services/Base.php index bf8cb75..8efc37c 100644 --- a/src/Services/Base.php +++ b/src/Services/Base.php @@ -9,7 +9,7 @@ abstract class Base { public const BASE_API_PATH = 'admin/api/%s'; - public const DEFAULT_API_VERSION = '2021-07'; + public const DEFAULT_API_VERSION = '2023-01'; /** @var string */ protected $shopifyApiVersion = self::DEFAULT_API_VERSION;