Skip to content

Commit

Permalink
Merge pull request #1457 from Shopify/release-v19-1-0
Browse files Browse the repository at this point in the history
Packaging for release 19.1.0
  • Loading branch information
paulomarg authored Jun 20, 2022
2 parents 9a3e49b + e43328b commit 1024824
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Unreleased
----------

19.1.0 (June 20, 2022)
----------

* Add the `login_callback_url` config to allow overwriting that route as well, and mount the engine routes based on the configurations. [#1445](https://github.com/Shopify/shopify_app/pull/1445)
* Add special headers when returning 401s from LoginProtection. [#1450](https://github.com/Shopify/shopify_app/pull/1450)
* Add a new `billing` configuration which takes in a `ShopifyApp::BillingConfiguration` object and checks for payment on controllers with `Authenticated`. [#1455](https://github.com/Shopify/shopify_app/pull/1455)
Expand Down
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
shopify_app (19.0.2)
shopify_app (19.1.0)
activeresource
browser_sniffer (~> 2.0)
jwt (>= 2.2.3)
Expand Down Expand Up @@ -104,7 +104,7 @@ GEM
multi_xml (>= 0.5.2)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
jwt (2.3.0)
jwt (2.4.1)
loofah (2.15.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
Expand All @@ -124,7 +124,7 @@ GEM
nokogiri (1.13.4)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
oj (3.13.11)
oj (3.13.14)
openssl (3.0.0)
parallel (1.21.0)
parser (3.1.0.0)
Expand Down Expand Up @@ -194,7 +194,7 @@ GEM
rubocop (~> 1.24)
ruby-progressbar (1.11.0)
securerandom (0.2.0)
shopify_api (10.0.3)
shopify_api (10.1.0)
concurrent-ruby
hash_diff
httparty
Expand All @@ -204,7 +204,7 @@ GEM
securerandom
sorbet-runtime
zeitwerk (~> 2.5)
sorbet-runtime (0.5.9944)
sorbet-runtime (0.5.10101)
sprockets (4.0.3)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
Expand Down
2 changes: 1 addition & 1 deletion lib/shopify_app/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ShopifyApp
VERSION = "19.0.2"
VERSION = "19.1.0"
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shopify_app",
"version": "19.0.1",
"version": "19.1.0",
"repository": "git@github.com:Shopify/shopify_app.git",
"author": "Shopify",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion test/shopify_app/session/jwt_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class JWTTest < ActiveSupport::TestCase
end

test "#shopify_domain and #shopify_user_id are nil if the signature is bad" do
expect_jwt_error(::JWT::VerificationError, "Signature verification raised")
expect_jwt_error(::JWT::VerificationError, "Signature verification failed")

t = ::JWT.encode(payload, "bad", "HS256")
jwt = JWT.new(t)
Expand Down

0 comments on commit 1024824

Please sign in to comment.