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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e5fc13bbaf24ae934422f05bc53e0d25c59676890c178abe8935816c2c6f30f
4
- data.tar.gz: 272306bdcb4e96cc2f87ec2d9daded14a851a49138104bd8d691d6f7b58663d7
3
+ metadata.gz: a74f8e8dd48cdc2900573e00f7dc6bb4ba302608075c7b06c285ee5dab6ca8ed
4
+ data.tar.gz: e7cf3797171b79502f913bb289b518f349841de3adc1f576753f403732f7ea1f
5
5
  SHA512:
6
- metadata.gz: d6b36c4e0372fc2bbf916d04e93cf5e2c38418c14b59770deb9d8cd79a4eff139131d215d8a89d8e1800cc79d6d3faad086e55ad24885d3550cec2300a56d3e7
7
- data.tar.gz: b84be5420805b06f61aba1c3452529d13eb1f8343684c0b47c30c6f71b33ab1e1c075b1329b53a15f5a8afe2882ee1c40aa9ae7aa789fb650841134b4ba9fa43
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shopify_api (14.11.0)
4
+ shopify_api (14.11.1)
5
5
  activesupport
6
6
  concurrent-ruby
7
7
  hash_diff
@@ -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")).new("web") # rubocop:disable Sorbet/ConstantsFromStrings
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
 
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module ShopifyAPI
5
- VERSION = "14.11.0"
5
+ VERSION = "14.11.1"
6
6
  end
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.0
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.6.9
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: []