shopify_app 17.0.3 → 17.0.4
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 +2 -2
- data/app/controllers/concerns/shopify_app/ensure_authenticated_links.rb +4 -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: 7cab2299a543318d0a7d39fafcfa16a1067222041eeaa5e7c02563dd0d5ed80a
|
|
4
|
+
data.tar.gz: 9f7dcc292f0f98c28e458f519cea464ae00925f770c7a065aca12c1579ecbbc5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f60af66dbfa84fc2a185bb733967124633acc0cbad22b0de805e89d10a6d2863651973ba91cbc3cc026c3d987a3eedfaba4796f97a8e68c0ee1e28bb920dff39
|
|
7
|
+
data.tar.gz: 1d03e4fecbdfcc1bfb46c5495b3c3f58c071ba7128fdd6d99db43a5920816a18d8fb4b2d4404058bf8c62f9d04f4d57cebb388b37fe864b7246a127d37f109e0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
Unreleased
|
|
2
2
|
----------
|
|
3
3
|
|
|
4
|
+
17.0.4 (January 25, 2021)
|
|
5
|
+
----------
|
|
6
|
+
* Redirect user to login page if shopify domain is not found in the `EnsureAuthenticatedLinks` concern [#1158](https://github.com/Shopify/shopify_app/pull/1158)
|
|
7
|
+
|
|
4
8
|
17.0.3 (January 22, 2021)
|
|
5
9
|
----------
|
|
6
10
|
* Amend fix for #1144 to raise on missing API keys only when running the server [#1155](https://github.com/Shopify/shopify_app/pull/1155)
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
shopify_app (17.0.
|
|
4
|
+
shopify_app (17.0.4)
|
|
5
5
|
browser_sniffer (~> 1.2.2)
|
|
6
6
|
jwt (~> 2.2.1)
|
|
7
7
|
omniauth-shopify-oauth2 (~> 2.2.2)
|
|
@@ -96,7 +96,7 @@ GEM
|
|
|
96
96
|
faraday-net_http (1.0.1)
|
|
97
97
|
globalid (0.4.2)
|
|
98
98
|
activesupport (>= 4.2.0)
|
|
99
|
-
graphql (1.12.
|
|
99
|
+
graphql (1.12.1)
|
|
100
100
|
graphql-client (0.16.0)
|
|
101
101
|
activesupport (>= 3.0)
|
|
102
102
|
graphql (~> 1.8)
|
|
@@ -13,6 +13,10 @@ module ShopifyApp
|
|
|
13
13
|
def redirect_to_splash_page
|
|
14
14
|
splash_page_path = root_path(return_to: request.fullpath, shop: current_shopify_domain)
|
|
15
15
|
redirect_to(splash_page_path)
|
|
16
|
+
rescue ShopifyApp::LoginProtection::ShopifyDomainNotFound => error
|
|
17
|
+
Rails.logger.warn("[ShopifyApp::EnsureAuthenticatedLinks] Redirecting to login: [#{error.class}] "\
|
|
18
|
+
"Could not determine current shop domain")
|
|
19
|
+
redirect_to(ShopifyApp.configuration.login_url)
|
|
16
20
|
end
|
|
17
21
|
|
|
18
22
|
def missing_expected_jwt?
|
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: 17.0.
|
|
4
|
+
version: 17.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shopify
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-01-
|
|
11
|
+
date: 2021-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: browser_sniffer
|