shopify_app 22.00.0 → 22.0.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 +7 -0
- data/Gemfile.lock +3 -3
- data/lib/shopify_app/version.rb +1 -1
- data/package.json +1 -1
- data/shopify_app.gemspec +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ea486458223aad4ec68fd15a99a340d79ae306e95b8596ca7b9f447b0ac237c
|
|
4
|
+
data.tar.gz: 7cfc9f51c225a89a3aacf87fc6cd3724c3c69399c60588cab9ac821f32b9bde0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c3c7f2426c24946ab299bb2499e5065c16828fe72ff8160f7d114c96ba7ff658d032494f418d58668ff0ad2fc53288a237fa92f35950e8028aeb0cd551b9d4d
|
|
7
|
+
data.tar.gz: e86005c3bde23478adc4444ff93274f3c6e4646f063399eb80f9165ab2a0b56765209038d49174889d2e026519296f4b44a929ce0201be5bc25c2c98470f3258
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
Unreleased
|
|
2
2
|
----------
|
|
3
3
|
|
|
4
|
+
22.0.1 (March 12, 2024)
|
|
5
|
+
----------
|
|
6
|
+
* Bumps `shopify_api` to `14.0.1` [1813](https://github.com/Shopify/shopify_app/pull/1813)
|
|
7
|
+
|
|
4
8
|
22.00.0 (March 5, 2024)
|
|
5
9
|
----------
|
|
10
|
+
|
|
11
|
+
To migrate from a previous version, please see the [v22 migration guide](docs/Upgrading.md#upgrading-to-v2200).
|
|
12
|
+
|
|
6
13
|
* ⚠️ [Breaking] Bumps minimum supported Ruby version to 3.0. Bumps `shopify_api` to 14.0 [1801](https://github.com/Shopify/shopify_app/pull/1801)
|
|
7
14
|
* ⚠️ [Breaking] Removes deprecated controller concerns that were renamed in `v21.10.0`. [1805](https://github.com/Shopify/shopify_app/pull/1805)
|
|
8
15
|
* ⚠️ [Breaking] Removes deprecated `ScripttagManager`. We realize there was communication error in our logging where we logged future deprecation instead of our inteded removal. Since we have been logging that for 2 years we felt we'd move forward with the removal instead pushing this off until the next major release. [1806](https://github.com/Shopify/shopify_app/pull/1806)
|
data/Gemfile.lock
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
shopify_app (22.
|
|
4
|
+
shopify_app (22.0.1)
|
|
5
5
|
activeresource
|
|
6
6
|
addressable (~> 2.7)
|
|
7
7
|
jwt (>= 2.2.3)
|
|
8
8
|
rails (> 5.2.1)
|
|
9
9
|
redirect_safely (~> 1.0)
|
|
10
|
-
shopify_api (
|
|
10
|
+
shopify_api (>= 14.0.1, < 15.0)
|
|
11
11
|
sprockets-rails (>= 2.0.0)
|
|
12
12
|
|
|
13
13
|
GEM
|
|
@@ -215,7 +215,7 @@ GEM
|
|
|
215
215
|
ruby-progressbar (1.13.0)
|
|
216
216
|
ruby2_keywords (0.0.5)
|
|
217
217
|
securerandom (0.2.2)
|
|
218
|
-
shopify_api (14.0.
|
|
218
|
+
shopify_api (14.0.1)
|
|
219
219
|
activesupport
|
|
220
220
|
concurrent-ruby
|
|
221
221
|
hash_diff
|
data/lib/shopify_app/version.rb
CHANGED
data/package.json
CHANGED
data/shopify_app.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.add_runtime_dependency("jwt", ">= 2.2.3")
|
|
20
20
|
s.add_runtime_dependency("rails", "> 5.2.1")
|
|
21
21
|
s.add_runtime_dependency("redirect_safely", "~> 1.0")
|
|
22
|
-
s.add_runtime_dependency("shopify_api", "
|
|
22
|
+
s.add_runtime_dependency("shopify_api", ">= 14.0.1", "< 15.0")
|
|
23
23
|
s.add_runtime_dependency("sprockets-rails", ">= 2.0.0")
|
|
24
24
|
|
|
25
25
|
s.add_development_dependency("byebug")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shopify_app
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 22.
|
|
4
|
+
version: 22.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shopify
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-03-
|
|
11
|
+
date: 2024-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activeresource
|
|
@@ -84,16 +84,22 @@ dependencies:
|
|
|
84
84
|
name: shopify_api
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
|
-
- - "
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 14.0.1
|
|
90
|
+
- - "<"
|
|
88
91
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '
|
|
92
|
+
version: '15.0'
|
|
90
93
|
type: :runtime
|
|
91
94
|
prerelease: false
|
|
92
95
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
96
|
requirements:
|
|
94
|
-
- - "
|
|
97
|
+
- - ">="
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: 14.0.1
|
|
100
|
+
- - "<"
|
|
95
101
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '
|
|
102
|
+
version: '15.0'
|
|
97
103
|
- !ruby/object:Gem::Dependency
|
|
98
104
|
name: sprockets-rails
|
|
99
105
|
requirement: !ruby/object:Gem::Requirement
|