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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e588908fe2fd441a2e68e2c7081d9a08ae52ce95407254e96931228a2ead29f4
4
- data.tar.gz: 061ba9bc6223dda87ac73d8c18994cf397c8bbd901335c3c165d21b31f4db413
3
+ metadata.gz: 9b8ae8364bd81cd0bf10ead72febecbd0069968ebafdbf30e281009acb5df7cd
4
+ data.tar.gz: 0b80cdb7413c0ef4550736a7d8dfb3cedcc9cd62c97544ac9317c74f5a59e407
5
5
  SHA512:
6
- metadata.gz: 9815c07302e155feeb0ec22d734120b43ce5d1ba65d3cf22068936811971054e91c416118d046f4e9ceb1a91e107db0b020e95aca1c3bee054e7b5807b53c102
7
- data.tar.gz: 7c90c68e8109862cc886dc037fd88583b096f4c423a2eb4018c92984d3790150e9bdef9f0db7a7666a9942343c9cde7c3be60c19519559371aac29193fdf7841
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). The breaking change relates to the removal of API version `2021-07` support.
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.1)
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.15)
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.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.10139)
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,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ShopifyApp
4
- VERSION = "20.0.1"
4
+ VERSION = "20.0.2"
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopify_app",
3
- "version": "20.0.1",
3
+ "version": "20.0.2",
4
4
  "repository": "git@github.com:Shopify/shopify_app.git",
5
5
  "author": "Shopify",
6
6
  "license": "MIT",
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.1
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-06 00:00:00.000000000 Z
11
+ date: 2022-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeresource