shopify_app 22.5.0 → 22.5.1

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: d8a8d6fb5b227bbe3070fba9050497eb007e4191a782bc89b12a84546470ed65
4
- data.tar.gz: 5f8d8e4486585b07a93ad7f6abddaebde7a263568dc78e757627476aba37d38b
3
+ metadata.gz: 53e1b82ea119468609d25b37fdfad1bb2b9b9b34e342cf87cbd99c029e1f23e0
4
+ data.tar.gz: 30ad4b50b0affe7b14f2d54f2226bcf90607fe45c31022ae2d54597984a67a09
5
5
  SHA512:
6
- metadata.gz: 2a0b7ad073c42b6fbe5033aa686fa365050d8d56305507746b15f938a1511e979eecd49dcaefbe2793114c6ca4c4ef4f986085b743651115dc816faab404da15
7
- data.tar.gz: a8896ed834816ef8fd35f17db67aef3efcd401fa2a46900e2a2bce8d5b96f863db3eaa0335e73d63b6c48e6382d52d9103c46fce7a7252568e1abe7e503d2075
6
+ metadata.gz: 35f307b18a66a6a71a01523fe2dda39cae24bc8e83ab7e545445afeea412ea81db7818772360c5ad00ec6612e2cad3f0ddc974a603b73e439bca630f05242182
7
+ data.tar.gz: 3986e4227a89c06474967bd5ce780d839c137411d387d556ceed4937c3d86481355972bd46eab3f85c197158d2771db66871254446fbbc494a106c6a2d9454e1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Unreleased
2
2
  ----------
3
3
 
4
+ 22.5.1 (December 11, 2024)
5
+ ----------
6
+ - Fix Rails [CVE-2024-54133](https://github.com/rails/rails/commit/3da2479cfe1e00177114b17e496213c40d286b3a) [1929](https://github.com/Shopify/shopify_app/pull/1929)
7
+
4
8
  22.5.0 (November 28, 2024)
5
9
  ----------
6
10
  - Add support for filters in webhook registration [1923](https://github.com/Shopify/shopify_app/pull/1923)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shopify_app (22.5.0)
4
+ shopify_app (22.5.1)
5
5
  activeresource
6
6
  addressable (~> 2.7)
7
7
  jwt (>= 2.2.3)
@@ -8,7 +8,10 @@ module ShopifyApp
8
8
  content_security_policy do |policy|
9
9
  policy.frame_ancestors(-> do
10
10
  domain_host = current_shopify_domain || "*.#{::ShopifyApp.configuration.myshopify_domain}"
11
- "#{ShopifyAPI::Context.host_scheme}://#{domain_host} https://admin.#{::ShopifyApp.configuration.unified_admin_domain}"
11
+ [
12
+ "#{ShopifyAPI::Context.host_scheme}://#{domain_host}",
13
+ "https://admin.#{::ShopifyApp.configuration.unified_admin_domain}",
14
+ ]
12
15
  end)
13
16
  end
14
17
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ShopifyApp
4
- VERSION = "22.5.0"
4
+ VERSION = "22.5.1"
5
5
  end
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: 22.5.0
4
+ version: 22.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-29 00:00:00.000000000 Z
11
+ date: 2024-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeresource