diff --git a/.changeset/sour-bats-provide.md b/.changeset/sour-bats-provide.md deleted file mode 100644 index a5fc456b6..000000000 --- a/.changeset/sour-bats-provide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-taxes": patch ---- - -Fixed the issue when the app threw errors when unable to resolve user email. Now, if the email is not available in `order.user.email` and `order.userEmail`, the app will fall back to empty string. diff --git a/apps/taxes/CHANGELOG.md b/apps/taxes/CHANGELOG.md index beca9a3e8..69c4a097a 100644 --- a/apps/taxes/CHANGELOG.md +++ b/apps/taxes/CHANGELOG.md @@ -1,5 +1,11 @@ # saleor-app-taxes +## 1.18.1 + +### Patch Changes + +- 6720d01: Fixed the issue when the app threw errors when unable to resolve user email. Now, if the email is not available in `order.user.email` and `order.userEmail`, the app will fall back to empty string. + ## 1.18.0 ### Minor Changes diff --git a/apps/taxes/package.json b/apps/taxes/package.json index 5954ecd40..35ca1ad95 100644 --- a/apps/taxes/package.json +++ b/apps/taxes/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-taxes", - "version": "1.18.0", + "version": "1.18.1", "scripts": { "build": "pnpm generate && next build", "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",