shopify-cli 2.7.4 → 2.8.0
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_cli/commands/login.rb +1 -1
- data/lib/shopify_cli/commands/switch.rb +1 -1
- data/lib/shopify_cli/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: 44313f65cde9217bac879066a57be593752c7d791d272d1ada078bc4a876f24c
|
|
4
|
+
data.tar.gz: bcb6ac1b939ee13ccec83eb74814ceddb1cb2d11661f516327ca2f0d294795a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77f0ea5bef5ce778e87c9414c4ec1712795ef144e603bf22f88975d5f86dab2f4d43052522f18302be1ac836b3b2b98cb2f66ea9d413d93214da365895d3a2b5
|
|
7
|
+
data.tar.gz: 7cc5de0ba35117ae63a6cbb9e6d761695a75166cb15a996fd6545ba981e1809f60e9e42ad2d13e59a837310b11328b693744eb9547e90a0a8f537fd6640ba206
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@ 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.8.0
|
|
6
|
+
### Fixed
|
|
7
|
+
* [#1879](https://github.com/Shopify/shopify-cli/pull/1879): Disambiguate -s as store option
|
|
8
|
+
|
|
5
9
|
## Version 2.7.4
|
|
6
10
|
### Added
|
|
7
11
|
* [#1825](https://github.com/Shopify/shopify-cli/pull/1825): Support passing the connection information through arguments
|
data/Gemfile.lock
CHANGED
|
@@ -7,7 +7,7 @@ module ShopifyCLI
|
|
|
7
7
|
PERMANENT_DOMAIN_SUFFIX = /\.myshopify\.(com|io)$/
|
|
8
8
|
|
|
9
9
|
options do |parser, flags|
|
|
10
|
-
parser.on("--store=STORE") { |url| flags[:shop] = url }
|
|
10
|
+
parser.on("-s", "--store=STORE") { |url| flags[:shop] = url }
|
|
11
11
|
# backwards compatibility allow 'shop' for now
|
|
12
12
|
parser.on("--shop=SHOP") { |url| flags[:shop] = url }
|
|
13
13
|
parser.on("--password=PASSWORD") { |password| flags[:password] = password }
|
|
@@ -4,7 +4,7 @@ module ShopifyCLI
|
|
|
4
4
|
module Commands
|
|
5
5
|
class Switch < ShopifyCLI::Command
|
|
6
6
|
options do |parser, flags|
|
|
7
|
-
parser.on("--store=STORE") { |url| flags[:shop] = url }
|
|
7
|
+
parser.on("-s", "--store=STORE") { |url| flags[:shop] = url }
|
|
8
8
|
# backwards compatibility allow 'shop' for now
|
|
9
9
|
parser.on("--shop=SHOP") { |url| flags[:shop] = url }
|
|
10
10
|
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.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shopify
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|