shopify_app 20.0.1 → 20.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/Gemfile.lock +4 -4
- data/docs/Upgrading.md +1 -0
- data/lib/shopify_app/version.rb +1 -1
- data/package.json +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: 9b8ae8364bd81cd0bf10ead72febecbd0069968ebafdbf30e281009acb5df7cd
|
4
|
+
data.tar.gz: 0b80cdb7413c0ef4550736a7d8dfb3cedcc9cd62c97544ac9317c74f5a59e407
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46c3562137cacaa6e4d99c56fb4cc69f18e8710c94d63db8bffba86741d038f834e3ad647c01798ae0e9716d81754237dbb9ad22544c2fb65d350b5b87f323fe
|
7
|
+
data.tar.gz: 656972e623f00f803540a3ea9078613143a6d7d9282af054bf5bdfcc764f25a689a491c8c5000385bd610e10b2456c31abda4b001a1823eefcfa0cb6ec1953d1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased
|
2
2
|
----------
|
3
3
|
|
4
|
+
20.0.2 (July 7, 2022)
|
5
|
+
----------
|
6
|
+
|
7
|
+
* Bump [Shopify API](https://github.com/Shopify/shopify-api-ruby) to version 11.0.1. It includes [these updates](https://github.com/Shopify/shopify-api-ruby/blob/main/CHANGELOG.md#version-1101). Fix an issue where HMAC signature verification would fail in OAuth flows during API key rotation.
|
8
|
+
|
4
9
|
20.0.1 (July 6, 2022)
|
5
10
|
----------
|
6
11
|
|
@@ -9,7 +14,7 @@ Unreleased
|
|
9
14
|
20.0.0 (July 4, 2022)
|
10
15
|
----------
|
11
16
|
|
12
|
-
* Bump [Shopify API](https://github.com/Shopify/shopify-api-ruby) to version 11.0.0. It includes [these updates](https://github.com/Shopify/shopify-api-ruby/blob/main/CHANGELOG.md#version-1100).
|
17
|
+
* Bump [Shopify API](https://github.com/Shopify/shopify-api-ruby) to version 11.0.0. It includes [these updates](https://github.com/Shopify/shopify-api-ruby/blob/main/CHANGELOG.md#version-1100). The breaking change relates to the removal of API version `2021-07` support.
|
13
18
|
* Internal update, adding App Bridge 3 for redirect (only). [#1458](https://github.com/Shopify/shopify_app/pull/1458)
|
14
19
|
|
15
20
|
19.1.0 (June 20, 2022)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
shopify_app (20.0.
|
4
|
+
shopify_app (20.0.2)
|
5
5
|
activeresource
|
6
6
|
browser_sniffer (~> 2.0)
|
7
7
|
jwt (>= 2.2.3)
|
@@ -124,7 +124,7 @@ GEM
|
|
124
124
|
nokogiri (1.13.4)
|
125
125
|
mini_portile2 (~> 2.8.0)
|
126
126
|
racc (~> 1.4)
|
127
|
-
oj (3.13.
|
127
|
+
oj (3.13.16)
|
128
128
|
openssl (3.0.0)
|
129
129
|
parallel (1.21.0)
|
130
130
|
parser (3.1.0.0)
|
@@ -194,7 +194,7 @@ GEM
|
|
194
194
|
rubocop (~> 1.24)
|
195
195
|
ruby-progressbar (1.11.0)
|
196
196
|
securerandom (0.2.0)
|
197
|
-
shopify_api (11.0.
|
197
|
+
shopify_api (11.0.1)
|
198
198
|
concurrent-ruby
|
199
199
|
hash_diff
|
200
200
|
httparty
|
@@ -204,7 +204,7 @@ GEM
|
|
204
204
|
securerandom
|
205
205
|
sorbet-runtime
|
206
206
|
zeitwerk (~> 2.5)
|
207
|
-
sorbet-runtime (0.5.
|
207
|
+
sorbet-runtime (0.5.10141)
|
208
208
|
sprockets (4.1.1)
|
209
209
|
concurrent-ruby (~> 1.0)
|
210
210
|
rack (> 1, < 3)
|
data/docs/Upgrading.md
CHANGED
@@ -87,6 +87,7 @@ Rails.application.config.after_initialize do
|
|
87
87
|
ShopifyAPI::Context.setup(
|
88
88
|
api_key: ShopifyApp.configuration.api_key,
|
89
89
|
api_secret_key: ShopifyApp.configuration.secret,
|
90
|
+
old_api_secret_key: ShopifyApp.configuration.old_secret,
|
90
91
|
api_version: ShopifyApp.configuration.api_version,
|
91
92
|
host_name: URI(ENV.fetch('HOST', '')).host || '',
|
92
93
|
scope: ShopifyApp.configuration.scope,
|
data/lib/shopify_app/version.rb
CHANGED
data/package.json
CHANGED
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: 20.0.
|
4
|
+
version: 20.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shopify
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-07-
|
11
|
+
date: 2022-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activeresource
|