Skip to content

Commit 65f40ef

Browse files
authored
upgrade API version to 2024-01 (#268)
1 parent 7d325e9 commit 65f40ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/resources/config/shopify-app.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
|
169169
*/
170170

171-
'api_version' => env('SHOPIFY_API_VERSION', '2023-10'),
171+
'api_version' => env('SHOPIFY_API_VERSION', '2024-01'),
172172

173173
/*
174174
|--------------------------------------------------------------------------

tests/Services/ApiHelperTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function testMake(): void
4242
$this->assertInstanceOf(BasicShopifyAPI::class, $api);
4343
$this->assertSame(Util::getShopifyConfig('api_secret'), $this->app['config']->get('shopify-app.api_secret'));
4444
$this->assertSame(Util::getShopifyConfig('api_key'), $this->app['config']->get('shopify-app.api_key'));
45-
$this->assertSame($this->app['config']->get('shopify-app.api_version'), '2023-10');
45+
$this->assertSame($this->app['config']->get('shopify-app.api_version'), '2024-01');
4646
}
4747

4848
public function testSetAndGetApi(): void

0 commit comments

Comments
 (0)