File tree Expand file tree Collapse file tree 5 files changed +10
-2
lines changed
Expand file tree Collapse file tree 5 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11Unreleased
22----------
33
4+ 22.5.2 (March 14, 2025)
5+ ----------
6+ - Add support for a new trusted Shopify domain [ #1949 ] ( https://github.com/Shopify/shopify_app/pull/1949 )
7+
4822.5.1 (December 11, 2024)
59----------
610- Fix Rails [ CVE-2024 -54133] ( https://github.com/rails/rails/commit/3da2479cfe1e00177114b17e496213c40d286b3a ) [ 1929] ( https://github.com/Shopify/shopify_app/pull/1929 )
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- shopify_app (22.5.1 )
4+ shopify_app (22.5.2 )
55 activeresource
66 addressable (~> 2.7 )
77 jwt (>= 2.2.3 )
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ class << self
88 "myshopify.io" ,
99 "myshopify.com" ,
1010 "spin.dev" ,
11+ "shop.dev" ,
1112 ] . freeze
1213
1314 def sanitize_shop_domain ( shop_domain )
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module ShopifyApp
4- VERSION = "22.5.1 "
4+ VERSION = "22.5.2 "
55end
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ class UtilsTest < ActiveSupport::TestCase
1212 "my-shop.myshopify.com" ,
1313 "https://my-shop.myshopify.com" ,
1414 "http://my-shop.myshopify.com" ,
15+ "my-shop.shop.dev" ,
16+ "https://my-shop.shop.dev" ,
17+ "http://my-shop.shop.dev" ,
1518 ] . each do |good_url |
1619 test "sanitize_shop_domain for (#{ good_url } )" do
1720 assert ShopifyApp ::Utils . sanitize_shop_domain ( good_url )
You can’t perform that action at this time.
0 commit comments