shopify_app 9.0.1 → 9.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 47d0c6a9590fc9224cb90f79b551d03552f58e33d5b0f593d01b0c48c0767892
4
- data.tar.gz: b1f9651dca1e581ab2e06eb0ab68319b68fab6db6ffb395271422f4247d20c65
3
+ metadata.gz: f21e5cb5063a8271248f8d6425f2dca5518ddff0b7e9fbb1a9d8e947caf31c60
4
+ data.tar.gz: 4824ab322241409ae245f21a300c02bb6d732e19e6efacf4a066563da96d5e47
5
5
  SHA512:
6
- metadata.gz: e82d6a92d8441fd90ae4163124dc15489ff97bfdc292653000be3ad455798a18704e0a84c5dcee34bc408eec187a1643945f311b93ded5487d752252ee724bcf
7
- data.tar.gz: 82fe604a035f512f92d4e5408d1bc1043f50bbd995a2ba0d62bd7810b8c63d8f902a47c7698eaa97c24b75e8fcf69794481b3db071f7e3d81deb4d2d935153f5
6
+ metadata.gz: 8e3fbb39d62c8fbf18e0ce3b18b7ebdf077265f89f3d6b8714dc3732ec0bab95a082f9ce63fdd651ea14c3ac273f8f4a01092549f84ec7381ea16186a858573b
7
+ data.tar.gz: 37ea3ef7359ef972e44cc2876f1903719879f1a3aa7fa01d8bab0327f18aaddd6e8e7578baa0c0c1f458416e2e116cf69e3989fe7d64f639de3b85390f81e1f7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ 9.0.2
2
+ -----
3
+
4
+ * Update browser_sniffer to fix unnecessary ITP flows in Shopify Mobile
5
+ * Add additional languages to translation.yml
6
+ * Minor documentation corrections
7
+
1
8
  9.0.1
2
9
  -----
3
10
 
data/README.md CHANGED
@@ -453,7 +453,7 @@ Upgrading from 8.6 to 9.0.0
453
453
  ### Configuration change
454
454
 
455
455
  Add an api version configuration in `config/initializers/shopify_app.rb`
456
- Set this to the version you want to run against by default see [url] for what versions are currently availabe
456
+ Set this to the version you want to run against by default. See [Shopify API docs](https://help.shopify.com/en/api/versioning) for versions available.
457
457
  ```ruby
458
458
  config.api_version = '2019-04'
459
459
  ```
@@ -23,7 +23,7 @@ module ShopifyApp
23
23
  )
24
24
 
25
25
  unless initializer.include?(after_authenticate_job_config)
26
- shell.say "Error adding after_authneticate_job to config. Add this line manually: #{after_authenticate_job_config}", :red
26
+ shell.say("Error adding after_authenticate_job to config. Add this line manually: #{after_authenticate_job_config}", :red)
27
27
  end
28
28
  end
29
29
 
@@ -1,3 +1,3 @@
1
1
  module ShopifyApp
2
- VERSION = '9.0.1'.freeze
2
+ VERSION = '9.0.2'.freeze
3
3
  end
data/package-lock.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopify_app",
3
- "version": "9.0.1",
3
+ "version": "9.0.2",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopify_app",
3
- "version": "9.0.1",
3
+ "version": "9.0.2",
4
4
  "repository": "git@github.com:Shopify/shopify_app.git",
5
5
  "author": "Shopify",
6
6
  "license": "MIT",
data/shopify_app.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
 
11
11
  s.required_ruby_version = ">= 2.3.1"
12
12
 
13
- s.add_runtime_dependency('browser_sniffer', '~> 1.1.0')
13
+ s.add_runtime_dependency('browser_sniffer', '~> 1.1.2')
14
14
  s.add_runtime_dependency('rails', '>= 5.0.0')
15
15
  s.add_runtime_dependency('shopify_api', '>= 7.0.0')
16
16
  s.add_runtime_dependency('omniauth-shopify-oauth2', '~> 2.1.0')
data/translation.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  source_language: en
2
- target_languages: [de, es, fr, it, ja, nl, pt-BR, zh-CN, zh-TW]
2
+ target_languages: [cs, da, de, es, fi, fr, hi, it, ja, ko, ms, nb, nl, pl, pt-BR, pt-PT, sv, th, tr, zh-CN, zh-TW]
3
3
  components:
4
4
  - name: 'merchant'
5
5
  paths:
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: 9.0.1
4
+ version: 9.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: 2019-04-11 00:00:00.000000000 Z
11
+ date: 2019-05-02 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: 1.1.0
19
+ version: 1.1.2
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: 1.1.0
26
+ version: 1.1.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rails
29
29
  requirement: !ruby/object:Gem::Requirement