Skip to content

Commit

Permalink
upgrade API version to 2024-01 (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
handhikadj authored Feb 6, 2024
1 parent 7d325e9 commit 65f40ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/resources/config/shopify-app.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
|
*/

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

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion tests/Services/ApiHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function testMake(): void
$this->assertInstanceOf(BasicShopifyAPI::class, $api);
$this->assertSame(Util::getShopifyConfig('api_secret'), $this->app['config']->get('shopify-app.api_secret'));
$this->assertSame(Util::getShopifyConfig('api_key'), $this->app['config']->get('shopify-app.api_key'));
$this->assertSame($this->app['config']->get('shopify-app.api_version'), '2023-10');
$this->assertSame($this->app['config']->get('shopify-app.api_version'), '2024-01');
}

public function testSetAndGetApi(): void
Expand Down

0 comments on commit 65f40ef

Please sign in to comment.