shopify-cli 2.23.0 → 2.24.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/.github/workflows/shopify.yml +1 -2
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +8 -8
- data/lib/shopify_cli/constants.rb +1 -1
- data/lib/shopify_cli/version.rb +1 -1
- data/shopify-cli.gemspec +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b181be543b5e3f2d630f728672a49eba4ca45a2bf3515cb795ba4d3ffd816d5a
|
|
4
|
+
data.tar.gz: ebe6ae92838de46c6ffbb3d0b311a6bf9f84619908e0fbd4dad0fdba84f5adba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8ebcc3d7cc5d7e4ef5c30ff3286a9a853d5b7b8144b8c7f00adb844a4ebaad93b6b5cf9d66ddcd2a33b94378f7b66a0c9a4966c5d5687588dc867769f0d4cd0
|
|
7
|
+
data.tar.gz: d5d6c740f02d5e0b6fb40a7c357347a08ef770355908d4418959e89e6b016075bb638722abaa8649ee3a6475391885016e373ea9624459b2a63ce8c8f7891d7f
|
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.24.0 - 2022-08-29
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
* [#2572](https://github.com/Shopify/shopify-cli/pull/2572): **Breaking** Update theme-check to 1.11.0 (dropped support for ruby 2.6)
|
|
9
|
+
|
|
5
10
|
## Version 2.23.0 - 2022-08-22
|
|
6
11
|
|
|
7
12
|
### Fixed
|
data/Gemfile.lock
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
shopify-cli (2.
|
|
4
|
+
shopify-cli (2.24.0)
|
|
5
5
|
bugsnag (~> 6.22)
|
|
6
6
|
listen (~> 3.7.0)
|
|
7
|
-
theme-check (~> 1.
|
|
7
|
+
theme-check (~> 1.11.0)
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
@@ -81,7 +81,7 @@ GEM
|
|
|
81
81
|
ffi (1.15.4)
|
|
82
82
|
hashdiff (1.0.1)
|
|
83
83
|
iniparse (1.5.0)
|
|
84
|
-
liquid (5.
|
|
84
|
+
liquid (5.4.0)
|
|
85
85
|
listen (3.7.1)
|
|
86
86
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
87
87
|
rb-inotify (~> 0.9, >= 0.9.10)
|
|
@@ -101,14 +101,14 @@ GEM
|
|
|
101
101
|
mocha (1.13.0)
|
|
102
102
|
multi_test (0.1.2)
|
|
103
103
|
multipart-post (2.1.1)
|
|
104
|
-
nokogiri (1.13.
|
|
104
|
+
nokogiri (1.13.8)
|
|
105
105
|
mini_portile2 (~> 2.8.0)
|
|
106
106
|
racc (~> 1.4)
|
|
107
107
|
octokit (4.22.0)
|
|
108
108
|
faraday (>= 0.9)
|
|
109
109
|
sawyer (~> 0.8.0, >= 0.5.3)
|
|
110
110
|
parallel (1.21.0)
|
|
111
|
-
parser (3.1.2.
|
|
111
|
+
parser (3.1.2.1)
|
|
112
112
|
ast (~> 2.4.1)
|
|
113
113
|
pry (0.13.1)
|
|
114
114
|
coderay (~> 1.1)
|
|
@@ -150,8 +150,8 @@ GEM
|
|
|
150
150
|
faraday (> 0.8, < 2.0)
|
|
151
151
|
sys-uname (1.2.2)
|
|
152
152
|
ffi (~> 1.1)
|
|
153
|
-
theme-check (1.
|
|
154
|
-
liquid (>= 5.
|
|
153
|
+
theme-check (1.11.0)
|
|
154
|
+
liquid (>= 5.4.0)
|
|
155
155
|
nokogiri (>= 1.12)
|
|
156
156
|
parser (~> 3)
|
|
157
157
|
timecop (0.9.4)
|
|
@@ -187,4 +187,4 @@ DEPENDENCIES
|
|
|
187
187
|
webmock
|
|
188
188
|
|
|
189
189
|
BUNDLED WITH
|
|
190
|
-
2.3.
|
|
190
|
+
2.3.20
|
data/lib/shopify_cli/version.rb
CHANGED
data/shopify-cli.gemspec
CHANGED
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
|
|
|
15
15
|
and webhooks.
|
|
16
16
|
HERE
|
|
17
17
|
spec.homepage = "https://shopify.github.io/shopify-cli/"
|
|
18
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.
|
|
18
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.7")
|
|
19
19
|
|
|
20
20
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
21
21
|
|
|
@@ -48,7 +48,7 @@ Gem::Specification.new do |spec|
|
|
|
48
48
|
# Whereas if we were to have "~> 1.9", that version would still be satisfied and thus not upgraded.
|
|
49
49
|
# Both shopify-cli and theme-check gems are owned and developed by Shopify.
|
|
50
50
|
# These gems are currently being actively developed and it's easiest to update them together.
|
|
51
|
-
spec.add_dependency("theme-check", "~> 1.
|
|
51
|
+
spec.add_dependency("theme-check", "~> 1.11.0")
|
|
52
52
|
|
|
53
53
|
spec.extensions = ["ext/shopify-extensions/extconf.rb"]
|
|
54
54
|
end
|
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.24.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-08-
|
|
11
|
+
date: 2022-08-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -92,14 +92,14 @@ dependencies:
|
|
|
92
92
|
requirements:
|
|
93
93
|
- - "~>"
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: 1.
|
|
95
|
+
version: 1.11.0
|
|
96
96
|
type: :runtime
|
|
97
97
|
prerelease: false
|
|
98
98
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
99
|
requirements:
|
|
100
100
|
- - "~>"
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: 1.
|
|
102
|
+
version: 1.11.0
|
|
103
103
|
description: |
|
|
104
104
|
Shopify CLI helps you build Shopify apps faster. It quickly scaffolds Node.js
|
|
105
105
|
and Ruby on Rails embedded apps. It also automates many common tasks in the
|
|
@@ -706,7 +706,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
706
706
|
requirements:
|
|
707
707
|
- - ">="
|
|
708
708
|
- !ruby/object:Gem::Version
|
|
709
|
-
version: '2.
|
|
709
|
+
version: '2.7'
|
|
710
710
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
711
711
|
requirements:
|
|
712
712
|
- - ">="
|