diff --git a/.changeset/hot-numbers-hide.md b/.changeset/hot-numbers-hide.md deleted file mode 100644 index 39a823d..0000000 --- a/.changeset/hot-numbers-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-taxes": minor ---- - -Changed behavior of failed webhooks. The app will now return status 500 if the operation failed. Previously, it returned status 200 with an error message in the response body. diff --git a/.changeset/silly-grapes-double.md b/.changeset/silly-grapes-double.md deleted file mode 100644 index a3394ee..0000000 --- a/.changeset/silly-grapes-double.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-taxes": patch ---- - -Fix the calculations of shipping price and line prices based on the `pricesEnteredWithTax` value. Before, the Tax App didn't consider the `pricesEnteredWithTax` setting. Now, it will return different values for `pricesEnteredWithTax` true/false. diff --git a/apps/taxes/CHANGELOG.md b/apps/taxes/CHANGELOG.md index 743d94e..1845fdf 100644 --- a/apps/taxes/CHANGELOG.md +++ b/apps/taxes/CHANGELOG.md @@ -1,5 +1,15 @@ # saleor-app-taxes +## 1.6.0 + +### Minor Changes + +- 72adeb3: Changed behavior of failed webhooks. The app will now return status 500 if the operation failed. Previously, it returned status 200 with an error message in the response body. + +### Patch Changes + +- 70bf546: Fix the calculations of shipping price and line prices based on the `pricesEnteredWithTax` value. Before, the Tax App didn't consider the `pricesEnteredWithTax` setting. Now, it will return different values for `pricesEnteredWithTax` true/false. + ## 1.5.0 ### Minor Changes diff --git a/apps/taxes/package.json b/apps/taxes/package.json index 28a04ec..2743265 100644 --- a/apps/taxes/package.json +++ b/apps/taxes/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-taxes", - "version": "1.5.0", + "version": "1.6.0", "private": true, "scripts": { "dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",