shopify_api 14.11.0 → 14.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/shopify_api/auth/oauth.rb +2 -1
- data/lib/shopify_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a74f8e8dd48cdc2900573e00f7dc6bb4ba302608075c7b06c285ee5dab6ca8ed
|
4
|
+
data.tar.gz: e7cf3797171b79502f913bb289b518f349841de3adc1f576753f403732f7ea1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45a9b83fddf9151bc99ba13e3353a8ac42cbf6559442cc6133f2c587670f1bbb1638ab5e40d8a799d412fb6d6943acc0ca60e99838480f45292f2951cb2de67f
|
7
|
+
data.tar.gz: 7ce124fc5e459a17c2230efc2577ace84922db124a7d79f3cf59693664507b319077558bd7a20146d2f0848c6eeb689eba535c3614e8443b546d3fa8583f75cf
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
Note: For changes to the API, see https://shopify.dev/changelog?filter=api
|
4
4
|
## Unreleased
|
5
5
|
|
6
|
+
## 14.11.1
|
7
|
+
|
8
|
+
- [#1395](https://github.com/Shopify/shopify-api-ruby/pull/1395) use correct internal admin host for 1P app development
|
9
|
+
|
6
10
|
## 14.11.0
|
7
11
|
- [#1386](https://github.com/Shopify/shopify-api-ruby/pull/1386) Add support for 2025-07 API version
|
8
12
|
|
data/Gemfile.lock
CHANGED
@@ -114,7 +114,8 @@ module ShopifyAPI
|
|
114
114
|
return "https://#{shop}/admin" unless defined?(DevServer) && shop.include?(".my.shop.dev")
|
115
115
|
|
116
116
|
# For first-party apps in development only, we leverage DevServer to build the admin base URI
|
117
|
-
admin_web = T.unsafe(Object.const_get("DevServer"))
|
117
|
+
admin_web = T.unsafe(Object.const_get("DevServer")) # rubocop:disable Sorbet/ConstantsFromStrings
|
118
|
+
.new("admin-web")
|
118
119
|
admin_host = admin_web.host!(nonstandard_host_prefix: "admin")
|
119
120
|
shop_name = shop.split(".").first
|
120
121
|
|
data/lib/shopify_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shopify_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 14.11.
|
4
|
+
version: 14.11.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shopify
|
@@ -1375,7 +1375,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1375
1375
|
- !ruby/object:Gem::Version
|
1376
1376
|
version: '0'
|
1377
1377
|
requirements: []
|
1378
|
-
rubygems_version: 3.
|
1378
|
+
rubygems_version: 3.7.1
|
1379
1379
|
specification_version: 4
|
1380
1380
|
summary: The gem for accessing the Shopify API
|
1381
1381
|
test_files: []
|