diff --git a/CHANGELOG.md b/CHANGELOG.md index 43ccd0c31..2063631f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Unreleased ---------- +17.0.2 (January 20, 2021) +------ +* Fix failing script tags and webhooks installs after performing OAuth [#1151](https://github.com/Shopify/shopify_app/pull/1151) + 17.0.1 (January 18, 2021) ------ * Don't attempt to read Shopify environment variables when the generators are running, since they may not be present yet [#1144](https://github.com/Shopify/shopify_app/pull/1144) diff --git a/Gemfile.lock b/Gemfile.lock index 67aaacf66..1cce83ca0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - shopify_app (17.0.1) + shopify_app (17.0.2) browser_sniffer (~> 1.2.2) jwt (~> 2.2.1) omniauth-shopify-oauth2 (~> 2.2.2) @@ -96,7 +96,7 @@ GEM faraday-net_http (1.0.1) globalid (0.4.2) activesupport (>= 4.2.0) - graphql (1.11.6) + graphql (1.11.7) graphql-client (0.16.0) activesupport (>= 3.0) graphql (~> 1.8) @@ -207,7 +207,7 @@ GEM rubocop-shopify (1.0.7) rubocop (~> 1.4) ruby-progressbar (1.10.1) - ruby2_keywords (0.0.2) + ruby2_keywords (0.0.4) shopify_api (9.2.0) activeresource (>= 4.1.0, < 6.0.0) graphql-client diff --git a/lib/shopify_app/version.rb b/lib/shopify_app/version.rb index bb6067eb2..d04ae4ccd 100644 --- a/lib/shopify_app/version.rb +++ b/lib/shopify_app/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module ShopifyApp - VERSION = '17.0.1' + VERSION = '17.0.2' end diff --git a/package.json b/package.json index 6b1cfb1d4..da6372e6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "shopify_app", - "version": "17.0.1", + "version": "17.0.2", "repository": "git@github.com:Shopify/shopify_app.git", "author": "Shopify", "license": "MIT",