Skip to content

Commit 65ac828

Browse files
committed
Add latest API version
1 parent 46511a3 commit 65ac828

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Note: For changes to the API, see https://shopify.dev/changelog?filter=api
55
## Unreleased
66

77
- [#1337](https://github.com/Shopify/shopify-api-ruby/pull/1337) Fix type for Shop#google_apps_login_enabled
8+
- [#1340](https://github.com/Shopify/shopify-api-ruby/pull/1340) Add support for 2024-10 API version
89

910
## 14.5.0
1011

lib/shopify_api/admin_versions.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module ShopifyAPI
55
module AdminVersions
66
SUPPORTED_ADMIN_VERSIONS = T.let([
77
"unstable",
8+
"2024-10",
89
"2024-07",
910
"2024-04",
1011
"2024-01",
@@ -18,7 +19,7 @@ module AdminVersions
1819
"2022-01",
1920
], T::Array[String])
2021

21-
LATEST_SUPPORTED_ADMIN_VERSION = T.let("2024-07", String)
22+
LATEST_SUPPORTED_ADMIN_VERSION = T.let("2024-10", String)
2223
end
2324

2425
SUPPORTED_ADMIN_VERSIONS = ShopifyAPI::AdminVersions::SUPPORTED_ADMIN_VERSIONS

0 commit comments

Comments
 (0)