shopify_app 18.1.2 → 18.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +2 -2
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +12 -12
- data/docs/Upgrading.md +3 -4
- data/lib/shopify_app/version.rb +1 -1
- data/package.json +1 -1
- data/shopify_app.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72f82b74b58afbd537a042ee0b4f662dfe0ff4ba3a3e50961ca5548d0faf949c
|
4
|
+
data.tar.gz: 57fc402338880daae022582fd94e3c7f7d504d7d63e93c62f708728f48c95baa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4787465beea494d6711b9086a25d2dd73584b4be292b12e559b4f3b5bee74c13a8da215a341b28556a2749ab36537fe7855b1d6de766170a90f06d6dc02326bf
|
7
|
+
data.tar.gz: a97ea3bead071112b72eeeb49590f936c6cc39939acfa05e83fb425005422fba56c3dbb9ea5de404772c1daedc458b0f7d67dd1e116b2161110914465ed20e93
|
data/.github/workflows/build.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
18.1.3 (Jun 2, 2022)
|
2
|
+
----------
|
3
|
+
* Update browser_sniffer to 2.0.0
|
4
|
+
|
1
5
|
18.1.2 (Mar 3, 2022)
|
2
6
|
----------
|
3
7
|
* Use the App Bridge 2.0 redirect when attempting to break out of an iframe. This happens when an app is installed, requires new access scopes, or re-authentication because the login session is expired. [#1376](https://github.com/Shopify/shopify_app/pull/1376)
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
shopify_app (18.1.
|
5
|
-
browser_sniffer (~>
|
4
|
+
shopify_app (18.1.3)
|
5
|
+
browser_sniffer (~> 2.0)
|
6
6
|
jwt (>= 2.2.3)
|
7
7
|
omniauth-rails_csrf_protection
|
8
8
|
omniauth-shopify-oauth2 (~> 2.3)
|
@@ -85,7 +85,7 @@ GEM
|
|
85
85
|
ast (2.4.1)
|
86
86
|
binding_of_caller (0.8.0)
|
87
87
|
debug_inspector (>= 0.0.1)
|
88
|
-
browser_sniffer (
|
88
|
+
browser_sniffer (2.0.0)
|
89
89
|
builder (3.2.4)
|
90
90
|
byebug (11.1.3)
|
91
91
|
coderay (1.1.3)
|
@@ -94,16 +94,16 @@ GEM
|
|
94
94
|
crass (1.0.6)
|
95
95
|
debug_inspector (0.0.3)
|
96
96
|
erubi (1.10.0)
|
97
|
-
faraday (2.
|
97
|
+
faraday (2.3.0)
|
98
98
|
faraday-net_http (~> 2.0)
|
99
99
|
ruby2_keywords (>= 0.0.4)
|
100
|
-
faraday-net_http (2.0.
|
100
|
+
faraday-net_http (2.0.3)
|
101
101
|
globalid (1.0.0)
|
102
102
|
activesupport (>= 5.0)
|
103
|
-
graphql (
|
104
|
-
graphql-client (0.
|
103
|
+
graphql (2.0.9)
|
104
|
+
graphql-client (0.18.0)
|
105
105
|
activesupport (>= 3.0)
|
106
|
-
graphql
|
106
|
+
graphql
|
107
107
|
hashdiff (1.0.1)
|
108
108
|
hashie (5.0.0)
|
109
109
|
i18n (1.9.1)
|
@@ -132,9 +132,9 @@ GEM
|
|
132
132
|
multi_json (~> 1.3)
|
133
133
|
multi_xml (~> 0.5)
|
134
134
|
rack (>= 1.2, < 3)
|
135
|
-
omniauth (2.0
|
135
|
+
omniauth (2.1.0)
|
136
136
|
hashie (>= 3.4.6)
|
137
|
-
rack (>=
|
137
|
+
rack (>= 2.2.3)
|
138
138
|
rack-protection
|
139
139
|
omniauth-oauth2 (1.7.2)
|
140
140
|
oauth2 (~> 1.4)
|
@@ -219,7 +219,7 @@ GEM
|
|
219
219
|
activeresource (>= 4.1.0)
|
220
220
|
graphql-client
|
221
221
|
rack
|
222
|
-
sprockets (4.0.
|
222
|
+
sprockets (4.0.3)
|
223
223
|
concurrent-ruby (~> 1.0)
|
224
224
|
rack (> 1, < 3)
|
225
225
|
sprockets-rails (3.4.2)
|
@@ -259,4 +259,4 @@ DEPENDENCIES
|
|
259
259
|
webmock
|
260
260
|
|
261
261
|
BUNDLED WITH
|
262
|
-
2.3.
|
262
|
+
2.3.7
|
data/docs/Upgrading.md
CHANGED
@@ -4,7 +4,7 @@ This file documents important changes needed to upgrade your app's Shopify App v
|
|
4
4
|
|
5
5
|
#### Table of contents
|
6
6
|
|
7
|
-
[Upgrading to `v18.1.
|
7
|
+
[Upgrading to `v18.1.2`](#upgrading-to-v1812)
|
8
8
|
|
9
9
|
[Upgrading to `v17.2.0`](#upgrading-to-v1720)
|
10
10
|
|
@@ -14,10 +14,9 @@ This file documents important changes needed to upgrade your app's Shopify App v
|
|
14
14
|
|
15
15
|
[Upgrading from `v8.6` to `v9.0.0`](#upgrading-from-v86-to-v900)
|
16
16
|
|
17
|
+
## Upgrading to `v18.1.2`
|
17
18
|
|
18
|
-
|
19
|
-
|
20
|
-
Version 18.1.1 replaces the deprecated EASDK redirect with an App Bridge redirect when attempting to break out of an iframe. This happens when an app is installed, requires new access scopes, or re-authentication because the login session is expired.
|
19
|
+
Version 18.1.2 replaces the deprecated EASDK redirect with an App Bridge 2 redirect when attempting to break out of an iframe. This happens when an app is installed, requires new access scopes, or re-authentication because the login session is expired.
|
21
20
|
|
22
21
|
## Upgrading to `v17.2.0`
|
23
22
|
|
data/lib/shopify_app/version.rb
CHANGED
data/package.json
CHANGED
data/shopify_app.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
|
14
14
|
s.metadata['allowed_push_host'] = 'https://rubygems.org'
|
15
15
|
|
16
|
-
s.add_runtime_dependency('browser_sniffer', '~>
|
16
|
+
s.add_runtime_dependency('browser_sniffer', '~> 2.0')
|
17
17
|
s.add_runtime_dependency('omniauth-rails_csrf_protection')
|
18
18
|
s.add_runtime_dependency('rails', '> 5.2.1')
|
19
19
|
s.add_runtime_dependency('shopify_api', '~> 9.4')
|
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: 18.1.
|
4
|
+
version: 18.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shopify
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: browser_sniffer
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '2.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: '2.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: omniauth-rails_csrf_protection
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|