shopify-cli 2.26.0 → 2.27.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07ad4ab4b77c8edc5d1ff4bbbc980abcd625e00081c00aa986de0aef8251db43
|
4
|
+
data.tar.gz: 774eecdb92623ac595ce3cdcf44b6cf1247b882004833a545756eb7b7dd070db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32548f2bf7b53d4e3d74a7b100f7f3b89f79438141932fdb876aba9f37a9eeeeb4fd66ed05fef2dbb80abcd05044ca398a30107cbf2277558cd5104f7123ff3a
|
7
|
+
data.tar.gz: 9075eca951bae25caaaac87774aee024ccaff98391c23d16d9e525f419461ce9cb978a60b640e49c34dd8d30e41b6d33e18050d3c9fbdba586adb70e7b66dcf2
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@ From version 2.6.0, the sections in this file adhere to the [keep a changelog](h
|
|
2
2
|
|
3
3
|
## [Unreleased]
|
4
4
|
|
5
|
+
## Version 2.27.0 - 2022-10-10
|
6
|
+
|
7
|
+
### Fixed
|
8
|
+
* [#2645](https://github.com/Shopify/shopify-cli/pull/2645): Fix issue that prevents the execution of `shopify extension serve` in some scenarios
|
9
|
+
|
5
10
|
## Version 2.26.0 - 2022-10-03
|
6
11
|
|
7
12
|
### Added
|
data/Gemfile.lock
CHANGED
@@ -52,7 +52,12 @@ module Extension
|
|
52
52
|
argo_runtime(context).supports?(:public_url)
|
53
53
|
end
|
54
54
|
|
55
|
-
def serve(
|
55
|
+
def serve(**options)
|
56
|
+
context = options[:context]
|
57
|
+
port = options[:port]
|
58
|
+
tunnel_url = options[:tunnel_url]
|
59
|
+
resource_url = options[:resource_url]
|
60
|
+
|
56
61
|
Features::ArgoServe.new(
|
57
62
|
specification_handler: self,
|
58
63
|
argo_runtime: argo_runtime(context),
|
@@ -77,7 +77,8 @@ module Theme
|
|
77
77
|
end
|
78
78
|
|
79
79
|
def storefront_renderer_token
|
80
|
-
ShopifyCLI::
|
80
|
+
ShopifyCLI::Environment.storefront_renderer_auth_token ||
|
81
|
+
ShopifyCLI::DB.get(:storefront_renderer_production_exchange_token)
|
81
82
|
end
|
82
83
|
end
|
83
84
|
end
|
data/lib/shopify_cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shopify-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shopify
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10-
|
11
|
+
date: 2022-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|