From cbfa7ef80595c7333b6d3e96ea070656e05d0b49 Mon Sep 17 00:00:00 2001 From: Josef Rousek Date: Fri, 14 Jun 2024 09:10:36 +0200 Subject: [PATCH] v2.0.1 --- CHANGELOG.md | 6 ++++++ shopify_auth/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25c3b6e..e69037e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## Unreleased No unreleased changes. +## 2.0.1 - 2024-06-14 + +### Changed +- Shopify UI extensions send tokens without iss key. To prevent the middleware from raising exceptions for these requests we're now ignoring missing iss key. + + ## 2.0.0 - 2023-01-10 ### Removed diff --git a/shopify_auth/__init__.py b/shopify_auth/__init__.py index 0852a5a..475bbb2 100644 --- a/shopify_auth/__init__.py +++ b/shopify_auth/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 0, 0) +VERSION = (2, 0, 1) __version__ = '.'.join(map(str, VERSION)) __author__ = 'Gavin Ballard'