diff --git a/CHANGELOG.md b/CHANGELOG.md index fdd44b851..98a3a0c33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ Unreleased ---------- -- ⚠️ [Breaking] Removes `ShopifyApp::JWTMiddleware`. Any existing app code relying on decoded JWT contents set from `request.env` should instead include the `WithShopifyIdToken` concern and call its respective methods. [#1861](https://github.com/Shopify/shopify_app/pull/1861) + +22.3.0 (July 24, 2024) +---------- +- Deprecate `ShopifyApp::JWTMiddleware`. And remove internal usage. Any existing app code relying on decoded JWT contents set from `request.env` should instead include the `WithShopifyIdToken` concern and call its respective methods. [#1861](https://github.com/Shopify/shopify_app/pull/1861) [Migration Guide](/docs/Upgrading.md#v2300---removed-shopifyappjwtmiddleware) - Handle scenario when invalid URI is passed to `sanitize_shop_domain` [#1852](https://github.com/Shopify/shopify_app/pull/1852) - Remove references to old JS files during asset precompile [#1865](https://github.com/Shopify/shopify_app/pull/1865) - Remove old translation keys for `enable_cookies_*`, `top_level_interaction_*` and `request_storage_access_*` [#1865](https://github.com/Shopify/shopify_app/pull/1865) diff --git a/Gemfile.lock b/Gemfile.lock index 62c104264..ac33754da 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - shopify_app (22.2.1) + shopify_app (22.3.0) activeresource addressable (~> 2.7) jwt (>= 2.2.3) diff --git a/lib/shopify_app/version.rb b/lib/shopify_app/version.rb index 3cdbfb322..049a06d0c 100644 --- a/lib/shopify_app/version.rb +++ b/lib/shopify_app/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ShopifyApp - VERSION = "22.2.1" + VERSION = "22.3.0" end diff --git a/package.json b/package.json index 1f5aa7e54..d6a2b31b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "shopify_app", - "version": "22.2.1", + "version": "22.3.0", "repository": "git@github.com:Shopify/shopify_app.git", "author": "Shopify", "license": "MIT",