diff --git a/CHANGELOG.md b/CHANGELOG.md index 0960288b0..46a0edc21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ Unreleased ---------- * Extracted class - `PostAuthenticateTasks` to handle post authenticate tasks. To learn more, see [post authenticate tasks](/docs/shopify_app/authentication.md#post-authenticate-tasks). [1819](https://github.com/Shopify/shopify_app/pull/1819) +* Bumps shopify_api depedency to 14.1.0 [1826](https://github.com/Shopify/shopify_app/pull/1826) 22.0.1 (March 12, 2024) ---------- diff --git a/Gemfile.lock b/Gemfile.lock index 9da17ff9f..3f7c09e84 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,7 +7,7 @@ PATH jwt (>= 2.2.3) rails (> 5.2.1) redirect_safely (~> 1.0) - shopify_api (>= 14.0.1, < 15.0) + shopify_api (>= 14.1.0, < 15.0) sprockets-rails (>= 2.0.0) GEM @@ -118,7 +118,6 @@ GEM marcel (1.0.2) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.5) minitest (5.18.0) mocha (2.0.2) ruby2_keywords (>= 0.0.5) @@ -133,9 +132,6 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.16.2) - mini_portile2 (~> 2.8.2) - racc (~> 1.4) nokogiri (1.16.2-arm64-darwin) racc (~> 1.4) nokogiri (1.16.2-x86_64-darwin) @@ -221,7 +217,7 @@ GEM ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) securerandom (0.2.2) - shopify_api (14.0.1) + shopify_api (14.1.0) activesupport concurrent-ruby hash_diff @@ -240,11 +236,9 @@ GEM actionpack (>= 5.2) activesupport (>= 5.2) sprockets (>= 3.0.0) - sqlite3 (1.6.3) - mini_portile2 (~> 2.8.0) - sqlite3 (1.6.3-arm64-darwin) - sqlite3 (1.6.3-x86_64-darwin) - sqlite3 (1.6.3-x86_64-linux) + sqlite3 (1.7.3-arm64-darwin) + sqlite3 (1.7.3-x86_64-darwin) + sqlite3 (1.7.3-x86_64-linux) syntax_tree (6.1.1) prettier_print (>= 1.2.0) thor (1.2.2) diff --git a/shopify_app.gemspec b/shopify_app.gemspec index 2b7b47768..078d10ffb 100644 --- a/shopify_app.gemspec +++ b/shopify_app.gemspec @@ -19,7 +19,7 @@ Gem::Specification.new do |s| s.add_runtime_dependency("jwt", ">= 2.2.3") s.add_runtime_dependency("rails", "> 5.2.1") s.add_runtime_dependency("redirect_safely", "~> 1.0") - s.add_runtime_dependency("shopify_api", ">= 14.0.1", "< 15.0") + s.add_runtime_dependency("shopify_api", ">= 14.1.0", "< 15.0") s.add_runtime_dependency("sprockets-rails", ">= 2.0.0") s.add_development_dependency("byebug")